Add ffuf aliases

This commit is contained in:
David Tomaschik
2022-10-16 20:47:00 -07:00
parent 81093ab3d6
commit 373189f440

View File

@@ -6,3 +6,12 @@ if ! command -v bat >/dev/null 2>&1 ; then
alias bat=$(command -v batcat) alias bat=$(command -v batcat)
fi fi
fi fi
# FFUF aliases
if command -v ffuf >/dev/null 2>&1 ; then
if test -d $HOME/tools/seclists ; then
alias ffuf-files="ffuf -c -w $HOME/tools/seclists/Discovery/Web-Content/raft-large-files.txt"
alias ffuf-dirs="ffuf -c -w $HOME/tools/seclists/Discovery/Web-Content/raft-large-directories.txt"
alias ffuf-quick="ffuf -c -w $HOME/tools/seclists/Discovery/Web-Content/quickhits.txt"
fi
fi