Author Archives: fsormok

Nokia codes

  *#62209526# To find out the WLAN MAC address of your Nokia E61 type *#0000# To find out the software version and the release number of your device type *#7370# Hard reset and completely erase all data on the device … Continue reading

Posted in Uncategorized | Leave a comment

Netcat examples

echo -e ‘GET / HTTP/1.0\r\n\r\n’ | nc -w 8 www.tic.ch 80 HTTP/1.1 400 Bad Request Content-Type: text/html Date: Fri, 23 Nov 2007 11:12:11 GMT Connection: close Content-Length: 39

Posted in Software | Tagged | Leave a comment

Visonys Airlock Lab Installation

Basic Solaris installation Nach dem booten ab der CD gibt muss man folgende Informationen eingeben: IP Maske Router Hostnamen Airlock installation _ ___ _ __ __ _ __(_)________ ____ __ _______/ | (_)____/ /___ _____/ /__ | | / / … Continue reading

Posted in Solaris | Leave a comment

Find identical files

OUTF=rem-duplicates.sh; echo “#! /bin/sh” > $OUTF; find “$@” -type f -print0 | xargs -0 -n1 md5sum | sort –key=1,32 | uniq -w 32 -d –all-repeated=separate | sed -r ‘s/^[0-9a-f]*( )*//;s/([^a-zA-Z0-9./_-])/\\\1 /g;s/(.+)/#rm \1/’ >> $OUTF; chmod a+x $OUTF; ls -l $OUTF … Continue reading

Posted in Bash | Tagged | Leave a comment