1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/cowrie/README.md

46 lines
778 B
Markdown
Raw Normal View History

2015-07-21 16:10:52 +00:00
cowrie
======
[`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
```
cowrie:
image: vimagick/cowrie
ports:
- "2222:2222"
volumes:
- log:/home/cowrie/log
restart: always
```
## server
```
$ cd ~/fig/cowrie
2015-07-21 16:22:51 +00:00
$ mkdir -p log/tty
$ chmod -R 777 log
2015-07-21 16:10:52 +00:00
$ tree -F
.
├── docker-compose.yml
└── log/
└── tty/
$ docker-compose up -d
$ tail -f log/cowrie.log
```
## client
```
$ ssh -p 2222 root@server
```
2015-07-21 16:22:51 +00:00
> You can login as `root` without password.
2015-07-21 16:10:52 +00:00
[1]: https://github.com/micheloosterhof/cowrie
[2]: http://github.com/desaster/kippo/