nmap -v scanme.nmap.org 扫描与 nmap -vv scanme.nmap.org 扫描的区别是什么
时间: 2024-02-23 13:53:04 浏览: 166
Nmap 扫描工具
根据提供的引用[1],nmap是一款网络探测和安全审计工具。使用-v选项可以增加扫描的详细程度,使用-vv选项可以进一步增加详细程度。因此,nmap -v scanme.nmap.org扫描的详细程度比nmap -vv scanme.nmap.org扫描的详细程度要少。
下面是两个命令的示例:
1. nmap -v scanme.nmap.org扫描的输出示例:
```shell
Starting Nmap 7.80 ( https://nmap.org ) at 2021-08-17 09:30 PDT
Initiating Ping Scan at 09:30
Scanning scanme.nmap.org (45.33.32.156) [2 ports]
Completed Ping Scan at 09:30, 0.00s elapsed (1 total hosts)
Initiating Parallel DNS resolution of 1 host. at 09:30
Completed Parallel DNS resolution of 1 host. at 09:30, 0.02s elapsed
Initiating Connect Scan at 09:30
Scanning scanme.nmap.org (45.33.32.156) [1000 ports]
Discovered open port 80/tcp on 45.33.32.156
Discovered open port 22/tcp on 45.33.32.156
Completed Connect Scan at 09:30, 0.11s elapsed (1000 total ports)
Nmap scan report for scanme.nmap.org (45.33.32.156)
Host is up (0.11s latency).
Other addresses for scanme.nmap.org (not scanned): 2600:3c03::f03c:91ff:fe18:bb2f
Not shown: 998 filtered ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
Read data files from: /usr/bin/../share/nmap
Nmap done: 1 IP address (1 host up) scanned in 0.18 seconds
```
2. nmap -vv scanme.nmap.org扫描的输出示例:
```shell
Starting Nmap 7.80 ( https://nmap.org ) at 2021-08-17 09:31 PDT
Initiating Ping Scan at 09:31
Scanning scanme.nmap.org (45.33.32.156) [2 ports]
Packet capture filter (device eth0): icmp and ((ip[20:2] - ip[16:2]) - ((ip[0]&0xf)<<2)) != 0
Completed Ping Scan at 09:31, 0.00s elapsed (1 total hosts)
Initiating Parallel DNS resolution of 1 host. at 09:31
Completed Parallel DNS resolution of 1 host. at 09:31, 0.02s elapsed
Initiating Connect Scan at 09:31
Scanning scanme.nmap.org (45.33.32.156) [1000 ports]
Discovered open port 80/tcp on 45.33.32.156
Discovered open port 22/tcp on 45.33.32.156
Completed Connect Scan at 09:31, 0.11s elapsed (1000 total ports)
Nmap scan report for scanme.nmap.org (45.33.32.156)
Host is up, received syn-ack (0.11s latency).
Other addresses for scanme.nmap.org (not scanned): 2600:3c03::f03c:91ff:fe18:bb2f
Not shown: 998 filtered ports
Reason: 998 no-responses and 2 host-prohibited
PORT STATE SERVICE REASON
22/tcp open ssh syn-ack ttl 56
80/tcp open http syn-ack ttl 56
Read data files from: /usr/bin/../share/nmap
Nmap done: 1 IP address (1 host up) scanned in 0.18 seconds
```
阅读全文