目录
- 1. Options模块的帮助文档
- 2. 各个参数的介绍
- 2.1 -h --help
- 2.2 -hh
- 2.3 --version
- 2.4 -v VERBOSE
 
1. Options模块的帮助文档
Options:-h, --help            Show basic help message and exit-hh                   Show advanced help message and exit--version             Show program's version number and exit-v VERBOSE            Verbosity level: 0-6 (default 1)
2. 各个参数的介绍
2.1 -h --help
参数:-h, --help
 作用: Show basic help message and exit。显示帮助信息。
2.2 -hh
参数:-hh
 作用:Show advanced help message and exit。显示高级的帮助信息,比-h显示的参数更多。
2.3 --version
参数:–version
 作用:Show program’s version number and exit。显示版本。
2.4 -v VERBOSE
参数:-v VERBOSE
 作用:Verbosity level: 0-6 (default 1)。指定输出内容的级别,有0-6级,默认是1级。
值:
| 值 | 作用 | 
|---|---|
| 0 | 只显示Python回源(tracebacks),错误(error)和关键(criticle)信息。 | 
| 1 | 同时显示信息(info)和警告信息(warning)(默认为1) | 
| 2 | 同时显示调试信息(debug) | 
| 3 | 同时显示注入的有效载荷(payloads) | 
| 4 | 同时显示http请求 | 
| 5 | 同时显示http响应头 | 
| 6 | 同时显示http响应内容 | 
使用:默认为1,一般用3即可。