nmap常用命令

  • 格式:docx
  • 大小:40.63 KB
  • 文档页数:14

下载文档原格式

  / 37
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

用主机名和IP地址扫描系统

Nmap工具提供各种方法来扫描系统。在这个例子中,我使用主机名来扫描系统找出该系统上所有开放的端口,服务和MAC地址。

使用主机名扫描

1.[root@server1 ~]# nmap server

2.Starting Nmap 4.11 ( /nmap/ ) at 2013-11-11 15:

42 EST

3.Interesting ports on (192.168.0.101):

4.Not shown: 1674 closed ports

5.PORT STATE SERVICE

6.22/tcp open ssh

7.80/tcp open http

8.111/tcp open rpcbind

9.957/tcp open unknown

10.3306/tcp open mysql

11.8888/tcp open sun-answerbook

12.MAC Address: 08:00:27:D9:8E:D7 (Cadmus Computer Systems)

13.Nmap finished: 1 IP address (1 host up) scanned in 0.415 seconds

14.You have new mail in /var/spool/mail/root

使用IP地址扫描

1.[root@server1 ~]# nmap 19

2.168.0.101

2.Starting Nmap 4.11 ( /nmap/ ) at 2013-11-18 11:

04 EST

3.Interesting ports on (192.168.0.101):

4.Not shown: 1674 closed ports

5.PORT STATE SERVICE

6.22/tcp open ssh

7.80/tcp open http

8.111/tcp open rpcbind

9.958/tcp open unknown

10.3306/tcp open mysql

11.8888/tcp open sun-answerbook

12.MAC Address: 08:00:27:D9:8E:D7 (Cadmus Computer Systems)

13.Nmap finished: 1 IP address (1 host up) scanned in 0.465 seconds

14.You have new mail in /var/spool/mail/root

2.扫描使用“-v”选项

你可以看到下面的命令使用“-v “选项后给出了远程机器更详细的信息。

1.[root@server1 ~]# nmap -v server

2.Starting Nmap 4.11 ( /nmap/ ) at 2013-11-11 15:

43 EST

3.Initiating ARP Ping Scan against 192.168.0.101 [1 port] at 15:43

4.The ARP Ping Scan took 0.01s to scan 1 total hosts.

5.Initiating SYN Stealth Scan against (192.168.0.101

) [1680 ports] at 15:43

6.Discovered open port 22/tcp on 192.168.0.101

7.Discovered open port 80/tcp on 192.168.0.101

8.Discovered open port 8888/tcp on 192.168.0.101

9.Discovered open port 111/tcp on 192.168.0.101

10.Discovered open port 3306/tcp on 192.168.0.101

11.Discovered open port 957/tcp on 192.168.0.101

12.The SYN Stealth Scan took 0.30s to scan 1680 total ports.

13.Host (192.168.0.101) appears to be up ... good.

14.Interesting ports on (192.168.0.101):

15.Not shown: 1674 closed ports

16.PORT STATE SERVICE

17.22/tcp open ssh

18.80/tcp open http

19.111/tcp open rpcbind

20.957/tcp open unknown

21.3306/tcp open mysql

22.8888/tcp open sun-answerbook

23.MAC Address: 08:00:27:D9:8E:D7 (Cadmus Computer Systems)

24.Nmap finished: 1 IP address (1 host up) scanned in 0.485 seconds

25.Raw packets sent: 1681 (73.962KB) | Rcvd: 1681 (77.322KB)

3.扫描多台主机

你可以简单的在Nmap命令后加上多个IP地址或主机名来扫描多台主机。

1.[root@server1 ~]# nmap 19

2.168.0.101 192.168.0.102 192.168.0.103

2.Starting Nmap 4.11 ( /nmap/ ) at 2013-11-11 16:

06 EST

3.Interesting ports on (192.168.0.101):

4.Not shown: 1674 closed ports

5.PORT STATE SERVICE

6.22/tcp open ssh

7.80/tcp open http

8.111/tcp open rpcbind

9.957/tcp open unknown