Advertisement
ajithkp560

MD5 Encrypter

May 25th, 2012
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.23 KB | None | 0 0
  1. #http://facebook.com/photo.php?fbid=370831159646650&id=100001593084859&set=a.112413338821768.16291.100001593084859&_ft_=fbid.370831169646649
  2. #MD5 Encrypter In python.
  3. #Massive Encrypter
  4. #Create input.txt file and write in line with the words you want to encrypt
  5. #The input word must write in lines.
  6. #And input.txt must be in same directory of this python file.
  7. #output.txt will create automatically in the same directory of this python file and input.txt
  8. #This Encrypting software Created By TeamOpenFire Members For A Fun.
  9. #Don't Forget To visit WwW.TeamOpenFire.CoM fOr MoRe UsEfuLL StuFFs
  10. #if you like this, please share it via facebook and twitter
  11.  
  12.  
  13. import hashlib
  14. import sys
  15.  
  16. print "\t################################################################"
  17. print "\t#                                        www.teamopenfire.com  #"
  18. print "\t#       ###############      ########       ############       #"
  19. print "\t#       #             #     ##      ##      #          #       #"
  20. print "\t#       ######   ######     ##      ##      #   ########       #"
  21. print "\t#            #   #          ##      ##      #   #              #"
  22. print "\t#            #   #          ##      ##      #   #####          #"
  23. print "\t#            #   #          ##      ##      #   #####          #"
  24. print "\t#            #   #          ##      ##      #   #              #"
  25. print "\t#            #   #          ##      ##      #   #              #"
  26. print "\t#            #####    [#]    ########   [#] #####              #"
  27. print "\t#                                                MD5 Encrypter #"
  28. print "\t#                                            coded by Ajith KP #"
  29. print "\t#                          Greets to Coded32 and T.O.F members #"
  30. print "\t################################################################"
  31.  
  32.  
  33. try:
  34.     passwd = open("input.txt", "r")
  35. except(IOError):
  36.     print "input.txt Not Found"
  37.     sys.exit()
  38. try:
  39.     output = open("output.txt", "a")
  40.    
  41.     for password in passwd.read().split('\n'):
  42.         hash = hashlib.md5(password).hexdigest()
  43.         out = password+" : "+hash
  44.         print out
  45.         output.writelines(out+"\n")
  46.     output.close()
  47. except (KeyboardInterrupt, SystemExit):
  48.     print "\t[x] Session cancelled"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement