Guest User

Untitled

a guest
Mar 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import hashlib
  2. def computeMD5hash(string):
  3. m = hashlib.md5()
  4. m.update(string.encode('utf-8'))
  5. md5string=m.digest()
  6. return md5string
  7. wordlist = open('wordlist.txt', 'r')
  8. words = wordlist.readlines()
  9. words = [x.strip('n') for x in words]
  10. print("Searching...")
  11. for i in words:
  12. for x in words:
  13. print(i+x)
  14. out = computeMD5hash(i+x)
  15. print(out)
  16. if out == '63eb1dea1692fc53800b20be983e9a8b':
  17. print(i+x)
  18. break
Add Comment
Please, Sign In to add comment