### Dir-find
**Common -> txt,php,zip,html**
### Dirsearch
[GitHub - maurosoria/dirsearch: Web path scanner](https://github.com/maurosoria/dirsearch
```
dirsearch.py -E -r -u http://website
```
### wfuzz
```
wfuzz -w /usr/share/SecLists/Discovery/Web-Content/big.txt -u http://website/FUZZ
wfuzz -w /usr/share/SecLists/Discovery/Web-Content/big.txt -hw 100 -u http://website/FUZZ
```
### dirmap
[GitHub - H4ckForJob/dirmap: An advanced web directory & file scanning tool that will be more powerful than DirBuster, Dirsearch, cansina, and Yu Jian.一个高级web目录、文件扫描工具,功能将会强于DirBuster、Dirsearch、cansina、御剑。](https://github.com/H4ckForJob/dirmap)
example command
```
python3 dirmap.py -i https://target.com -lcf
```
### gobuster
[GitHub - OJ/gobuster: Directory/File, DNS and VHost busting tool written in Go](https://github.com/OJ/gobuster)
```
gobuster dir -u http://website/ -w /usr/share/SecLists/Discovery/Web-Content/big.txt -e -s 200,204,403,500 -o test_fuzzdir_8081.txt -x php,txt,html
```
```
for i in files directories; do gobuster dir -t 30 -u http://$RHOST -w /opt/wordlists/seclists/Discovery/Web-Content/raft-medium-$i.txt -o scans/web/gobuster-80-rm${i:0:1}.txt; done
```
### feroxbuster
[GitHub - epi052/feroxbuster: A fast, simple, recursive content discovery tool written in Rust.](https://github.com/epi052/feroxbuster)
```
feroxbuster -w ~/Desktop/rayman/new-tools/tools/sec_wrd/Discovery/Web-Content/big.txt -r -d 2 -k -x txt,html,php -C 500 --url https://ta-colony.xingyuyouxi.com/
```