nuclei常用命令
时间: 2024-04-03 12:29:38 浏览: 533
nuclei对上传文件内容相关控制
nuclei是一个开源的安全扫描工具,用于发现和验证各种类型的漏洞。以下是一些nuclei的常用命令和功能介绍:
1. `nuclei -l targets.txt -t templates/`:使用指定的目标文件和模板文件夹运行nuclei扫描。`-l`参数指定目标文件,`-t`参数指定模板文件夹。
2. `nuclei -u https://example.com -t templates/`:使用指定的URL和模板文件夹运行nuclei扫描。`-u`参数指定URL,`-t`参数指定模板文件夹。
3. `nuclei -update-templates`:更新nuclei的模板库,获取最新的漏洞检测模板。
4. `nuclei -list-templates`:列出所有可用的漏洞检测模板。
5. `nuclei -t templates/ -tags cve`:只运行带有"cve"标签的漏洞检测模板。
6. `nuclei -t templates/ -severity high`:只运行高危漏洞检测模板。
7. `nuclei -t templates/ -c 50`:同时运行最多50个并发扫描任务。
8. `nuclei -t templates/ -o output.txt`:将扫描结果保存到指定的输出文件中。
9. `nuclei -t templates/ -silent`:以静默模式运行,只输出关键信息。
10. `nuclei -t templates/ -debug`:以调试模式运行,输出详细的调试信息。
阅读全文