https://github.com/cydave/switcheroo
well, well, well, how the turn tables
https://github.com/cydave/switcheroo
honeypot ssh-server
Last synced: 11 months ago
JSON representation
well, well, well, how the turn tables
- Host: GitHub
- URL: https://github.com/cydave/switcheroo
- Owner: cydave
- Created: 2020-06-01T12:53:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-08T00:44:44.000Z (over 3 years ago)
- Last Synced: 2025-07-19T18:01:31.841Z (12 months ago)
- Topics: honeypot, ssh-server
- Language: Python
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Switcheroo
Monitor unauthorized SSH login attempts... with a twist.
Log output:
```
2020-07-26T08:55:13.420897+00:00 auth='password' host='222.186.31.83' username='root' password='cacat123' valid='false'
2020-07-26T08:55:42.839670+00:00 auth='password' host='186.225.80.194' username='m1' password='123456' valid='false'
2020-07-26T08:57:20.689612+00:00 auth='password' host='222.186.31.83' username='root' password='123456' valid='false'
2020-07-26T08:57:34.839120+00:00 auth='password' host='218.92.0.204' username='root' password='aptx4869' valid='false'
2020-07-26T08:58:11.592082+00:00 auth='password' host='186.225.80.194' username='shadow' password='shadow' valid='false'
2020-07-26T08:58:38.680120+00:00 auth='password' host='112.85.42.104' username='root' password='dolphin1' valid='false'
2020-07-26T09:01:55.930339+00:00 auth='password' host='87.251.74.30' username='root' password='root' valid='false'
```
## The twist
Use the source luke.
## Docker
```
docker build --network=host -t switcheroo .
docker run --rm --network=host switcheroo
ssh root@127.0.0.1 -p10022
```