vlad-s / gofindssh

gofindssh is a simple tool for bruteforcing password authentication in ssh

Home Page:https://vlads.me/post/writing-a-simple-ssh-brute-forcer-in-go/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gofindssh

More about this here: https://www.vlads.me/2017/06/29/writing-a-simple-ssh-bruteforcer-in-go/

This tool is part of the learning process of the Go programming language.

It is not made with malicious thoughts, but it's merely a proof of concept of how easy it is to write a bruteforcer.

Always edit /etc/ssh/sshd_config to disable root login and password authentication. If, by any means, your life depends on having password authentication enabled, make sure to use a strong password.

/etc/ssh/sshd_config:

PasswordAuthentication no
PermitRootLogin no
# Or, if you need to be able to login as root, use publickey-based authentication
#PermitRootLogin without-password

How to get

go get -u github.com/vlad-s/gofindssh

About

gofindssh is a simple tool for bruteforcing password authentication in ssh

https://vlads.me/post/writing-a-simple-ssh-brute-forcer-in-go/

License:GNU Affero General Public License v3.0


Languages

Language:Go 100.0%