当前位置:网站首页>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
边栏推荐
- 接口設計時的一些建議
- Play the music of youth
- VIM asynchronous problem
- Hash quiz game system development how to develop hash quiz game system development (multiple cases)
- Win11U盘拒绝访问怎么办?Win11U盘拒绝访问的有效解决方法
- mysql语句执行详解
- Reinforcement learning - learning notes 2 | value learning
- JS closure
- 看腾讯大老如何做接口自动化测试
- acwing 3302. 表达式求值
猜你喜欢
接口設計時的一些建議
Automatic generation of interface automatic test cases by actual operation
Flet教程之 08 AppBar工具栏基础入门(教程含源码)
What if the brightness of win11 is locked? Solution to win11 brightness locking
二叉树的四种遍历方式以及中序后序、前序中序、前序后序、层序创建二叉树【专为力扣刷题而打造】
Reinforcement learning - learning notes 2 | value learning
Sword finger offer II 80-100 (continuous update)
Practical examples of node strong cache and negotiation cache
The concept and application of hash table
Understand the reading, writing and creation of files in go language
随机推荐
Understand the reading, writing and creation of files in go language
What should I do if my computer sharing printer refuses access
6月“墨力原创作者计划”获奖名单公布!邀您共话国产数据库
Flet教程之 05 OutlinedButton基础入门(教程含源码)
LeetCode 7. 整数反转
【解决方案】PaddlePaddle 2.x调用静态图模式
Flet tutorial 07 basic introduction to popupmenubutton (tutorial includes source code)
Some suggestions for interface design
Jekins initialization password not found or not found
企业数字化转型最佳实践案例:基于云的数字化平台系统安全措施简介与参考
WinCC7.5 SP1如何通过交叉索引来寻找变量及其位置?
uniapp 富文本编辑器使用
哈希表、哈希函数、布隆过滤器、一致性哈希
Win11怎么搜索无线显示器?Win11查找无线显示器设备的方法
电脑共享打印机拒绝访问要怎么办
测试员的算法面试题-找众数
网络命名空间
Form组件常用校验规则-1(持续更新中~)
面对同样复杂的测试任务为什么大老很快能梳理解决方案,阿里十年测试工程师道出其中的技巧
记一次重复造轮子(Obsidian 插件设置说明汉化)