Skip to content

Instantly share code, notes, and snippets.

@0xSojalSec
Forked from incogbyte/juicy.sh
Created January 2, 2023 14:43
Show Gist options
  • Save 0xSojalSec/f40b199290dc8765e98c35b19aba732e to your computer and use it in GitHub Desktop.
Save 0xSojalSec/f40b199290dc8765e98c35b19aba732e to your computer and use it in GitHub Desktop.

Revisions

  1. @incogbyte incogbyte created this gist Jan 9, 2020.
    12 changes: 12 additions & 0 deletions juicy.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    #!/bin/sh
    #tomnomnom juicy files https://gist.github.com/tomnomnom/57af04c3422aac8c6f04451a4c1daa51
    # ffuf tool https://github.com/ffuf/ffuf
    # put the ffuf bin at /usr/local/bin and give the juicy.sh permission to execute with chmod +x juicy.sh and copy to
    # /usr/local/bin too.. after that.. execute juicy.sh at any terminal.
    # usage bash juicy.sh filename.txt

    filename="$1"
    while read -r line; do
    name="$line"
    ffuf -w /home/$USER/tools/wordlist/common-paths-tom.txt -u "$name/FUZZ"
    done < "$filename"