nmap是一个网络探测和安全扫描程序,系统管理者和个人可以使用这个软件扫描大型的网络,获取被扫描主机正在运行以及提供什么服务等信息。 nmap支持很多扫描技术,例如:udp、tcp connect()、tcp syn(半开扫描)、ftp代理(bounce攻击)、反向标志、icmp、fin、ack扫描、圣诞树(xmas tree)、syn扫描和null扫描。从扫描类型一节可以得到细节。nmap还提供了一些高级的特征,例如:通过tcp/ip协议栈特征探测操作系统类型,秘密扫描,动态延时和重传计算,并行扫描,通过并行ping扫描探测关闭的主机,诱饵扫描,避开端口过滤检测,直接rpc扫描(无须端口影射),碎片扫描,以及灵活的目标和端口设定。本文详细介绍了nmap的详细使用选项,并给出了几个实用实例,nmap是入侵和网络安全检测的必备工具。 
nmap 
bt5(backtrack--information gathering--network analysis--network scanners-nmap) 
-sp 渗透内网之后判断当前网络那些主机在线 
nmap -sp 192.168.1/255 
-vv 现实详细的扫描过程 
-ss 使用syn半开式扫描,这种扫描方式使得扫描结果更加正确(又称半开放,或 
隐身扫描) 
nmap -vv -ss ip 
-o 大写o代表os 判断主机操作系统 
nmap -o ip 
延时策略 
-t(0-5) 默认为3 
0 即paranoid模式。为了避开ids的检测使扫描速度极慢,nmap串所有的扫描, 
每隔至少5分钟发送一个包 
1 即sneaky模式。也差不多,只是数据包的发送间隔是15秒 
2 即polite模式。不增加太大的网络负载,串行每个探测,并使每个探测间隔 
0.4秒 
3 即normal模式。nmap的默认选项,在不使网络过载或者主机/端口丢失的情况 
下尽可能快速地扫描 
4 即aggressive模式。设置5分钟的超时限制,对每台主机的扫描时间不超过5分 
钟,并且对每次探测回应的等待时间不超过1.5秒。 
5 即lnsane模式。只适合快速的网络或者不在意丢失默些信息,每台主机的超时 
限制为75秒,对每次探测只等待0.3秒。 
nmap -ss -t1 ip 
-sv 探测端口的服务类型/具体版本等信息 
nmap -vv -sv ip 
-p 端口号 对某个端口的服务版本进行详细探测 有助于升入的针对性攻击, 
比如缓冲溢出攻击 
nmap -vv -sv ip -p 21 
适用于内外网的探测,以内网操作为示例(外网参数同)    
简单端口扫描: nmap -vv -st(ss、sf、su、sa) 192.168.0.1 -d 127.0.0.1 
(-d伪造的地址)    
os检测: nmap -vv -ss -o 192.168.0.1    
rpc鉴别: nmap -ss -sr 192.168.0.1 linux上的portmap就是一个简单的rpc服 
务,监听端口为111(默认) 
ping扫射:nmap -sp 172.16.15.0/24 
十条常用nmap命令行格式 
1)获取远程主机的系统类型及开放端口 
get info about remote host ports and os detection 
nmap -ss -p0 -sv -o <target> 
这里的 < target > 可以是单一 ip, 或主机名,或域名,或子网 
-ss tcp syn 扫描 (又称半开放,或隐身扫描) 
-p0 允许你关闭 icmp pings. 
-sv 打开系统版本检测 
-o 尝试识别远程操作系统 
-ss tcp syn scanning (also known as half-open, or stealth scanning) 
-p0 option allows you to switch off icmp pings. 
-sv option enables version detection 
-o flag attempt to identify the remote operating system 
other option: 
-a 同时启用操作系统指纹识别和版本检测 
-a option enables both os fingerprinting and version detection 
-v use -v twice for more verbosity. 
nmap -ss -p0 -a -v < target > 
2)列出开放了指定端口的主机列表 
get list of servers with a specific port open 
nmap -st -p 80 -og – 192.168.1.* | grep open 
change the -p argument for the port number. see “man nmap” for 
different ways to specify address ranges. 
3)在网络寻找所有在线主机 
find all active ip addresses in a network 
nmap -sp 192.168.0.* 
或者也可用以下命令: 
nmap -sp 192.168.0.0/24 
指定 subnet 
4)ping 指定范围内的 ip 地址 
ping a range of ip addresses 
nmap -sp 192.168.1.100-254 
nmap accepts a wide variety of addressing notation, multiple 
targets/ranges, etc. 
5)在某段子网上查找未占用的 ip 
find unused ips on a given subnet 
nmap -t4 -sp 192.168.2.0/24 && egrep "00:00:00:00:00:00" /proc/net/arp 
6)在局域网上扫找 conficker 蠕虫病毒 
scan for the conficker virus on your lan ect. 
nmap -pn -t4 -p139,445 -n -v –script=smb-check-vulns –script-args 
safe=1 192.168.0.1-254 
replace 192.168.0.1-256 with the ip’s you want to check. 
7)扫描网络上的恶意接入点 rogue aps. 
scan network for rogue aps. 
nmap -a -p1-85,113,443,8080-8100 -t4 –min-hostgroup 50 –max-rtt- 
timeout 2000 –initial-rtt-timeout 300 –max-retries 3 –host-timeout 
20m –max-scan-delay 1000 -oa wapscan 10.0.0.0/8 
i’ve used this scan to successfully find many rogue aps on a very, 
very large network. 
8)使用诱饵扫描方法来扫描主机端口 
use a decoy while scanning ports to avoid getting caught by the sys 
admin 
sudo nmap -ss 192.168.0.10 -d 192.168.0.2 
scan for open ports on the target device/computer (192.168.0.10) while 
setting up a decoy address (192.168.0.2). this will show the decoy ip 
address instead of your ip in targets security logs. decoy address 
needs to be alive. check the targets security log at /var/log/secure 
to make sure it worked. 
9)为一个子网列出反向 dns 记录 
list of reverse dns records for a subnet 
nmap -r -sl 209.85.229.99/27 | awk '{if($3=="not")print"("$2") no 
ptr";else print$3" is "$2}' | grep '(' 
10)显示网络上共有多少台 linux 及 win 设备? 
how many linux and windows devices are on your network? 
sudo nmap -f -o 192.168.1.1-255 | grep "running: " > /tmp/os; echo 
"$(cat /tmp/os | grep linux | wc -l) linux device(s)"; echo "$(cat 
/tmp/os | grep windows | wc -l) window(s) devices"
						
						
					
        
     
    
            
            
    
发表评论