mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-10-14 12:29:15 +00:00

Numerous changes completed to successfully have multiple Conpot Honeypots in operation - Fix Dockerfile Build Failures by adding py-gevent and py-snmp to APK where required - Build new dedicated images for Conpot via Default, Kamstrup and Guardian Templates - Reconfigure IP Tables Rules - Update all YML files with new configuration to download new Conpot images instead of T-Pot Default Conpot Image - Configure Environment Variables in Docker Files for Image Builds - Fix missing IPTable rule/configuration for 5060/udp for Dionaea - Successfully test via NMAP that ports 102, 161/udp, 502, 623/udp, 10001, 47808/udp, and 50100 are open and functioning correctly KNOWN ISSUE: Conpot data is not available on dashboard/visualisations due to changes required for Logstash configuration.
23 lines
No EOL
479 B
YAML
23 lines
No EOL
479 B
YAML
version: '2.0'
|
|
|
|
networks:
|
|
conpot_default_local:
|
|
|
|
services:
|
|
|
|
# Conpot service using Default Siemens S7-200 Template
|
|
conpot_default:
|
|
container_name: conpot_default
|
|
restart: always
|
|
networks:
|
|
- conpot_default_local
|
|
ports:
|
|
- "102:102"
|
|
- "502:502"
|
|
- "623:623/udp"
|
|
- "47808:47808/udp"
|
|
- "161:161/udp"
|
|
# image: "dtagdevsec/conpot:1710"
|
|
image: "uncleraymondo/conpot_default:1710"
|
|
volumes:
|
|
- /data/conpot/log:/var/log/conpot |