当前位置:网站首页>Nmap scan
Nmap scan
2022-07-04 21:03:00 【Hua Weiyun】
- Only the host can be detected alive , That is, access to the network . The service port cannot be seen .
The default is -sS scanning ,TCP SYN Stealth Scan. It can reduce network traffic , Fast .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 Host not detected , but nmap Can detect , Because except for ICMP, It's still used 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 secondsThe 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)
Activate different control bit scanning :
- ACK scanning -sA
- FIN scanning -sF
- Null scanning -sN All control bits are 0
- MAX scanning -sX So the control bits are 1
Nothing meaningful can be swept out , boring .
The only meaning is , Know where this host is stored .
Because the host that does not survive ,nmap It can still be detected :
[[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边栏推荐
猜你喜欢

看腾讯大老如何做接口自动化测试

托管式服务网络:云原生时代的应用体系架构进化

What if win11u disk refuses access? An effective solution to win11u disk access denial

科普达人丨一文看懂阿里云的秘密武器“神龙架构”

LeetCode+ 81 - 85 单调栈专题

colResizable.js自动调整表格宽度插件

Quelques suggestions pour la conception de l'interface

网络命名空间

MySQL --- 数据库查询 - 聚合函数的使用、聚合查询、分组查询

【1200. 最小絕對差】
随机推荐
Remember to build wheels repeatedly at one time (the setting instructions of obsidian plug-in are translated into Chinese)
mysql语句执行详解
HMS Core 机器学习服务
电脑怎么保存网页到桌面上使用
Win11系统wifi总掉线怎么办?Win11系统wifi总掉线的解决方法
电脑共享打印机拒绝访问要怎么办
Four traversal methods of binary tree, as well as the creation of binary tree from middle order to post order, pre order to middle order, pre order to post order, and sequence [specially created for t
分析伦敦银走势图的技巧
render函数与虚拟dom
接口设计时的一些建议
企业数字化转型最佳实践案例:基于云的数字化平台系统安全措施简介与参考
Quelques suggestions pour la conception de l'interface
网件r7000梅林系统虚拟内存创建失败,提示USB磁盘读写速度不满足要求解决办法,有需要创建虚拟内存吗??
【服务器数据恢复】某品牌服务器存储raid5数据恢复案例
Flet tutorial 04 basic introduction to filledtonalbutton (tutorial includes source code)
Flet tutorial 07 basic introduction to popupmenubutton (tutorial includes source code)
Jekins initialization password not found or not found
word中使用自动插入题注功能
仿ps样式js网页涂鸦板插件
Leetcode+ 81 - 85 monotone stack topic