Nmap与hping3

一.Ping端口:

1.指定端口ping
hping3 1.1.1.1 -S -p 80
-S:SYN标识
-p: 端口号

二.扫描开放端口

1.禁pingIP 查探开发端口
nmap -PS 1.1.1.1
nmap -Pn 1.1.1.1

2.局域网开放端口扫描
nmap 192.168.0.0/24 (/24代表从0-255)
3.伪造IP扫描
nmap -D RND:10 1.1.1.1

猜你喜欢

转载自blog.csdn.net/weixin_43293899/article/details/82940887