RE: ColdFusion Hacking Tutorial 02-23-2013, 04:11 PM
#8
Also, if you want to run the Python on Windows, just paste the following code into Notepad and save as whatever.py. Then navigate to where you saved the file (for example cd C:/users/breshie/desktop) and then just call the file name (whatever.py) - You must have Python installed to do this though.
Code:
#################################
# Made By BreShiE #
# www.anarchyforums.net #
#################################
import hashlib,hmac;
hash=raw_input("Hash > ")
salt=raw_input("Salt > ")
print "HMAC",hmac.new(salt,hash,hashlib.sha1).hexdigest().upper()