Advertisement
darklest

MD5 Bruceforce

Jul 14th, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  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..."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement