Archive for December, 2011

John The Ripper

By technese - Last updated: Friday, December 23, 2011

Install or compile john the ripper binaries for your OS Using John the Ripper password cracker, version 1.7.3.1 format of the file to be tested: user:passwordhashtype – e.g. root:5f4dcc3b5aa765d61d8327deb882cf99 `john` doesn’t get the hashtype correct for MD5, so we need to use –format –format=NAME              force hash type NAME: DES/BSDI/MD5/BF/AFS/LM/NT/mscash/NETLM/NETNTLM/bfegg/DOMINOSEC/lotus5/raw-MD5/raw-sha1/IPB2/nsldap/openssha/HDAA $ john root-md5.txt –format=raw-MD5 Loaded 1 […]

Building your first Windows Metro style app using C#, C++, or Visual Basic

By - Last updated: Wednesday, December 7, 2011

http://msdn.microsoft.com/en-us/library/windows/apps/br211380.aspx

DSL Report Mobile Speed Test

By technese - Last updated: Tuesday, December 6, 2011

http://www.dslreports.com/mspeed?t=1&s=1024&w=

Block IP address using .htaccess for Apache or using url.access-deny for Lighttpd

By technese - Last updated: Saturday, December 3, 2011

For Apache Web Server, edit the .htaccess per directory: Allow access from a certain IP address: In this case, stands for a specific IP address. For example: order deny,allow deny from all allow from 192.168.1.2 Deny access from a specific IP address: order allow, deny allow from all deny from 192.168.1.2 For multiple IP addresses: […]