Advertisement
rootma01

MD5 Decrypter

Jun 18th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. import sys,hashlib
  2. by = """
  3. ##################################
  4. Coded By Mehdi.Mrh
  5. Decode Md5
  6. TooP list Password :
  7. https://raw.githubusercontent.com/danielmiessler/SecLists/master/Passwords/Common-Credentials/10-million-password-list-top-1000000.txt
  8. ##################################"""
  9. print by
  10. select = raw_input('Encode 1 & Decode 2:')
  11. if '1' in select:
  12. try:
  13. enc = raw_input('Entre Text:')
  14. print (hashlib.md5(enc.encode()).hexdigest())
  15. except:
  16. pass
  17.  
  18. elif '2' in select:
  19. try:
  20. hash = str(raw_input('Entr Hash:'))
  21. list = open(raw_input('Entre Name List:'),'r').readlines()
  22. for li in list:
  23. li = li.rstrip()
  24. encode = hashlib.md5(li.encode()).hexdigest()
  25. if hash == encode:
  26. print ("{0}::{1}".format(hash,li))
  27. except:
  28. pass
  29. else:
  30. print "wkhtar asahbi 1 l encode o 2 decode / malk mbaw9 hhhh :v "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement