From daff9dfbc06b0b1e651082ff860dce13d44426c8 Mon Sep 17 00:00:00 2001 From: NullByte8080 <56739681+NullByte8080@users.noreply.github.com> Date: Sat, 17 Oct 2020 23:21:33 +0530 Subject: [PATCH] Create recon.sh recon --- recon.sh | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 recon.sh diff --git a/recon.sh b/recon.sh new file mode 100644 index 00000000..173c49cf --- /dev/null +++ b/recon.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +domain=$1 +wordlist=https://github.com/danielmiessler/SecLists/tree/master/Discovery/DNS --Download and add path here.. +ressolvers="add txt file of all ip that u want to resolve" + +domain_enum(){ + +mkdir -p $domain $domain/sources $domain/Recon/ +#Passive Enumeration +subdinder -d domain=$1 -o $domain/sources/subfinder.txt +assestfinder -subs-only domain=$1 | tee $domain/sources/hackerone.txt +amass enum -passive domain=$1 -o $domain/sources/passive.txt + +#Active Enumeration using brutefoorce +shuffledns -d $domain -w $wordlist -r $resolvers -o $domain/sources/suffledns.txt + +cat $domain/sources/*.txt > $domain/sources/all.txt + +} +domain_enum + + +resolving_domains(){ + +suffledns -d $domain -list $domain/sources/all.txt -o $domain/domain.txt -r $ressolvers + + +} +resolving_domains + + +http_prob(){ +cat $domain/domain.txt | httpx -thread 50 -o $domain/Recon/httpx.txt +} +http_prob + + + + + + + + +