From 9120b092d764a7d5a2805d1a052d3e966ab3d454 Mon Sep 17 00:00:00 2001 From: Conscript-Security <71181879+Conscript-Security@users.noreply.github.com> Date: Wed, 21 Oct 2020 21:37:19 +0530 Subject: [PATCH] Update reconizer.sh --- reconizer.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/reconizer.sh b/reconizer.sh index 5dea469..eb0c869 100644 --- a/reconizer.sh +++ b/reconizer.sh @@ -134,6 +134,38 @@ cat ~/recon/$1/unique.txt echo "${yellow} ---------------------------------- xxxxxxxx ---------------------------------- ${reset}" echo "" echo "${blue} [+] Succesfully saved to unique.txt ${reset}" + +#sorting alive subdomains +echo "${yellow} ---------------------------------- xxxxxxxx ---------------------------------- ${reset}" +echo " " +echo "${red} [+] sorting alive subdomains ${reset}" +echo "" +cat ~/recon/$1/unique.txt | httpx >> ~/recon/$1/all-unique-alive-subs.txt +echo "${yellow} ---------------------------------- xxxxxxxx ---------------------------------- ${reset}" +echo "" +echo "${blue} [+] Successfully saved to all-unique-alive-subs.txt" + +#screenshotting +echo "${yellow} ---------------------------------- xxxxxxxx ---------------------------------- ${reset}" +echo " " +echo "${red} [+] Screenshotting alive subs ${reset}" +echo "" +mkdir ~/recon/$1/screenshots +if [ -f ~/go/bin/aquatone ] +then + echo "${magenta} [+] Running Aquatone ${reset}" + cat ~/recon/$1/all-unique-alive-subs.txt | aquatone -out ~/recon/$1/screenshots +else + echo "${blue} [+] Installing Aquatone ${reset}" + go get -u github.com/michenriksen/aquatone + echo "${magenta} [+] Running Aquatone ${reset}" + cat ~/recon/$1/all-unique-alive-subs.txt | aquatone -out ~/recon/$1/screenshots +fi +echo "${yellow} ---------------------------------- xxxxxxxx ---------------------------------- ${reset}" +echo "" +echo "${blue} [+] Successfully saved to screenshots" + echo "${red} [+] Thank you for using R3C0nizer${reset}" echo "" echo "${yellow} ---------------------------------- xxxxxxxx ---------------------------------- ${reset}" +