在 Nmap 中,-A 包括哪些标志?
In Nmap, which flags does -A include?
-A:启用OS检测、版本检测、脚本扫描和traceroute
我以为它涵盖了 -O、-sV、-sC、--traceroute,但我不是 100% 确定。
感谢您的帮助!
根据https://nmap.org/man/de/man-briefoptions.html这些是标志的描述
-A: Enables OS detection and Version detection, Script scanning and Traceroute
对比
-O: Enable OS detection
-sV: Probe open ports to determine service/version info
-sC: equivalent to --script=default
--traceroute: Trace hop path to each host
所以他们是一样的。也有人回答here.
-A:启用OS检测、版本检测、脚本扫描和traceroute
我以为它涵盖了 -O、-sV、-sC、--traceroute,但我不是 100% 确定。
感谢您的帮助!
根据https://nmap.org/man/de/man-briefoptions.html这些是标志的描述
-A: Enables OS detection and Version detection, Script scanning and Traceroute
对比
-O: Enable OS detection
-sV: Probe open ports to determine service/version info
-sC: equivalent to --script=default
--traceroute: Trace hop path to each host
所以他们是一样的。也有人回答here.