SHOW:
|
|
- or go back to the newest paste.
| 1 | #Please Share It If You like this :: Facebook :: Twitter | |
| 2 | ||
| 3 | #Read Instructions Carefully..... | |
| 4 | ||
| 5 | #image 1: http://i49.tinypic.com/2djc3tu.jpg | |
| 6 | #image 2: http://i48.tinypic.com/20hpk6o.jpg | |
| 7 | #http://facebook.com/photo.php?fbid=370831159646650&id=100001593084859&set=a.112413338821768.16291.100001593084859&_ft_=fbid.370831169646649 | |
| 8 | ||
| 9 | ||
| 10 | - | #if you like this, please share it via facebook and twitter |
| 10 | + | |
| 11 | #Massive Encrypter | |
| 12 | #Create input.txt file and write in line with the words you want to encrypt | |
| 13 | #The input word must write in lines. | |
| 14 | #And input.txt must be in same directory of this python file. | |
| 15 | #output.txt will create automatically in the same directory of this python file and input.txt | |
| 16 | #This Encrypting software Created By TeamOpenFire Members For A Fun. | |
| 17 | #Don't Forget To visit WwW.TeamOpenFire.CoM fOr MoRe UsEfuLL StuFFs | |
| 18 | ||
| 19 | ||
| 20 | ||
| 21 | import hashlib | |
| 22 | import sys | |
| 23 | ||
| 24 | print "\t################################################################" | |
| 25 | print "\t# www.teamopenfire.com #" | |
| 26 | print "\t# ############### ######## ############ #" | |
| 27 | print "\t# # # ## ## # # #" | |
| 28 | print "\t# ###### ###### ## ## # ######## #" | |
| 29 | print "\t# # # ## ## # # #" | |
| 30 | print "\t# # # ## ## # ##### #" | |
| 31 | print "\t# # # ## ## # ##### #" | |
| 32 | print "\t# # # ## ## # # #" | |
| 33 | print "\t# # # ## ## # # #" | |
| 34 | print "\t# ##### [#] ######## [#] ##### #" | |
| 35 | print "\t# MD5 Encrypter #" | |
| 36 | print "\t# coded by Ajith KP #" | |
| 37 | print "\t# Greets to Coded32 and T.O.F members #" | |
| 38 | print "\t################################################################" | |
| 39 | ||
| 40 | - | |
| 40 | + | |
| 41 | try: | |
| 42 | passwd = open("input.txt", "r")
| |
| 43 | except(IOError): | |
| 44 | - | print out |
| 44 | + | |
| 45 | sys.exit() | |
| 46 | try: | |
| 47 | output = open("output.txt", "a")
| |
| 48 | - | print "\t[x] Session cancelled" |
| 48 | + | print "\n\n\t[OK] Encrypting Started\n\n" |
| 49 | for password in passwd.read().split('\n'):
| |
| 50 | hash = hashlib.md5(password).hexdigest() | |
| 51 | out = password+" : "+hash | |
| 52 | print "[+] "+out | |
| 53 | output.writelines(out+"\n") | |
| 54 | output.close() | |
| 55 | print "\n\n\t[V] Encrypting Finish; Now Open output.txt" | |
| 56 | except (KeyboardInterrupt, SystemExit): | |
| 57 | print "\n\t[x] Session cancelled" |