SSH-Honeypot
SSH蜜罐 - 使用一个假的SSH服务端来接收来自互联网的登录攻击,并记录其登录ip及账号密码,以下为一些Github上的开源项目
docker run -d \
--publish 22:22 \
--restart=always \
--name fakessh \
fffaraz/fakessh
docker logs -f fakessh
- fffaraz/fakessh - A dockerized fake SSH server honeypot written in Go that logs login attempts.
- jaksi/sshesame - A fake SSH server that lets everyone in and logs their activity.
- shazow/ssh-chat - Custom SSH server written in Go. Instead of a shell, you get a chat prompt.
- gliderlabs/ssh - Easy SSH servers in Golang.
- gliderlabs/sshfront - Programmable SSH frontend.
- desaster/kippo - Kippo - SSH Honeypot.
- micheloosterhof/cowrie - Cowrie SSH/Telnet Honeypot.
- fzerorubigd/go0r - A simple ssh honeypot in golang.
- droberson/ssh-honeypot - Fake sshd that logs ip addresses, usernames, and passwords.
- x0rz/ssh-honeypot - Fake sshd that logs ip addresses, usernames, and passwords.
- tnich/honssh - HonSSH is designed to log all SSH communications between a client and server.
- Learn from your attackers - SSH HoneyPot
- cowrie - Cowrie SSH/Telnet Honeypot.