From 8dd53f6ee5200391009d9c6a1d93463071c84758 Mon Sep 17 00:00:00 2001 From: Daniel Goldsmith Date: Thu, 4 Feb 2021 12:49:57 +0000 Subject: [PATCH] Scanning Tasks added --- Week3_Scanning/Target1/docker-compose.yaml | 18 +++++++++++++++ Week3_Scanning/Target2/docker-compose.yaml | 18 +++++++++++++++ Week3_Scanning/Target3/docker-compose.yaml | 26 ++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 Week3_Scanning/Target1/docker-compose.yaml create mode 100644 Week3_Scanning/Target2/docker-compose.yaml create mode 100644 Week3_Scanning/Target3/docker-compose.yaml diff --git a/Week3_Scanning/Target1/docker-compose.yaml b/Week3_Scanning/Target1/docker-compose.yaml new file mode 100644 index 0000000..7121343 --- /dev/null +++ b/Week3_Scanning/Target1/docker-compose.yaml @@ -0,0 +1,18 @@ +version: '3' +services: + ssh: + image: cueh/debian_ssh + ports: + - "22:22" + web: + image: cueh/php_apache + ports: + - "80:80" + ftp: + image: stilliard/pure-ftpd + ports: + - "21:21" + smtp: + image: cueh/typewriter_postfix + ports: + - "25:25" \ No newline at end of file diff --git a/Week3_Scanning/Target2/docker-compose.yaml b/Week3_Scanning/Target2/docker-compose.yaml new file mode 100644 index 0000000..d370fe2 --- /dev/null +++ b/Week3_Scanning/Target2/docker-compose.yaml @@ -0,0 +1,18 @@ +version: '3' +services: + ssh: + image: cueh/debian_ssh + ports: + - "242:22" + web: + image: cueh/php_apache + ports: + - "443:80" + ftp: + image: stilliard/pure-ftpd + ports: + - "21:21" + smtp: + image: cueh/typewriter_postfix + ports: + - "25:25" \ No newline at end of file diff --git a/Week3_Scanning/Target3/docker-compose.yaml b/Week3_Scanning/Target3/docker-compose.yaml new file mode 100644 index 0000000..d1092bb --- /dev/null +++ b/Week3_Scanning/Target3/docker-compose.yaml @@ -0,0 +1,26 @@ +version: '3' +services: + ssh: + image: cueh/debian_ssh + ports: + - "242:22" + web: + image: cueh/scanningweb #cueh/php_apache + ports: + - "80:80" + volumes: + - data-volume:/var/www/html/ftp-uploads/ + ftp: + image: cueh/ftpanon #stilliard/pure-ftpd + ports: + - "21:21" + - "30000-30009:30000-30009" + volumes: + - data-volume:/var/ftp/ + smtp: + image: cueh/typewriter_postfix + ports: + - "25:25" + +volumes: + data-volume: