其他分享
首页 > 其他分享> > 一.nmap扫描

一.nmap扫描

作者:互联网

一.基础功能

1.扫描IP地址:

nmap -sn 192.168.19.0/24 

 

2.扫描端口号:

基于SYN包扫描:nmap -sS 192.168.112.188

基于三次握手扫描:nmap -sT 192.168.112.188

 

指定端口扫描:

指定端口:namp -p10-200,-p21,22,25,80,445,3306,1521,8080,8888,192.168.19.2

 

扫描端口和版本:namp -sV 192.168.19.2

 

扫描操作系统:namp -o 192.168.19.2

 

万能开关:namp -A 192.168.19.2

 

标签:19.2,nmap,扫描,192.168,namp,112.188
来源: https://www.cnblogs.com/eveplw/p/16626040.html