我发现使用该命令可以nmap -A得到最可靠的结果,根据参考指南,该选项-A包括服务检测、跟踪路由和操作系统检测。我想做一个仅包括选项中使用的服务/端口扫描的 nmap 扫描,-A但我不太确定选项中使用了哪种类型的服务/端口扫描-A。我在某处读到这是脚本扫描,但基本脚本扫描并没有给出相同的结果。有谁知道-A在 nmap 中使用 option 时的确切命令是什么?
选项 -A 中使用的 NMAP 命令
信息安全
网络
地图
2021-08-17 13:56:37
1个回答
根据nmap 手册页:
-A: Enables OS detection and Version detection, Script scanning and Traceroute.
-sV: Enables version detection, as discussed above. Alternatively, you can use -A, which enables version detection among other things.
它与 相同-O -sV -sC --traceroute。