Skip to content

Instantly share code, notes, and snippets.

@s41n1k
Forked from noobsdt/ffuf.sh
Created January 25, 2022 07:30
Show Gist options
  • Save s41n1k/aded6181dc4aaa8b54367b46b8e352e0 to your computer and use it in GitHub Desktop.
Save s41n1k/aded6181dc4aaa8b54367b46b8e352e0 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "###############################"
echo "# Ffuf #"
echo "###############################"
echo ""
echo ""
echo "[1] subdomains.txt"
echo "[2] subdomain-large.txt"
echo "[3] raft-large-directories.txt"
echo "[4] content_discovery_all.txt"
echo "[5] big.txt"
echo "[6] common_paths.txt"
echo "[7] dns-Jhaddix.txt"
echo "[8] wordpress.fuzz.txt"
echo "[9] burp-parameter-names.txt"
echo ""
read -p 'Chose Wordlist: ' wl
read -p 'Give Your URL(with FUZZ): ' u
if [[ $wl == 1 ]]
then
ffuf -c -w ~/wordlist/subdomains.txt -u $u -recursion
elif [[ $wl == 2 ]]
then
ffuf -c -w ~/wordlist/subdomain-large.txt -u $u -recursion
elif [[ $wl == 3 ]]
then
ffuf -c -w ~/wordlist/raft-large-directories.txt -u $u -recursion
elif [[ $wl == 4 ]]
then
ffuf -c -w ~/wordlist/content_discovery_all.txt -u $u -recursion
elif [[ $wl == 5 ]]
then
ffuf -c -w ~/wordlist/big.txt -u $u -recursion
elif [[ $wl == 6 ]]
then
ffuf -c -w ~/wordlist/common_paths.txt -u $u -recursion
elif [[ $wl == 7 ]]
then
ffuf -c -w ~/wordlist/dns-Jhaddix.txt -u $u -recursion
elif [[ $wl == 8 ]]
then
ffuf -c -w ~/wordlist/wordpress.fuzz.txt -u $u -recursion
elif [[ $wl == 9 ]]
then
ffuf -c -w ~/wordlist/burp-parameter-names.txt -u $u -recursion
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment