fffaraz / fakessh

A dockerized fake SSH server honeypot written in Go that logs login attempts.
https://hub.docker.com/r/fffaraz/fakessh
BSD 3-Clause "New" or "Revised" License
333 stars 37 forks source link
docker fake-ssh-server go golang honeypot log spambot-security ssh ssh-honeypot

FakeSSH

A dockerized honeypot SSH server written in Go to log login attempts. Password authentications always fail so no terminal access is given to the attacker.

Quick Start

go install github.com/fffaraz/fakessh@latest
sudo setcap 'cap_net_bind_service=+ep' ~/go/bin/fakessh
fakessh [optional-log-directory]

OR

docker run -it --rm -p 22:22 fffaraz/fakessh

OR

docker run -d --restart=always -p 22:22 --name fakessh fffaraz/fakessh
docker logs -f fakessh

See also