Nmap 不会使用 -oN 或 -oG 进行扫描
Nmap wont scan with -oN or -oG
我正在尝试使用 nmap 对某些实例进行端口扫描,我想让它给我一些更好看的输出。我想使用 -oG
或 -oN
选项,但是这两个选项似乎都不起作用,使用后得到以下输出:
user@hostname:~$ nmap -oG 1.2.3.4
Starting Nmap 7.30 ( https://nmap.org ) at 2016-10-14 10:36 PDT
WARNING: No targets were specified, so 0 hosts scanned.
Nmap done: 0 IP addresses (0 hosts up) scanned in 0.03 seconds
user@hostname:~$ nmap -oN 1.2.3.4
Starting Nmap 7.30 ( https://nmap.org ) at 2016-10-14 10:36 PDT
WARNING: No targets were specified, so 0 hosts scanned.
Nmap done: 0 IP addresses (0 hosts up) scanned in 0.04 seconds
如何让它使用此选项扫描我的实例?
输出文件选项(-oN
、-oG
、-oX
和 -oA
)都采用文件名参数。你的命令是说,"Generate grepable output and save it to the file called 1.2.3.4
." 然后 Nmap 查看该行的其余部分并没有看到目标规范(因为它假设 1.2.3.4
是一个文件名而不是 IP 地址。这个命令可以代替:nmap -oG myscan.gnmap 1.2.3.4
我正在尝试使用 nmap 对某些实例进行端口扫描,我想让它给我一些更好看的输出。我想使用 -oG
或 -oN
选项,但是这两个选项似乎都不起作用,使用后得到以下输出:
user@hostname:~$ nmap -oG 1.2.3.4
Starting Nmap 7.30 ( https://nmap.org ) at 2016-10-14 10:36 PDT
WARNING: No targets were specified, so 0 hosts scanned.
Nmap done: 0 IP addresses (0 hosts up) scanned in 0.03 seconds
user@hostname:~$ nmap -oN 1.2.3.4
Starting Nmap 7.30 ( https://nmap.org ) at 2016-10-14 10:36 PDT
WARNING: No targets were specified, so 0 hosts scanned.
Nmap done: 0 IP addresses (0 hosts up) scanned in 0.04 seconds
如何让它使用此选项扫描我的实例?
输出文件选项(-oN
、-oG
、-oX
和 -oA
)都采用文件名参数。你的命令是说,"Generate grepable output and save it to the file called 1.2.3.4
." 然后 Nmap 查看该行的其余部分并没有看到目标规范(因为它假设 1.2.3.4
是一个文件名而不是 IP 地址。这个命令可以代替:nmap -oG myscan.gnmap 1.2.3.4