Menu
  • HOME
  • TAGS

Dictionary based bruteforce on a RSA Private Key

security,ssl-certificate,public-key-encryption,dictionary-attack,john-the-ripper

I wrote small python script to do what I wanted. I put the key under the name "ssl.key" and the word list in a file called "wl.lst". Here's the complete code: from subprocess import PIPE, Popen import subprocess import sys def cmdline(command): proc = subprocess.Popen(str(command), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) (out, err)...