Files
tldr/pages.zh/common/vinmap.md

24 lines
775 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# vinmap
> 一个多线程的Nmap扫描器将IP范围分成块执行并行扫描并合并XML或JSON结果。
> 更多信息: <https://pypi.org/project/vinmap>。
- 执行子网的基本扫描:
`vinmap -ip {{192.168.1.0/24}}`
- 扫描一个域名,进行版本和操作系统检测,将结果保存到特定文件:
`vinmap -ip {{example.com}} -s "-sV -O" -o {{path/to/scan_results.xml}}`
- 使用10个块和20个并发线程扫描一个IP范围如果未指定将使用系统CPU核心的一半
`vinmap -ip {{10.0.0.1-10.0.0.255}} -n 10 -t 20`
- 以JSON格式输出扫描结果
`vinmap -ip {{192.168.1.1-192.168.1.100}} -f json`
- 使用默认设置扫描多个IP并保存合并的XML输出
`vinmap -ip {{192.168.1.1,192.168.1.2,...}}`