From 8e67f536ccdb2f848d06c7ca64b657118bfdd2eb Mon Sep 17 00:00:00 2001 From: Tanaydin Sirin Date: Fri, 5 Apr 2019 15:22:22 +0200 Subject: [PATCH] Added --plain output to exporter, it works with files so it is logical to make it plain all time. --- export.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/export.sh b/export.sh index 19790bc..ac26146 100755 --- a/export.sh +++ b/export.sh @@ -1,6 +1,8 @@ +#!/usr/bin/env bash + echo "Generating report" mkdir Report 2> /dev/null -python index.py --dir $1 > Report/exported.txt +python index.py --dir $1 --plain > Report/exported.txt cat Report/exported.txt | grep "Remote Co" -A4 > Report/RemoteCodeExecution.txt cat Report/exported.txt | grep "File Inclusion" -A4 > Report/File_Inclusion.txt cat Report/exported.txt | grep "SQL Injection" -A4 > Report/SQL_Injection.txt