Skip to content

Instantly share code, notes, and snippets.

@asadanwar90
Forked from payloadartist/firefox.sh
Created April 5, 2020 16:05
Show Gist options
  • Select an option

  • Save asadanwar90/660b132bbfd3fb29a5b03124e538c39f to your computer and use it in GitHub Desktop.

Select an option

Save asadanwar90/660b132bbfd3fb29a5b03124e538c39f to your computer and use it in GitHub Desktop.

Revisions

  1. @payloadartist payloadartist revised this gist Mar 22, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion firefox.sh
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    # ------Instructions---------
    # Install subfinder, assetfinder, and httprobe
    # 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
  2. @payloadartist payloadartist revised this gist Mar 22, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion firefox.sh
    Original 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/ && go get -v github.com/tomnomnom/httprobe && go get -v github.com/tomnomnom/assetfinder
    # 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
  3. @payloadartist payloadartist revised this gist Mar 22, 2020. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions firefox.sh
    Original 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
  4. @payloadartist payloadartist revised this gist Mar 22, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion firefox.sh
    Original 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
    subfinder -d $1 -silent -t 100 | httprobe -c 50 | sort -u | while read line; do firefox $line; sleep 10; done
    }

    asset_ff () {
  5. @payloadartist payloadartist revised this gist Mar 21, 2020. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion firefox.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,6 @@
    # cat firefox.sh >> ~/.bashrc
    # ------Instructions---------
    # cat firefox.sh >> ~/.bashrc
    # source ~/.bashrc
    # Usage - subf_ff target.tld
    # asset_ff target.tld

  6. @payloadartist payloadartist renamed this gist Mar 21, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion chrome.sh → firefox.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    # cat chrome.sh >> ~/.bashrc
    # cat firefox.sh >> ~/.bashrc
    # Usage - subf_ff target.tld
    # asset_ff target.tld

  7. @payloadartist payloadartist created this gist Mar 21, 2020.
    13 changes: 13 additions & 0 deletions chrome.sh
    Original 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
    }