fSSH
fSSH is a program to crack ssh private keys passwords using a dictionary. Use it only as educational purpose.
Installation
git clone https://code.lacashita.com/sml/fssh
./fssh
If you prefer, you can compile the code:
git clone https://code.lacashita.com/sml/fssh
go build fssh.go
./fssh
Usage
To crack a key:
fssh -w rockyou.txt -k id_rsa
To crack a key using 5 concurrent processes:
fssh -w rockyou.txt -k id_rsa -c 5
To crack a key in verbose mode:
fssh -w rockyou.txt -k id_rsa -v
Notes
This program has been built to play with Go language.
Description
Languages
Go
100%
