From 50d67fc28611a450caf4dfbbc2d580a32c94257e Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Thu, 13 Aug 2020 09:06:49 +0000 Subject: [PATCH] bump spiderfoot to 3.1 final Fix Spiderfoot issue not showing current scan --- docker/heimdall/dist/conf/tpotweb.conf | 4 ++++ docker/spiderfoot/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 && \