from another time, i’m just trying to hunting bug in website using dirsearch tool, but I sometimes forget use of the command :)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$ dirsearch https://yourtarget-domain.com/ -i
$ dirsearch https://yourtarget-domain.com/ -i 200
$ dirsearch -u http://example.com/
$ dirsearch -u http://example.com/ -w /position/wordlist.txt
[This command scans directories on the basis of your wordlis]
$ dirsearch -u http://example.com/ -w /position/wordlist.txt — include-status=200
$ dirsearch -u http://example.com/ -w /position/wordlist.txt -e php,xml,html,js
[this command to scans on the basis file with extensions you want e.g.html,js,xml]
$ subfinder -d yourtarget-domain.com -o logreport.txt
$ httpx-toolkit -l logreport.txt -o active-logreport.txt -mc 200
|