MD5 Hash Taslak // 2019 TürkoJen (1 Viewer)

Joined
May 18, 2019
Credits
4
Rating - 0%
Code:
import md5

def crack():
 
counter = 1
 
 hash = raw_input("Please enter the MD5 Hash to be decrypt : ")
  wordlist = raw_input("Please enter the wordlist file path : ")

  try:
    wordlist = open(wordlist, "r")
 
 except:
    print ( "\nFile not found ")
    quit()
 
 for password in wordlist:
    filemd5 = md5.new(password.strip()).hexdigest()
     print("Trying password %d: %s " % (counter,password.strip()))
 
   counter += 1
 
   if hash == filemd5:
      print ("\nPassword Found.  \nPassword is : %s" % (password))
      break
 
   else:
      print("\nPassword not Found. ")
crack()
 

Users who are viewing this thread

Top