mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-19 21:52:27 +00:00
prepare for nginx docker image
This commit is contained in:
parent
8e76d4c909
commit
46c92047cb
17 changed files with 439 additions and 0 deletions
10
bin/clean.sh
10
bin/clean.sh
|
@ -36,6 +36,8 @@ fuLOGROTATE () {
|
||||||
# Ensure correct permissions and ownerships for logrotate to run without issues
|
# Ensure correct permissions and ownerships for logrotate to run without issues
|
||||||
chmod 760 /data/ -R
|
chmod 760 /data/ -R
|
||||||
chown tpot:tpot /data -R
|
chown tpot:tpot /data -R
|
||||||
|
chmod 644 /data/nginx/conf -R
|
||||||
|
chmod 644 /data/nginx/cert -R
|
||||||
|
|
||||||
# Run logrotate with force (-f) first, so the status file can be written and race conditions (with tar) be avoided
|
# Run logrotate with force (-f) first, so the status file can be written and race conditions (with tar) be avoided
|
||||||
logrotate -f -s $mySTATUS $myCONF
|
logrotate -f -s $mySTATUS $myCONF
|
||||||
|
@ -138,6 +140,13 @@ fuMAILONEY () {
|
||||||
chown tpot:tpot /data/mailoney/ -R
|
chown tpot:tpot /data/mailoney/ -R
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Let's create a function to clean up nginx logs
|
||||||
|
fuNGINX () {
|
||||||
|
if [ "$myPERSISTENCE" != "on" ]; then rm /data/nginx/log/*; fi
|
||||||
|
chmod 644 /data/nginx/conf -R
|
||||||
|
chmod 644 /data/nginx/cert -R
|
||||||
|
}
|
||||||
|
|
||||||
# Let's create a function to clean up and prepare rdpy data
|
# Let's create a function to clean up and prepare rdpy data
|
||||||
fuRDPY () {
|
fuRDPY () {
|
||||||
if [ "$myPERSISTENCE" != "on" ]; then rm -rf /data/rdpy/*; fi
|
if [ "$myPERSISTENCE" != "on" ]; then rm -rf /data/rdpy/*; fi
|
||||||
|
@ -210,6 +219,7 @@ if [ "$myPERSISTENCE" = "on" ];
|
||||||
fuGLASTOPF
|
fuGLASTOPF
|
||||||
fuHONEYTRAP
|
fuHONEYTRAP
|
||||||
fuMAILONEY
|
fuMAILONEY
|
||||||
|
fuNGINX
|
||||||
fuRDPY
|
fuRDPY
|
||||||
fuSPIDERFOOT
|
fuSPIDERFOOT
|
||||||
fuSURICATA
|
fuSURICATA
|
||||||
|
|
23
docker/nginx/Dockerfile
Normal file
23
docker/nginx/Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
FROM nginx:alpine
|
||||||
|
MAINTAINER MO
|
||||||
|
|
||||||
|
# Include dist
|
||||||
|
ADD dist/ /root/dist/
|
||||||
|
|
||||||
|
# Get and install dependencies & packages
|
||||||
|
RUN apk -U upgrade && \
|
||||||
|
apk add bash nginx nginx-mod-http-headers-more procps && \
|
||||||
|
|
||||||
|
# Setup configs
|
||||||
|
rm /etc/nginx/conf.d/* /usr/share/nginx/html/* && \
|
||||||
|
cp /root/dist/conf/nginx.conf /etc/nginx/ && \
|
||||||
|
cp -R /root/dist/conf/ssl /etc/nginx/ && \
|
||||||
|
cp /root/dist/conf/tpotweb.conf /etc/nginx/conf.d/ && \
|
||||||
|
cp -R /root/dist/html/ /var/lib/nginx/ && \
|
||||||
|
|
||||||
|
# Clean up
|
||||||
|
rm -rf /root/* && \
|
||||||
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
# Start nginx
|
||||||
|
CMD nginx -g 'daemon off;'
|
97
docker/nginx/dist/conf/nginx.conf
vendored
Normal file
97
docker/nginx/dist/conf/nginx.conf
vendored
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
user nginx;
|
||||||
|
worker_processes auto;
|
||||||
|
pid /run/nginx.pid;
|
||||||
|
load_module /usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 768;
|
||||||
|
# multi_accept on;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
|
||||||
|
##
|
||||||
|
# Basic Settings
|
||||||
|
##
|
||||||
|
|
||||||
|
sendfile on;
|
||||||
|
tcp_nopush on;
|
||||||
|
tcp_nodelay on;
|
||||||
|
keepalive_timeout 65;
|
||||||
|
types_hash_max_size 2048;
|
||||||
|
# server_tokens off;
|
||||||
|
|
||||||
|
# server_names_hash_bucket_size 64;
|
||||||
|
# server_name_in_redirect off;
|
||||||
|
|
||||||
|
include /etc/nginx/mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
|
||||||
|
##
|
||||||
|
# SSL Settings
|
||||||
|
##
|
||||||
|
|
||||||
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
##
|
||||||
|
# Logging Settings
|
||||||
|
##
|
||||||
|
|
||||||
|
log_format le_json '{ "timestamp": "$time_iso8601", '
|
||||||
|
'"src_ip": "$remote_addr", '
|
||||||
|
'"remote_user": "$remote_user", '
|
||||||
|
'"body_bytes_sent": "$body_bytes_sent", '
|
||||||
|
'"request_time": "$request_time", '
|
||||||
|
'"status": "$status", '
|
||||||
|
'"request": "$request", '
|
||||||
|
'"request_method": "$request_method", '
|
||||||
|
'"http_referrer": "$http_referer", '
|
||||||
|
'"http_user_agent": "$http_user_agent" }';
|
||||||
|
|
||||||
|
access_log /var/log/nginx/access.log le_json;
|
||||||
|
error_log /var/log/nginx/error.log;
|
||||||
|
|
||||||
|
##
|
||||||
|
# Gzip Settings
|
||||||
|
##
|
||||||
|
|
||||||
|
gzip on;
|
||||||
|
gzip_disable "msie6";
|
||||||
|
|
||||||
|
# gzip_vary on;
|
||||||
|
# gzip_proxied any;
|
||||||
|
# gzip_comp_level 6;
|
||||||
|
# gzip_buffers 16 8k;
|
||||||
|
# gzip_http_version 1.1;
|
||||||
|
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||||
|
|
||||||
|
##
|
||||||
|
# Virtual Host Configs
|
||||||
|
##
|
||||||
|
|
||||||
|
include /etc/nginx/conf.d/*.conf;
|
||||||
|
include /etc/nginx/sites-enabled/*;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#mail {
|
||||||
|
# # See sample authentication script at:
|
||||||
|
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
|
||||||
|
#
|
||||||
|
# # auth_http localhost/auth.php;
|
||||||
|
# # pop3_capabilities "TOP" "USER";
|
||||||
|
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||||
|
#
|
||||||
|
# server {
|
||||||
|
# listen localhost:110;
|
||||||
|
# protocol pop3;
|
||||||
|
# proxy on;
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# server {
|
||||||
|
# listen localhost:143;
|
||||||
|
# protocol imap;
|
||||||
|
# proxy on;
|
||||||
|
# }
|
||||||
|
#}
|
13
docker/nginx/dist/conf/ssl/dhparam4096.pem
vendored
Normal file
13
docker/nginx/dist/conf/ssl/dhparam4096.pem
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
-----BEGIN DH PARAMETERS-----
|
||||||
|
MIICCAKCAgEAiHmfakVLOStSULBdaTbZY/zeFyEeQ19GY9Z5CJg06dIIgIzhxk9L
|
||||||
|
4xsQdQk8giKOjP6SfX0ZgF5CYaurQ3ljYlP0UlAQQo9+fEErbqj3hCzAxtIpd6Yj
|
||||||
|
SV6zFdnSjwxWuKAPPywiQNljnHH+Y1KBdbl5VQ9gC3ehtaLo1A4y8q96f6fC5rGU
|
||||||
|
nfgw4lTxLvPD7NwaOdFTCyK8tTxvUGNJIvf7805IxZ0BvAiBuVaXStaMcqf5BHLP
|
||||||
|
fYpvIiVaCrtto4elu18nL0tf2CN5n9ai4hlr0nPmNrE/Zrrur78Re5F4Ien9kr4d
|
||||||
|
xabXvVJJQa9j2NdQO7vk7Cz/dAIiqt/1XKFhll4TTYBqrFVXIwF+FNx636zyOjcO
|
||||||
|
nlZk/V+IL/UTPnZOv2PGt5+WetvJJubi6B9XgOgVLduI07woAp5qnRJJt6fJW1aA
|
||||||
|
M86By6WLy5P31Py6eFj8nYgj1V703XgQ5lESKYpeVgqA0bh7daNzOCoGQvvUKlTP
|
||||||
|
RTu6fs7clw5ta4yYUyvuIKTngH5yGBNdTuP0GWo6Y+Dy1BctVwl2xSw+FhYeuIf/
|
||||||
|
EB2A3129H59HhbWyNH337+1dfntHfQRXBsT0YSyDxPurI5/FNGcmw+GZEYk4BB8j
|
||||||
|
g7TwH3GBjbKnjnr7SnhanqmWgybgQw6oR9gDC399eR4LiOk9sbxpX1MCAQI=
|
||||||
|
-----END DH PARAMETERS-----
|
12
docker/nginx/dist/conf/ssl/gen-cert.sh
vendored
Normal file
12
docker/nginx/dist/conf/ssl/gen-cert.sh
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Got root?
|
||||||
|
myWHOAMI=$(whoami)
|
||||||
|
if [ "$myWHOAMI" != "root" ]
|
||||||
|
then
|
||||||
|
echo "Need to run as root ..."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
openssl req -nodes -x509 -sha512 -newkey rsa:8192 -keyout "nginx.key" -out "nginx.crt" -days 3650
|
||||||
|
|
16
docker/nginx/dist/conf/ssl/gen-dhparam.sh
vendored
Normal file
16
docker/nginx/dist/conf/ssl/gen-dhparam.sh
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Got root?
|
||||||
|
myWHOAMI=$(whoami)
|
||||||
|
if [ "$myWHOAMI" != "root" ]
|
||||||
|
then
|
||||||
|
echo "Need to run as root ..."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" = "2048" ] || [ "$1" = "4096" ] || [ "$1" = "8192" ]
|
||||||
|
then
|
||||||
|
openssl dhparam -outform PEM -out dhparam$1.pem $1
|
||||||
|
else
|
||||||
|
echo "Usage: ./gen-dhparam [2048, 4096, 8192]..."
|
||||||
|
fi
|
155
docker/nginx/dist/conf/tpotweb.conf
vendored
Normal file
155
docker/nginx/dist/conf/tpotweb.conf
vendored
Normal file
|
@ -0,0 +1,155 @@
|
||||||
|
############################################
|
||||||
|
### NGINX T-Pot configuration file by mo ###
|
||||||
|
############################################
|
||||||
|
|
||||||
|
###################################
|
||||||
|
### Allow for 60 reloads per minute
|
||||||
|
###################################
|
||||||
|
limit_req_zone $binary_remote_addr zone=base:1m rate=1r/s;
|
||||||
|
|
||||||
|
server {
|
||||||
|
|
||||||
|
#########################
|
||||||
|
### Basic server settings
|
||||||
|
#########################
|
||||||
|
listen 64297 ssl http2;
|
||||||
|
index tpotweb.html;
|
||||||
|
ssl_protocols TLSv1.2;
|
||||||
|
server_name example.com;
|
||||||
|
error_page 300 301 302 400 401 402 403 404 500 501 502 503 504 /error.html;
|
||||||
|
|
||||||
|
|
||||||
|
##############################################
|
||||||
|
### Remove version number add different header
|
||||||
|
##############################################
|
||||||
|
server_tokens off;
|
||||||
|
more_set_headers 'Server: apache';
|
||||||
|
|
||||||
|
|
||||||
|
##############################################
|
||||||
|
### SSL settings and Cipher Suites
|
||||||
|
##############################################
|
||||||
|
ssl_certificate /etc/nginx/cert/nginx.crt;
|
||||||
|
ssl_certificate_key /etc/nginx/cert/nginx.key;
|
||||||
|
|
||||||
|
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:!DHE:!SHA:!SHA256';
|
||||||
|
ssl_ecdh_curve secp384r1;
|
||||||
|
ssl_dhparam /etc/nginx/ssl/dhparam4096.pem;
|
||||||
|
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
ssl_session_cache shared:SSL:10m;
|
||||||
|
|
||||||
|
|
||||||
|
####################################
|
||||||
|
### OWASP recommendations / settings
|
||||||
|
####################################
|
||||||
|
|
||||||
|
### Size Limits & Buffer Overflows
|
||||||
|
### the size may be configured based on the needs.
|
||||||
|
client_body_buffer_size 100K;
|
||||||
|
client_header_buffer_size 1k;
|
||||||
|
client_max_body_size 100k;
|
||||||
|
large_client_header_buffers 2 1k;
|
||||||
|
|
||||||
|
### Mitigate Slow HHTP DoS Attack
|
||||||
|
### Timeouts definition ##
|
||||||
|
client_body_timeout 10;
|
||||||
|
client_header_timeout 10;
|
||||||
|
keepalive_timeout 5 5;
|
||||||
|
send_timeout 10;
|
||||||
|
|
||||||
|
### X-Frame-Options is to prevent from clickJacking attack
|
||||||
|
add_header X-Frame-Options SAMEORIGIN;
|
||||||
|
|
||||||
|
### disable content-type sniffing on some browsers.
|
||||||
|
add_header X-Content-Type-Options nosniff;
|
||||||
|
|
||||||
|
### This header enables the Cross-site scripting (XSS) filter
|
||||||
|
add_header X-XSS-Protection "1; mode=block";
|
||||||
|
|
||||||
|
### This will enforce HTTP browsing into HTTPS and avoid ssl stripping attack
|
||||||
|
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;";
|
||||||
|
|
||||||
|
|
||||||
|
##################################
|
||||||
|
### Restrict access and basic auth
|
||||||
|
##################################
|
||||||
|
|
||||||
|
# satisfy all;
|
||||||
|
satisfy any;
|
||||||
|
|
||||||
|
# allow 10.0.0.0/8;
|
||||||
|
# allow 172.16.0.0/12;
|
||||||
|
# allow 192.168.0.0/16;
|
||||||
|
allow 127.0.0.1;
|
||||||
|
allow ::1;
|
||||||
|
deny all;
|
||||||
|
|
||||||
|
auth_basic "closed site";
|
||||||
|
auth_basic_user_file /etc/nginx/nginxpasswd;
|
||||||
|
|
||||||
|
|
||||||
|
##############################
|
||||||
|
### Limit brute-force attempts
|
||||||
|
##############################
|
||||||
|
location = / {
|
||||||
|
limit_req zone=base burst=1 nodelay;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#################
|
||||||
|
### Proxied sites
|
||||||
|
#################
|
||||||
|
|
||||||
|
### Kibana
|
||||||
|
location /kibana/ {
|
||||||
|
proxy_pass http://localhost:64296;
|
||||||
|
rewrite /kibana/(.*)$ /$1 break;
|
||||||
|
}
|
||||||
|
|
||||||
|
### ES
|
||||||
|
location /es/ {
|
||||||
|
proxy_pass http://localhost:64298/;
|
||||||
|
rewrite /es/(.*)$ /$1 break;
|
||||||
|
}
|
||||||
|
|
||||||
|
### head standalone
|
||||||
|
location /myhead/ {
|
||||||
|
proxy_pass http://localhost:64302/;
|
||||||
|
rewrite /myhead/(.*)$ /$1 break;
|
||||||
|
}
|
||||||
|
|
||||||
|
### portainer
|
||||||
|
location /ui {
|
||||||
|
proxy_pass http://127.0.0.1:64299;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $http_connection;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_redirect off;
|
||||||
|
rewrite /ui/(.*)$ /$1 break;
|
||||||
|
}
|
||||||
|
### web tty
|
||||||
|
location /wetty {
|
||||||
|
proxy_pass http://127.0.0.1:64300/wetty;
|
||||||
|
}
|
||||||
|
|
||||||
|
### netdata
|
||||||
|
location /netdata/ {
|
||||||
|
proxy_pass http://localhost:64301;
|
||||||
|
rewrite /netdata/(.*)$ /$1 break;
|
||||||
|
}
|
||||||
|
|
||||||
|
### spiderfoot
|
||||||
|
location /spiderfoot {
|
||||||
|
proxy_pass http://127.0.0.1:64303;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /static {
|
||||||
|
proxy_pass http://127.0.0.1:64303/spiderfoot/static;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /scanviz {
|
||||||
|
proxy_pass http://127.0.0.1:64303/spiderfoot/scanviz;
|
||||||
|
}
|
||||||
|
}
|
0
docker/nginx/dist/html/error.html
vendored
Normal file
0
docker/nginx/dist/html/error.html
vendored
Normal file
BIN
docker/nginx/dist/html/favicon.ico
vendored
Normal file
BIN
docker/nginx/dist/html/favicon.ico
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 805 B |
21
docker/nginx/dist/html/navbar.html
vendored
Normal file
21
docker/nginx/dist/html/navbar.html
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en_US">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>T-Pot</title>
|
||||||
|
</head>
|
||||||
|
<link href="style.css" rel="stylesheet" type="text/css"/>
|
||||||
|
|
||||||
|
<body bgcolor="#E20074">
|
||||||
|
<center>
|
||||||
|
<a href="/tpotweb.html" target="_top" class="btn">Home</a>
|
||||||
|
<a href="/kibana" target="main" class="btn">Kibana</a>
|
||||||
|
<a href="/myhead/" target="main" class="btn">ES Head</a>
|
||||||
|
<a href="/netdata/" target="_blank" class="btn">Netdata</a>
|
||||||
|
<a href="/spiderfoot/" target="main" class="btn">Spiderfoot</a>
|
||||||
|
<a href="/ui/" target="main" class="btn">Portainer</a>
|
||||||
|
<a href="/wetty/ssh/tsec" target="main" class="btn">WebTTY</a>
|
||||||
|
</center>
|
||||||
|
</body>
|
||||||
|
</html>
|
17
docker/nginx/dist/html/style.css
vendored
Normal file
17
docker/nginx/dist/html/style.css
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
.btn {
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
border-radius: 0px;
|
||||||
|
font-family: Arial;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 12px;
|
||||||
|
background: #E20074;
|
||||||
|
padding: 2px 30px 2px 30px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:hover {
|
||||||
|
background: #c2c2c2;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
15
docker/nginx/dist/html/tpotweb.html
vendored
Normal file
15
docker/nginx/dist/html/tpotweb.html
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en_US">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>T-Pot</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<frameset rows='20,*' border='0' frameborder='0' framespacing='0'>
|
||||||
|
<frame src='navbar.html' name='navbar' marginwidth='0' marginheight='0' scrolling='no' noresize>
|
||||||
|
<frame src='/kibana' name='main' marginwidth='0' marginheight='0' scrolling='auto' noresize>
|
||||||
|
<noframes>
|
||||||
|
</noframes>
|
||||||
|
</frameset>
|
||||||
|
</html>
|
20
docker/nginx/docker-compose.yml
Normal file
20
docker/nginx/docker-compose.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# T-Pot (Standard)
|
||||||
|
# For docker-compose ...
|
||||||
|
version: '2.2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
# nginx service
|
||||||
|
nginx:
|
||||||
|
container_name: nginx
|
||||||
|
restart: always
|
||||||
|
network_mode: "host"
|
||||||
|
# cap_add:
|
||||||
|
# - NET_BIND_SERVICE
|
||||||
|
ports:
|
||||||
|
- "64297:64297"
|
||||||
|
image: "dtagdevsec/nginx:1710"
|
||||||
|
volumes:
|
||||||
|
- /data/nginx/cert/:/etc/nginx/cert/
|
||||||
|
- /data/nginx/conf/nginxpasswd:/etc/nginx/nginxpasswd
|
||||||
|
- /data/nginx/log/:/var/log/nginx/
|
|
@ -242,6 +242,19 @@ services:
|
||||||
- /sys:/host/sys:ro
|
- /sys:/host/sys:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
# Nginx service
|
||||||
|
nginx:
|
||||||
|
container_name: nginx
|
||||||
|
restart: always
|
||||||
|
network_mode: "host"
|
||||||
|
ports:
|
||||||
|
- "64297:64297"
|
||||||
|
image: "dtagdevsec/nginx:1710"
|
||||||
|
volumes:
|
||||||
|
- /data/nginx/cert/:/etc/nginx/cert/
|
||||||
|
- /data/nginx/conf/nginxpasswd:/etc/nginx/nginxpasswd
|
||||||
|
- /data/nginx/log/:/var/log/nginx/
|
||||||
|
|
||||||
# Rdpy service
|
# Rdpy service
|
||||||
rdpy:
|
rdpy:
|
||||||
container_name: rdpy
|
container_name: rdpy
|
||||||
|
|
|
@ -130,6 +130,19 @@ services:
|
||||||
- /sys:/host/sys:ro
|
- /sys:/host/sys:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
# Nginx service
|
||||||
|
nginx:
|
||||||
|
container_name: nginx
|
||||||
|
restart: always
|
||||||
|
network_mode: "host"
|
||||||
|
ports:
|
||||||
|
- "64297:64297"
|
||||||
|
image: "dtagdevsec/nginx:1710"
|
||||||
|
volumes:
|
||||||
|
- /data/nginx/cert/:/etc/nginx/cert/
|
||||||
|
- /data/nginx/conf/nginxpasswd:/etc/nginx/nginxpasswd
|
||||||
|
- /data/nginx/log/:/var/log/nginx/
|
||||||
|
|
||||||
# Spiderfoot service
|
# Spiderfoot service
|
||||||
spiderfoot:
|
spiderfoot:
|
||||||
container_name: spiderfoot
|
container_name: spiderfoot
|
||||||
|
|
|
@ -212,6 +212,19 @@ services:
|
||||||
- /sys:/host/sys:ro
|
- /sys:/host/sys:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
# Nginx service
|
||||||
|
nginx:
|
||||||
|
container_name: nginx
|
||||||
|
restart: always
|
||||||
|
network_mode: "host"
|
||||||
|
ports:
|
||||||
|
- "64297:64297"
|
||||||
|
image: "dtagdevsec/nginx:1710"
|
||||||
|
volumes:
|
||||||
|
- /data/nginx/cert/:/etc/nginx/cert/
|
||||||
|
- /data/nginx/conf/nginxpasswd:/etc/nginx/nginxpasswd
|
||||||
|
- /data/nginx/log/:/var/log/nginx/
|
||||||
|
|
||||||
# Rdpy service
|
# Rdpy service
|
||||||
rdpy:
|
rdpy:
|
||||||
container_name: rdpy
|
container_name: rdpy
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
/data/honeytrap/attacks.tgz
|
/data/honeytrap/attacks.tgz
|
||||||
/data/honeytrap/downloads.tgz
|
/data/honeytrap/downloads.tgz
|
||||||
/data/mailoney/log/commands.log
|
/data/mailoney/log/commands.log
|
||||||
|
/data/nginx/log/*.log
|
||||||
/data/p0f/log/p0f.json
|
/data/p0f/log/p0f.json
|
||||||
/data/rdpy/log/rdpy.log
|
/data/rdpy/log/rdpy.log
|
||||||
/data/suricata/log/*.log
|
/data/suricata/log/*.log
|
||||||
|
|
Loading…
Reference in a new issue