Why does Kali Linux not have ssh2john?

I tried to decrypt an SSH key, but didn't find ssh2john in Kali Linux. I had downloaded the latest version of Kali and John the Ripper is already pre-installed in it. I used the locate *2john command and can find other John tools, but not ssh2john. Why is this so? If I can't use ssh2john, are there any other tools or methods to replace it to crack the SSH key?

2 Answers

in Kali you 'll find it there

/usr/share/john/ssh2john.py

After research, I found that ssh2john not in JTR/src, it's in run:ssh2john.py. So I copy the py file to OS,then use python ssh2john.py id_rsa>idcrack to run. It succeed. Then you can use john idcrack to crack the private key.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like