👑Find Endpoints

wide scope.txt
cat scope.txt | katana -ps -pss waybackarchive,commoncrawl,alienvault -f qurl | tee all_endpoints.txt && cat scope.txt | waybackurls | tee -a all_endpoints.txt && cat scope.txt | gau | tee -a all_endpoints.txt && cat all_endpoints.txt | urldedupe | tee endpoints.txt && cat endpoints.txt | grep "=" | sort -u > fuzz_parameters.txt && cat fuzz_parameters.txt | Gxss -p '"><hacked' | tee confirm_xss.txt
arjun -i all_endpoints.txt -oT asad.txt -t 10 -T 10 --passive

nslookup mytoken.us.dell.com

hostname:"mytoken.us.dell.com"

Hunt Single target with Ext-Endpoint

Ext endpoint testing
cat live.txt | katana -d 5 -em php,htm,html,asp,aspx,jsp,jspx,do,action | uniq | sort -u | tee active_ext_endpoint.txt 

cat live.txt | hakrawler -u -d 3 | tee -a crwal_endpoints.txt && 

cat all_endpoints.txt | grep ".php$" | uro | tee  active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".html$" | uro | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".htm$" | uro  | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".asp$" | uro | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".aspx$" | uro  | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".jsp$" | uro | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".jspx$" | uro  | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".do$" | uro | tee -a active_ext_endpoint.txt && 
cat all_endpoints.txt | grep ".action$" | uro  | tee -a active_ext_endpoint.txt && cat all_endpoints.txt | grep ".js$" | tee -a active_ext_endpoint.txt && 

cat active_ext_endpoint.txt | sort -u | httpx -mc 200 -silent | tee live_ext_endpoints.txt && 


cat live.txt | waybackurls | tee archive_endpoints.txt && cat live.txt | gau | tee -a archive_endpoints.txt && cat -u archive_endpoints.txt | sort -u | uro | httpx -mc 200 -silent | tee old_endpoints.txt && cat old_endpoints.txt | grep ".php$" | tee old_ext_endpoint.txt && cat old_endpoints.txt | grep ".html$" | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".htm$" | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".asp$" | uro | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".aspx$" | uro  | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".jsp$" | uro | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".jspx$" | uro  | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".do$" | uro | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".action$" | uro  | tee -a old_ext_endpoint.txt && cat old_endpoints.txt | grep ".js$" | tee -a old_ext_endpoint.txt && arjun -i live_endpoints.txt -oT live_endpoints_Arjun_result.txt && arjun -i old_ext_endpoint.txt -oT old_endpoints_Arjun_result.txt && rm crwal_endpoints.txt active_ext_endpoint.txt live_endpoints.txt archive_endpoints.txt old_endpoints.txt old_ext_endpoint.txt

My Methodology

Fuzzing Endpoints with the Same Extention Using My Wordlists and Save in hidden_endpoints.txt

My OneLiner

Configure Domain Name and Web Extensions and Save File Name

My OneLiner for Burp

Configure Domain Name

-------------------------------------------------------------

Find Endpoints with the Same Extension Using Dirsearch

-------------------------------------------------------------

Find Endpoints with with Burp proxy Using hakrawler

And Save in active_endpoints.txt

-------------------------------------------------------------

Find Endpoints with Burp proxy Using gospider

-------------------------------------------------------------

Find Endpoints with the Same Extention Using katana and Save in active_endpoints.txt

-------------------------------------------------------------

Find All Endpoints Using Archive URL and Save in old_endpoints.txt

-------------------------------------------------------------

Fuzzing Endpoints with the Same Extention Using My Wordlists and Save in hidden_endpoints.txt

-------------------------------------------------------------

Google Dork to Find Endpoints and Save live_endpoints.txt

-------------------------------------------------------------

Find Endpoints using javascript bookmarklet that will extract all endpoints

Last updated