diff --git a/docker/heimdall/dist/conf/tpotweb.conf b/docker/heimdall/dist/conf/tpotweb.conf index ab0e6690..42473407 100644 --- a/docker/heimdall/dist/conf/tpotweb.conf +++ b/docker/heimdall/dist/conf/tpotweb.conf @@ -149,4 +149,8 @@ server { proxy_pass http://127.0.0.1:64303/spiderfoot/scandelete; } + location /scaninfo { + proxy_pass http://127.0.0.1:64303/spiderfoot/scaninfo; + } + } diff --git a/docker/spiderfoot/Dockerfile b/docker/spiderfoot/Dockerfile index 5a70267d..5462e68a 100644 --- a/docker/spiderfoot/Dockerfile +++ b/docker/spiderfoot/Dockerfile @@ -33,7 +33,7 @@ RUN sed -i 's/dl-cdn/dl-2/g' /etc/apk/repositories && \ adduser -S -s /bin/ash -u 2000 -D -g 2000 spiderfoot && \ # # Install spiderfoot - git clone --depth=1 https://github.com/smicallef/spiderfoot /home/spiderfoot && \ + git clone --depth=1 -b v3.1 https://github.com/smicallef/spiderfoot /home/spiderfoot && \ cd /home/spiderfoot && \ pip3 install --no-cache-dir wheel && \ pip3 install --no-cache-dir -r requirements.txt && \