1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:25 +02:00
2015-07-22 00:22:51 +08:00
..
2015-07-22 00:10:52 +08:00
2015-07-22 00:10:52 +08:00
2015-07-22 00:22:51 +08:00

cowrie

Cowrie 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 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
$ mkdir -p log/tty
$ chmod -R 777 log
$ tree -F
.
├── docker-compose.yml
└── log/
    └── tty/
$ docker-compose up -d
$ tail -f log/cowrie.log

client

$ ssh -p 2222 root@server

You can login as root without password.