document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/python
  2. #author : Darklest
  3. #Title : Bruceforce MD5 with wordlist
  4. #usage : python md5.py a71954b5ca89c7c07fa9a8e217e7b091
  5. import hashlib, sys
  6. f = open(\'pass.txt\', \'r\')
  7. for i in f:
  8.     passw = hashlib.md5(i.strip()).hexdigest()
  9.     if sys.argv[1] == passw:
  10.         print passw, \'=\', i
  11.         exit()
  12. print "Hash Not Found..."
');