diff --git a/docker/adbhoney/Dockerfile b/docker/adbhoney/Dockerfile index d6808eb4..3c2f6b6e 100644 --- a/docker/adbhoney/Dockerfile +++ b/docker/adbhoney/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/ciscoasa/Dockerfile b/docker/ciscoasa/Dockerfile index ad64bfb1..96463820 100644 --- a/docker/ciscoasa/Dockerfile +++ b/docker/ciscoasa/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/ciscoasa/docker-compose.yml b/docker/ciscoasa/docker-compose.yml index 2aab5b40..228dc540 100644 --- a/docker/ciscoasa/docker-compose.yml +++ b/docker/ciscoasa/docker-compose.yml @@ -1,5 +1,8 @@ version: '2.3' +networks: + ciscoasa_local: + services: # Ciscoasa service diff --git a/docker/citrixhoneypot/Dockerfile b/docker/citrixhoneypot/Dockerfile index b6788840..b3346f23 100644 --- a/docker/citrixhoneypot/Dockerfile +++ b/docker/citrixhoneypot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Install packages RUN apk --no-cache -U add \ @@ -28,7 +28,7 @@ RUN apk --no-cache -U add \ addgroup -g 2000 citrixhoneypot && \ adduser -S -H -s /bin/ash -u 2000 -D -g 2000 citrixhoneypot && \ chown -R citrixhoneypot:citrixhoneypot /opt/citrixhoneypot && \ - setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \ + setcap cap_net_bind_service=+ep /usr/bin/python3.10 && \ # # Clean up apk del --purge git \ diff --git a/docker/conpot/Dockerfile b/docker/conpot/Dockerfile index feb4fd33..209e6a04 100644 --- a/docker/conpot/Dockerfile +++ b/docker/conpot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -62,13 +62,13 @@ RUN apk --no-cache -U add \ pip3 install --no-cache-dir . && \ cd / && \ rm -rf /opt/conpot /tmp/* /var/tmp/* && \ - setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \ + setcap cap_net_bind_service=+ep /usr/bin/python3.10 && \ # # Get wireshark manuf db for scapy, setup configs, user, groups mkdir -p /etc/conpot /var/log/conpot /usr/share/wireshark && \ wget https://github.com/wireshark/wireshark/raw/master/manuf -o /usr/share/wireshark/manuf && \ cp /root/dist/conpot.cfg /etc/conpot/conpot.cfg && \ - cp -R /root/dist/templates /usr/lib/python3.9/site-packages/conpot/ && \ + cp -R /root/dist/templates /usr/lib/python3.10/site-packages/conpot/ && \ addgroup -g 2000 conpot && \ adduser -S -s /bin/ash -u 2000 -D -g 2000 conpot && \ # diff --git a/docker/conpot/dist/conpot.cfg b/docker/conpot/dist/conpot.cfg index 1dddaf41..e67d5d48 100644 --- a/docker/conpot/dist/conpot.cfg +++ b/docker/conpot/dist/conpot.cfg @@ -3,7 +3,7 @@ sensorid = conpot [virtual_file_system] data_fs_url = %(CONPOT_TMP)s -fs_url = tar:///usr/lib/python3.9/site-packages/conpot/data.tar +fs_url = tar:///usr/lib/python3.10/site-packages/conpot/data.tar [session] timeout = 30 diff --git a/docker/cowrie/Dockerfile b/docker/cowrie/Dockerfile index 8b12e318..0c150a0b 100644 --- a/docker/cowrie/Dockerfile +++ b/docker/cowrie/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -40,9 +40,10 @@ RUN apk --no-cache -U add \ # Install cowrie mkdir -p /home/cowrie && \ cd /home/cowrie && \ - git clone --depth=1 https://github.com/micheloosterhof/cowrie -b v2.3.0 && \ + #git clone --depth=1 https://github.com/cowrie/cowrie -b v2.3.0 && \ + git clone --depth=1 https://github.com/cowrie/cowrie && \ cd cowrie && \ -# git checkout 6b1e82915478292f1e77ed776866771772b48f2e && \ + git checkout 8b1e1cf4db0d3b0e70b470cf40385bbbd3ed1733 && \ mkdir -p log && \ cp /root/dist/requirements.txt . && \ pip3 install --upgrade pip && \ diff --git a/docker/ddospot/Dockerfile b/docker/ddospot/Dockerfile index c76469b6..3dd554ce 100644 --- a/docker/ddospot/Dockerfile +++ b/docker/ddospot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -41,7 +41,7 @@ RUN apk --no-cache -U add \ sed -i "s#rotate_size = 10#rotate_size = 9999#g" /opt/ddospot/ddospot/pots/ssdp/ssdpot.conf && \ cp /root/dist/requirements.txt . && \ pip3 install -r ddospot/requirements.txt && \ - setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \ + setcap cap_net_bind_service=+ep /usr/bin/python3.10 && \ # # Setup user, groups and configs addgroup -g 2000 ddospot && \ diff --git a/docker/dicompot/Dockerfile b/docker/dicompot/Dockerfile index 886fc587..c4fc9f36 100644 --- a/docker/dicompot/Dockerfile +++ b/docker/dicompot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Setup apk RUN apk -U add --no-cache \ diff --git a/docker/elasticpot/Dockerfile b/docker/elasticpot/Dockerfile index 6be72abc..b91fec65 100644 --- a/docker/elasticpot/Dockerfile +++ b/docker/elasticpot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/endlessh/Dockerfile b/docker/endlessh/Dockerfile index 72e13475..94afd0cc 100644 --- a/docker/endlessh/Dockerfile +++ b/docker/endlessh/Dockerfile @@ -16,7 +16,7 @@ RUN apk -U add --no-cache \ make && \ mv /opt/endlessh/endlessh /root/dist # -FROM alpine:3.15 +FROM alpine:3.16 # COPY --from=builder /root/dist/* /opt/endlessh/ # diff --git a/docker/ewsposter/Dockerfile b/docker/ewsposter/Dockerfile index c34da45c..d6fd1af5 100644 --- a/docker/ewsposter/Dockerfile +++ b/docker/ewsposter/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/fatt/Dockerfile b/docker/fatt/Dockerfile index ace00609..ba741510 100644 --- a/docker/fatt/Dockerfile +++ b/docker/fatt/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Get and install dependencies & packages RUN apk -U --no-cache add \ diff --git a/docker/hellpot/Dockerfile b/docker/hellpot/Dockerfile index 2d50aae1..a8297f30 100644 --- a/docker/hellpot/Dockerfile +++ b/docker/hellpot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/honeypots/Dockerfile b/docker/honeypots/Dockerfile index 6eea4b9c..52daa871 100644 --- a/docker/honeypots/Dockerfile +++ b/docker/honeypots/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -58,7 +58,7 @@ RUN apk -U --no-cache add \ cp /root/dist/setup.py . && \ pip3 install --upgrade pip && \ pip3 install . && \ - setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \ + setcap cap_net_bind_service=+ep /usr/bin/python3.10 && \ # # Setup user, groups and configs addgroup -g 2000 honeypots && \ diff --git a/docker/ipphoney/Dockerfile b/docker/ipphoney/Dockerfile index 489364c3..f562c123 100644 --- a/docker/ipphoney/Dockerfile +++ b/docker/ipphoney/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -37,7 +37,7 @@ RUN apk -U --no-cache add \ git checkout 7ab1cac437baba17cb2cd25d5bb1400327e1bb79 && \ cp /root/dist/requirements.txt . && \ pip3 install -r requirements.txt && \ - setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \ + setcap cap_net_bind_service=+ep /usr/bin/python3.10 && \ # # Setup user, groups and configs addgroup -g 2000 ipphoney && \ diff --git a/docker/medpot/Dockerfile b/docker/medpot/Dockerfile index 6cf8527c..b5d483df 100644 --- a/docker/medpot/Dockerfile +++ b/docker/medpot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Setup apk RUN apk -U --no-cache add \ diff --git a/docker/p0f/Dockerfile b/docker/p0f/Dockerfile index 4bb900a2..563ade72 100644 --- a/docker/p0f/Dockerfile +++ b/docker/p0f/Dockerfile @@ -1,6 +1,6 @@ # In case of problems Alpine 3.13 needs to be used: # https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0#faccessat2 -FROM alpine:3.15 +FROM alpine:3.16 # # Add source COPY . /opt/p0f diff --git a/docker/redishoneypot/Dockerfile b/docker/redishoneypot/Dockerfile index a5aa187e..13f846bb 100644 --- a/docker/redishoneypot/Dockerfile +++ b/docker/redishoneypot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/wordpot/Dockerfile b/docker/wordpot/Dockerfile index ea80eb11..6000dba0 100644 --- a/docker/wordpot/Dockerfile +++ b/docker/wordpot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -27,7 +27,7 @@ RUN apk -U --no-cache add \ # cp /root/dist/views.py /opt/wordpot2/wordpot/views.py && \ cp /root/dist/requirements.txt . && \ pip3 install -r requirements.txt && \ - setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \ + setcap cap_net_bind_service=+ep /usr/bin/python3.10 && \ # # Setup user, groups and configs addgroup -g 2000 wordpot && \