当前位置:网站首页>nmap扫描
nmap扫描
2022-07-04 19:49:00 【华为云】
- 只能探测到主机存活,即接入网络。服务端口看不到。
默认是-sS扫描,TCP SYN Stealth Scan. 能减少网络流量,速度快。SYN scan is the default and most popular scan option. often referred to as half-open scanning, because you don’t open a full TCP connection.
[[email protected] ~]# nmap 10.0.0.100Starting Nmap 7.70 ( https://nmap.org ) at 2022-07-04 16:49 CSTNmap scan report for 10.0.0.100Host is up (-0.20s latency).All 1000 scanned ports on 10.0.0.100 are filteredMAC Address: FA:16:3E:D3:D3:38 (Unknown)Nmap done: 1 IP address (1 host up) scanned in 21.30 seconds
- ping检测不到主机,但nmap可以检测到,因为除了ICMP,还用了TCP。
[[email protected] ~]# ping 10.0.0.100PING 10.0.0.100 (10.0.0.100) 56(84) bytes of data.^C--- 10.0.0.100 ping statistics ---3 packets transmitted, 0 received, 100% packet loss, time 32ms[[email protected] ~]# nmap -sP 10.0.0.100Starting Nmap 7.70 ( https://nmap.org ) at 2022-07-04 17:22 CSTNmap scan report for 10.0.0.100Host is up (0.00027s latency).MAC Address: FA:16:3E:D3:D3:38 (Unknown)Nmap done: 1 IP address (1 host up) scanned in 0.21 seconds
The default host discovery done with -sn consists of an ICMP echo request, TCP SYN to port 443, TCP ACK to port 80, and an ICMP timestamp request by default.
In previous releases of Nmap, -sn was known as -sP. (No port scan)
激活不同的控制位扫描:
- ACK扫描 -sA
- FIN扫描 -sF
- Null扫描 -sN 所有控制位都为0
- MAX扫描 -sX 所以控制位都为1
都扫不出什么有意义的内容出来,没意思。
唯一的意思,知道有这台主机在那里存活着的。
因为不存活的主机,nmap还是检测的出来:
[[email protected] ~]# nmap 10.0.0.201Starting Nmap 7.70 ( https://nmap.org ) at 2022-07-04 18:10 CSTNote: Host seems down. If it is really up, but blocking our ping probes, try -PnNmap done: 1 IP address (0 hosts up) scanned in 0.44 seconds[[email protected] ~]# nmap -Pn 10.0.0.201Starting Nmap 7.70 ( https://nmap.org ) at 2022-07-04 18:10 CSTNmap done: 1 IP address (0 hosts up) scanned in 0.45 seconds
边栏推荐
- 九齐NY8B062D MCU规格书/datasheet
- BFC面试简述
- CDGA|数据治理不得不坚持的六个原则
- 电脑页面不能全屏怎么办?Win11页面不能全屏的解决方法
- 二叉树的四种遍历方式以及中序后序、前序中序、前序后序、层序创建二叉树【专为力扣刷题而打造】
- Qt五子棋人机对战画棋子之QPainter的使用误区总结
- acwing 3302. 表达式求值
- 【申博攻略】六.如何联系心仪的博导
- [observation] Lenovo: 3x (1+n) smart office solution, releasing the "multiplier effect" of office productivity
- 奏响青春的乐章
猜你喜欢
Reinforcement learning - learning notes 2 | value learning
Win11U盘拒绝访问怎么办?Win11U盘拒绝访问的有效解决方法
NLP, vision, chip What is the development direction of AI? Release of the outlook report of Qingyuan Association [download attached]
Quelques suggestions pour la conception de l'interface
Win11亮度被锁定怎么办?Win11亮度被锁定的解决方法
LeetCode+ 81 - 85 单调栈专题
Practical examples of node strong cache and negotiation cache
电脑怎么保存网页到桌面上使用
接口設計時的一些建議
Jiuqi ny8b062d MCU specification /datasheet
随机推荐
LeetCode 8. 字符串转换整数 (atoi)
Jmeter 之压测入门
Cdga | six principles that data governance has to adhere to
See how Tencent does interface automation testing
MySQL statement execution details
Record the online bug solving list (unfinished to be continued 7/4)
Flet教程之 04 FilledTonalButton基础入门(教程含源码)
[1200. Différence absolue minimale]
vim异步问题
How to solve the problem that win11 cannot write the value to the registry key?
Play the music of youth
网络命名空间
Qt五子棋人机对战画棋子之QPainter的使用误区总结
托管式服务网络:云原生时代的应用体系架构进化
Go notes (3) usage of go language FMT package
LeetCode 871. 最低加油次数
Advantages of semantic tags and block level inline elements
二叉树的四种遍历方式以及中序后序、前序中序、前序后序、层序创建二叉树【专为力扣刷题而打造】
分析伦敦银走势图的技巧
《动手学深度学习》(三) -- 卷积神经网络 CNN