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"