└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # ffufalias 2 | Alias for storing results every time you run ffuf. 3 | 4 | ``` 5 | dirs(){ 6 | name=$(echo $1 | unfurl -u domains) 7 | x=$(date +%Y%m%d%H%M%S) 8 | mkdir -p ~/Reports 9 | mkdir -p ~/Reports/$name 10 | ffuf -w /path/to/wordlist -u $1FUZZ -D -e asp,aspx,cgi,cfml,CFM,htm,html,json,jsp,php,phtml,pl,py,sh,shtml,sql,txt,xml,xhtml,tar,tar.gz,tgz,war,zip,swp,src,jar,java,log,bin,js,db -t 150 -o ~/Reports/$name/$name_$x.json 11 | } 12 | ``` 13 | 14 | Copy this alias to your bash profile and next time you want to run ffuf just type the following command 15 | 16 | `dirs https://yahoo.com/` 17 | --------------------------------------------------------------------------------