2017-05-03 20:55:18 +00:00
|
|
|
# T-Pot (Honeypots)
|
|
|
|
# For docker-compose ...
|
2017-04-30 23:34:30 +00:00
|
|
|
version: '2'
|
2017-05-03 20:55:18 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
cowrie_local:
|
|
|
|
dionaea_local:
|
|
|
|
elasticpot_local:
|
|
|
|
ewsposter_local:
|
|
|
|
glastopf_local:
|
|
|
|
|
2017-04-30 23:34:30 +00:00
|
|
|
services:
|
|
|
|
|
|
|
|
# Cowrie service
|
|
|
|
cowrie:
|
|
|
|
container_name: cowrie
|
|
|
|
restart: always
|
2017-05-03 20:55:18 +00:00
|
|
|
networks:
|
|
|
|
- cowrie_local
|
2017-04-30 23:34:30 +00:00
|
|
|
ports:
|
|
|
|
- "22:2222"
|
|
|
|
- "23:2223"
|
|
|
|
image: "dtagdevsec/cowrie:1706"
|
|
|
|
volumes:
|
|
|
|
- /data/cowrie:/data/cowrie
|
|
|
|
|
|
|
|
# Dionaea service
|
|
|
|
dionaea:
|
|
|
|
container_name: dionaea
|
|
|
|
restart: always
|
2017-05-03 20:55:18 +00:00
|
|
|
networks:
|
|
|
|
- dionaea_local
|
2017-04-30 23:34:30 +00:00
|
|
|
cap_add:
|
|
|
|
- NET_BIND_SERVICE
|
|
|
|
ports:
|
|
|
|
- "21:21"
|
|
|
|
- "42:42"
|
|
|
|
- "69:69/udp"
|
|
|
|
- "8081:80"
|
|
|
|
- "135:135"
|
|
|
|
- "443:443"
|
|
|
|
- "445:445"
|
|
|
|
- "1433:1433"
|
|
|
|
- "1723:1723"
|
|
|
|
- "1883:1883"
|
|
|
|
- "1900:1900"
|
|
|
|
- "3306:3306"
|
|
|
|
- "5060:5060"
|
|
|
|
- "5061:5061"
|
|
|
|
- "5060:5060/udp"
|
|
|
|
- "11211:11211"
|
|
|
|
image: "dtagdevsec/dionaea:1706"
|
|
|
|
volumes:
|
|
|
|
- /data/dionaea:/data/dionaea
|
|
|
|
|
|
|
|
# Elasticpot service
|
|
|
|
elasticpot:
|
|
|
|
container_name: elasticpot
|
|
|
|
restart: always
|
2017-05-03 20:55:18 +00:00
|
|
|
networks:
|
|
|
|
- elasticpot_local
|
2017-04-30 23:34:30 +00:00
|
|
|
ports:
|
|
|
|
- "9200:9200"
|
|
|
|
image: "dtagdevsec/elasticpot:1706"
|
|
|
|
volumes:
|
|
|
|
- /data/elasticpot:/data/elasticpot
|
|
|
|
|
|
|
|
# Ewsposter service
|
|
|
|
ewsposter:
|
|
|
|
container_name: ewsposter
|
|
|
|
restart: always
|
2017-05-03 20:55:18 +00:00
|
|
|
networks:
|
|
|
|
- ewsposter_local
|
2017-04-30 23:34:30 +00:00
|
|
|
image: "dtagdevsec/ewsposter:1706"
|
|
|
|
volumes:
|
|
|
|
- /data:/data
|
|
|
|
- /data/ews/conf/ews.ip:/opt/ewsposter/ews.ip
|
|
|
|
|
|
|
|
# Glastopf service
|
|
|
|
glastopf:
|
|
|
|
container_name: glastopf
|
|
|
|
restart: always
|
2017-05-03 20:55:18 +00:00
|
|
|
networks:
|
|
|
|
- glastopf_local
|
2017-04-30 23:34:30 +00:00
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
image: "dtagdevsec/glastopf:1706"
|
|
|
|
volumes:
|
|
|
|
- /data/glastopf:/data/glastopf
|
|
|
|
- /data/ews:/data/ews
|
|
|
|
|
|
|
|
# Honeytrap service
|
|
|
|
honeytrap:
|
|
|
|
container_name: honeytrap
|
|
|
|
restart: always
|
|
|
|
network_mode: "host"
|
|
|
|
cap_add:
|
|
|
|
- NET_ADMIN
|
|
|
|
image: "dtagdevsec/honeytrap:1706"
|
|
|
|
volumes:
|
|
|
|
- /data/honeytrap:/data/honeytrap
|
|
|
|
- /data/ews:/data/ews
|