Jump to content


Bulk Md5 Decryption?


  • You cannot reply to this topic
2 replies to this topic

#1 twinaxe

    Newcomer

  • Members
  • Pip
  • 2 posts

Posted 11 November 2011 - 20:39

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

#2 Talant

    Guru

  • Premium Members
  • 149 posts

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)
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&quote=%s' % quote)
response = httpServ.getresponse()
if response.status == httplib.OK:
    print "Output from CGI request"
    printText (response.read())
httpServ.close()

~Talant

#3 twinaxe

    Newcomer

  • Members
  • Pip
  • 2 posts

Posted 14 November 2011 - 13:00

thanks, will have a look at it