Skip to content
Permalink
Browse files
Merge commit '2fc954e30bb601d0f63689330e10a8545d846fe3' as 'NMap'
  • Loading branch information
aa9863 committed Oct 4, 2021
2 parents 6febb5e + 2fc954e commit 5e9ece803da49b59b6ad48bdcea367b10836d286
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 0 deletions.
@@ -0,0 +1,4 @@
# Nmap "Trainer"

Various hosts to run nmap agaisnt

@@ -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"
@@ -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"
@@ -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:
@@ -0,0 +1,10 @@
[global]
map to guest = Bad User
server string = Samba Server Version %v
guest account = nobody

[myshare]
path = /home/share
read only = no
guest ok = yes
guest only = yes
@@ -0,0 +1,10 @@
version: '2'
services:
samba:
image: vulhub/samba:4.6.3
tty: true
volumes:
- ./.settings/smb.conf:/usr/local/samba/etc/smb.conf
ports:
- "445:445"
- "6699:6699"

0 comments on commit 5e9ece8

Please sign in to comment.