1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/cowrie/README.md
2017-11-05 21:12:30 +08:00

52 lines
979 B
Markdown

cowrie
======
![](https://badge.imagelayers.io/vimagick/cowrie:latest.svg)
[Cowrie][1] is a medium interaction SSH honeypot designed to log brute force attacks
and, most importantly, the entire shell interaction performed by the attacker.
Cowrie is directly based on [Kippo][2] by Upi Tamminen (desaster).
## docker-compose.yml
```yaml
cowrie:
image: vimagick/cowrie
ports:
- "2222:2222"
- "2223:2223"
volumes:
- ./data/dl:/home/cowrie/dl
- ./data/log:/home/cowrie/log
restart: always
```
## server
```bash
$ cd ~/fig/cowrie
$ mkdir -p data/dl data/log/tty
$ chmod -R 777 data
$ tree -F
.
├── docker-compose.yml
├── dl/
└── log/
└── tty/
$ docker-compose up -d
$ tail -f log/cowrie.log
```
## client
```bash
$ ssh -p 2222 root@server
$ telnet server 2223
```
> You can login as `root` with any password except `root` or `123456`.
[1]: https://github.com/micheloosterhof/cowrie
[2]: http://github.com/desaster/kippo/