Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dark-warlord14/ffufalias
Alias for storing ffuf results
https://github.com/dark-warlord14/ffufalias
Last synced: 21 days ago
JSON representation
Alias for storing ffuf results
- Host: GitHub
- URL: https://github.com/dark-warlord14/ffufalias
- Owner: dark-warlord14
- Created: 2020-05-23T14:06:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T14:18:31.000Z (over 4 years ago)
- Last Synced: 2024-08-05T17:30:53.667Z (4 months ago)
- Size: 3.91 KB
- Stars: 21
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - dark-warlord14/ffufalias - Alias for storing ffuf results (Others)
README
# ffufalias
Alias for storing results every time you run ffuf.```
dirs(){
name=$(echo $1 | unfurl -u domains)
x=$(date +%Y%m%d%H%M%S)
mkdir -p ~/Reports
mkdir -p ~/Reports/$name
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
}
```Copy this alias to your bash profile and next time you want to run ffuf just type the following command
`dirs https://yahoo.com/`