Sabtu, 01 Mei 2010

Multi-Threaded md5 hash cracker

Name: mt5crack.py
Version: 1.0
Author: s3my0n

This program takes a list of md5 hashes in a file and performs a dictionary attack against each of the hashes simultaneously (hence - multi-threaded). The cracked hashes will then be dumped (appended) to user specified file.

The program is faster than just a normal cracker because it works on all of the hashes at the same time.


Code:
s3my0n@ubuntu:~/python/projects/mt5crack$ ./mt5crack.py hashes.txt dictionary.txt cracked.txt

[+] Loaded 29408 words from dictionary file

[+] Loaded 132 hashes
[*] Checking for valid md5 hashes...
[*] Starting cracking at [Sat Mar 6 01:55:55 2010] ...

[+] Cracked 89 out of 132 hashes at [Sat Mar 6 01:56:06 2010]
Download
Code:
http://py1337.22web.net/tools/mt5crack.zip