Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1734292
  • 博文数量: 297
  • 博客积分: 285
  • 博客等级: 二等列兵
  • 技术积分: 3006
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-06 22:04
个人简介

Linuxer, ex IBMer. GNU https://hmchzb19.github.io/

文章分类

全部博文(297)

文章存档

2020年(11)

2019年(15)

2018年(43)

2017年(79)

2016年(79)

2015年(58)

2014年(1)

2013年(8)

2012年(3)

分类: 网络与安全

2015-06-18 10:44:17

在Nmap 还没有出现的日子里,用Hping 实现idel scan 那么麻烦,到了Nmap 这里一行命令就搞定了。nmap -PN -sI zombie target #Idle scan
我最常用的倒是最简单的, -sP ping only scan,找一个网段内哪些IP还能用,然后登记几个到我名下用。

点击(此处)折叠或打开

  1. Agreesive Scan -A
  2. Don’t Ping -PN                    #scanning hosts that are protected by a firewall that blocks ping probes
  3. Perform a Ping Only Scan -sP
  4. TCP SYN Ping -PS
  5. TCP ACK Ping -PA
  6. UDP Ping -PU
  7. SCTP INIT Ping -PY                #SCTP is typically used on systems for IP based telephony
  8. ICMP Echo Ping -PE
  9. ICMP Timestamp Ping -PP
  10. ICMP Address Mask Ping -PM
  11. IP Protocol Ping -PO            #with no protocols are specified,1 (ICMP), 2 (IGMP), and 4 (IP-in-IP) are used.
  12. ARP Ping -PR
  13. Traceroute --traceroute
  14. Force Reverse DNS Resolution -R
  15. Disable Reverse DNS Resolution -n
  16. Alternative DNS Lookup --system-dns
  17. Manually Specify DNS Server(s) --dns-servers
  18. Create a Host List -sL
  19. TCP SYN Scan -sS                #default scan
  20. TCP Connect Scan -sT
  21. UDP Scan -sU
  22. nmap –sU –data-length=value target
  23. TCP NULL Scan -sN                #Does not set any bits (TCP flag header is 0).
  24. TCP FIN Scan -sF                #Sets just the TCP FIN bit.
  25. Xmas Scan -sX                    #Sets the FIN, PSH, and URG flags, lighting the packet up like a Christmas tree.
  26. TCP ACK Scan -sA                #ACK scan probe packet has only the ACK flag set (unless you use –scanflags).
  27. nmap -sA --scanflags=3            #
  28. TCP Windows Scan -sW            #
  29. TCP Maimon Scan     -sM            #
  30. Custom TCP Scan --scanflags
  31. IP Protocol Scan -sO
  32. Send Raw Ethernet Packets --send-eth
  33. Send IP Packets --send-ip
  34. Operating System Detection -O
  35. Attempt to Guess an Unknown OS --osscan-guess
  36. Service Version Detection -sV
  37. Perform a RPC Scan --version-trace
  38. Troubleshooting Version Scans -sR

阅读(1319) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~