Skip to content

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chvancooten committed Dec 15, 2023
1 parent 9bc57f6 commit 3825833
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions BugBountyScanner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,12 @@ do
echo "[-] SKIPPING SUBJACK"
fi

if [ ! -d "aquatone" ] || [ "$overwrite" = true ]
if [ ! -f "aquatone_report.html" ] || [ "$overwrite" = true ]
then
echo "[*] RUNNING AQUATONE..."
cat livedomains-$DOMAIN.txt | aquatone -ports medium
generate_screenshot_report "$DOMAIN"
notify "aquatone completed! Took *$(find aquatone/* -maxdepth 0 | wc -l)* screenshots. Getting Wayback Machine path list with GAU..."
notify "Aquatone completed! Took *$(find screenshots/* -maxdepth 0 | wc -l)* screenshots. Getting Wayback Machine path list with GAU..."
else
echo "[-] SKIPPING AQUATONE"
fi
Expand Down Expand Up @@ -262,7 +262,7 @@ do
while read -r dname;
do
filename=$(echo "${dname##*/}" | sed 's/:/./g')
ffuf -w "$toolsDir/wordlists/tempfiles.txt" -u "$dname" -maxtime 3 -o "ffuf-$filename.txt"
ffuf -w "$toolsDir/wordlists/tempfiles.txt" -u "$dname/FUZZ" -maxtime 3 -o "ffuf-$filename.txt"
done < "../livedomains-$DOMAIN.txt"

find . -size 0 -delete
Expand Down
2 changes: 1 addition & 1 deletion utils/screenshotReport.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ cat >> ../screenshotReport.html << FOOTER
</html>
FOOTER

cd ../..
cd ..
}

0 comments on commit 3825833

Please sign in to comment.