Python Script that Cracks MD5 and acts as an eggdrop in 125 lines
Saturday, January 26th, 2008A friend of mine (which hopefully won’t mind me sharing this! (eek) ) shown me this the other day. It’s super. Check it out.
#!/usr/bin/env python
#Cracks md5 using wordlist, also can add words to the list from channel
#generate md5s and can check wordlist length.
#Args:
#!crack
#!insert
#!md5
#!lengthimport sys, socket, string, md5
def load_words():
try:
words = open(wordlist, “r”).readlines()
except(IOError):
print “[!] Error: Check your [...]