Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fffaraz/fakessh
A dockerized fake SSH server honeypot written in Go that logs login attempts.
https://github.com/fffaraz/fakessh
docker fake-ssh-server go golang honeypot log spambot-security ssh ssh-honeypot
Last synced: 3 months ago
JSON representation
A dockerized fake SSH server honeypot written in Go that logs login attempts.
- Host: GitHub
- URL: https://github.com/fffaraz/fakessh
- Owner: fffaraz
- License: bsd-3-clause
- Created: 2016-11-15T00:48:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-04T05:15:46.000Z (9 months ago)
- Last Synced: 2024-07-17T10:59:56.269Z (4 months ago)
- Topics: docker, fake-ssh-server, go, golang, honeypot, log, spambot-security, ssh, ssh-honeypot
- Language: Go
- Homepage: https://hub.docker.com/r/fffaraz/fakessh
- Size: 36.1 KB
- Stars: 258
- Watchers: 2
- Forks: 29
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-honeypot - **17**星
README
# 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.[![](http://dockeri.co/image/fffaraz/fakessh)](https://hub.docker.com/r/fffaraz/fakessh)
## 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
* [jaksi/sshesame](https://github.com/jaksi/sshesame) - A fake SSH server that lets everyone in and logs their activity.
* [shazow/ssh-chat](https://github.com/shazow/ssh-chat) - Custom SSH server written in Go. Instead of a shell, you get a chat prompt.
* [gliderlabs/ssh](https://github.com/gliderlabs/ssh) - Easy SSH servers in Golang.
* [gliderlabs/sshfront](https://github.com/gliderlabs/sshfront) - Programmable SSH frontend.
* [desaster/kippo](https://github.com/desaster/kippo) - Kippo - SSH Honeypot.
* [micheloosterhof/cowrie](https://github.com/micheloosterhof/cowrie) - Cowrie SSH/Telnet Honeypot.
* [fzerorubigd/go0r](https://github.com/fzerorubigd/go0r) - A simple ssh honeypot in golang.
* [droberson/ssh-honeypot](https://github.com/droberson/ssh-honeypot) - Fake sshd that logs ip addresses, usernames, and passwords.
* [x0rz/ssh-honeypot](https://github.com/x0rz/ssh-honeypot) - Fake sshd that logs ip addresses, usernames, and passwords.
* [tnich/honssh](https://github.com/tnich/honssh) - HonSSH is designed to log all SSH communications between a client and server.
* [Learn from your attackers - SSH HoneyPot](https://www.robertputt.co.uk/learn-from-your-attackers-ssh-honeypot.html)
* [cowrie](https://github.com/cowrie/cowrie) - Cowrie SSH/Telnet Honeypot.