From 686f6909b58a6bedbee7d8d57e4187b6f0afa1c8 Mon Sep 17 00:00:00 2001 From: j3ssie Date: Fri, 6 Dec 2019 10:04:47 +0700 Subject: [PATCH] Fix input for screenshot module --- lib/workflow/general.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/workflow/general.py b/lib/workflow/general.py index a62d9cc..1e574f7 100644 --- a/lib/workflow/general.py +++ b/lib/workflow/general.py @@ -224,13 +224,13 @@ class ScreenShot: 'general': [ { "banner": "aquatone", - "cmd": f"cat $WORKSPACE/fingerprint/success-http-$OUTPUT.txt | $GO_PATH/aquatone -threads {threads} -out $WORKSPACE/screenshot/$OUTPUT-aquatone", + "cmd": f"cat $WORKSPACE/probing/http-$OUTPUT.txt | $GO_PATH/aquatone -threads {threads} -out $WORKSPACE/screenshot/$OUTPUT-aquatone", "output_path": "$WORKSPACE/screenshot/$OUTPUT-aquatone/aquatone_report.html", "std_path": "$WORKSPACE/screenshot/std-$OUTPUT-aquatone.std" }, { "banner": "gowitness", - "cmd": f"$GO_PATH/gowitness file -s $WORKSPACE/fingerprint/success-http-$OUTPUT.txt -t {threads} --log-level fatal --destination $WORKSPACE/screenshot/raw-gowitness/ --db $WORKSPACE/screenshot/gowitness.db", + "cmd": f"$GO_PATH/gowitness file -s $WORKSPACE/probing/http-$OUTPUT.txt -t {threads} --log-level fatal --destination $WORKSPACE/screenshot/raw-gowitness/ --db $WORKSPACE/screenshot/gowitness.db", "output_path": "$WORKSPACE/screenshot/gowitness.db", "std_path": "", },