From 8bbfe7ac6297ebd3f3184e645c2a3f8eddd0ef19 Mon Sep 17 00:00:00 2001 From: Marco Ochse Date: Wed, 14 Feb 2024 20:16:13 +0100 Subject: [PATCH] Fix manuf location --- docker/conpot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/conpot/Dockerfile b/docker/conpot/Dockerfile index a84b07d9..ab09ea0f 100644 --- a/docker/conpot/Dockerfile +++ b/docker/conpot/Dockerfile @@ -66,7 +66,7 @@ RUN apk --no-cache -U add \ # # 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 && \ + wget https://www.wireshark.org/download/automated/data/manuf -o /usr/share/wireshark/manuf && \ cp /root/dist/conpot.cfg /etc/conpot/conpot.cfg && \ cp -R /root/dist/templates /usr/lib/python3.10/site-packages/conpot/ && \ addgroup -g 2000 conpot && \