Instant Password Recovery Tool
I made this back in April 2004, it only took a couple of hours to write and build the database. Basically, I took a wordlist of 535,683 words and hashed them in MD5, SHA1 & LANMAN. The results are stored in a simple MySQL table, indexes on that table make lookups REALLY fast and thats about it. You enter the hash you want to lookup, select the type of hash it is if you know it, then hit "Look It Up". The MySQL table is fairly lightweight, 535,683 rows, 48,164 KB total ( 37,030 KB of Data, 11,134 KB of Indexes ). It's mostly useful for recovering / auditing passwords on web applications like PhpBB & Bugzilla where the database stores unsalted hashes. It found about 90% of the passwords on a PhpBB message board I administer. You can also use it to test Windows NT/2000 passwords provided you've extracted the LANMAN hashes from the system first. http://lobstertechnology.com/password-recovery/
Related Posts
RC4/ARCFOUR Implementation in PHP
I wrote this RC4/ARCFOUR implementation in PHP - based on the original C source code posted on usenet in 1994.