hey there.
is there an option to bulk upload md5 hashes to be decrypted?
because by now i only found the rainbow table option under tools but there i have to upload one by one which would take very long for me.
thanks, twinaxe
Bulk Md5 Decryption?
Started by twinaxe, Nov 11 2011 20:39
2 replies to this topic
#1
Posted 11 November 2011 - 20:39
#2
Posted 13 November 2011 - 13:14
You might be able to script your way out of it?
This Python script might be helpful:
(taken from http://www.java2s.co...ythonScript.htm)
This Python script might be helpful:
(taken from http://www.java2s.co...ythonScript.htm)
import httplib
def printText(txt):
lines = txt.split('\n')
for line in lines:
print line.strip()
httpServ = httplib.HTTPConnection("127.0.0.1", 80)
httpServ.connect()
quote = "test"
httpServ.request('POST', '/cgi_form.cgi', 'name=Brad"e=%s' % quote)
response = httpServ.getresponse()
if response.status == httplib.OK:
print "Output from CGI request"
printText (response.read())
httpServ.close()
~Talant
#3
Posted 14 November 2011 - 13:00
thanks, will have a look at it















