-
-
Save asadanwar90/660b132bbfd3fb29a5b03124e538c39f to your computer and use it in GitHub Desktop.
Revisions
-
payloadartist revised this gist
Mar 22, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # ------Instructions--------- # Install (and configure) subfinder, assetfinder, and httprobe # go get -v github.com/projectdiscovery/subfinder/cmd/subfinder && go get -v github.com/tomnomnom/httprobe && go get -v github.com/tomnomnom/assetfinder # cat firefox.sh >> ~/.bashrc # source ~/.bashrc -
payloadartist revised this gist
Mar 22, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # ------Instructions--------- # Install subfinder, assetfinder, and httprobe # go get -v github.com/projectdiscovery/subfinder/cmd/subfinder && go get -v github.com/tomnomnom/httprobe && go get -v github.com/tomnomnom/assetfinder # cat firefox.sh >> ~/.bashrc # source ~/.bashrc # Usage - subf_ff target.tld -
payloadartist revised this gist
Mar 22, 2020 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ # ------Instructions--------- # Install subfinder, assetfinder, and httprobe # go get -v github.com/projectdiscovery/ && go get -v github.com/tomnomnom/httprobe && go get -v github.com/tomnomnom/assetfinder # cat firefox.sh >> ~/.bashrc # source ~/.bashrc # Usage - subf_ff target.tld -
payloadartist revised this gist
Mar 22, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ # asset_ff target.tld subf_ff () { subfinder -d $1 -silent -t 100 | httprobe -c 50 | sort -u | while read line; do firefox $line; sleep 10; done } asset_ff () { -
payloadartist revised this gist
Mar 21, 2020 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ # ------Instructions--------- # cat firefox.sh >> ~/.bashrc # source ~/.bashrc # Usage - subf_ff target.tld # asset_ff target.tld -
payloadartist renamed this gist
Mar 21, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # cat firefox.sh >> ~/.bashrc # Usage - subf_ff target.tld # asset_ff target.tld -
payloadartist created this gist
Mar 21, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # cat chrome.sh >> ~/.bashrc # Usage - subf_ff target.tld # asset_ff target.tld subf_ff () { subfinder -d $1 -silent - t 100 | httprobe -c 50 | sort -u | while read line; do firefox $line; sleep 10; done } asset_ff () { assetfinder -subs-only $1 | httprobe -c 50 | sort -u | while read line; do firefox $line; sleep 10; done }