1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Usage: gobuster [command...]
-t, --thread 设置线程(默认10)
-v, --verbose 详细输出
-z, --no-progress 不显示进度
-q, --quiet 不打印横幅,安静模式
-o, --output 将结果写入的输出文件
-x, --extensions 指定枚举的扩展名
-k, --no-tls-validation 跳过TLS证书验证
-C, --cookie 请求中使用的cookie
-H, --headers 指定请求头
-n, --no-status 不打印状态码
-s, --status-codes 肯定的状态码
-b, --status-codes-blacklist 负面的状态码
-U, --username Basic验证用户名
-P, --password Basic验证密码
-c, --show-cname 显示CNAME记录,不能和-i一起使用
-i, --show-ip 显示IP地址
-r, --resolver 自定义DNS服务器
1
2
3
4
5
6
7
8
# dir
gobuster dir -u http://example.htb/ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -k

# dns
gobuster dns -d example.htb -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-5000.txt -t 100

# vhost
gobuster vhost -u http://example.htb --append-domain -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-5000.txt -t 100
2024-09-08
Contents

⬆︎TOP