通过使用Nmap、Masscan工具,对指定目标信息进行tance
一、Nmap探测
1.获得靶机IP地址,这里我用我的虚拟机IP
2.从kali终端上使用nmap进行信息探测,并保存为out.html 文件
命令: nmap -sn -PE -n 192.168.160.142/24 -oX out.html
-sn 不扫描端口
-PE ICMP扫描
-n 不进行dns解析
查看扫描结果
tail out.html
二、Msscan探测
在kali上运行msscan需要对应环境
1.安装环境命令:
apt-get install git gcc make libpcap-dev
2.下载工具
git clone https://github.com/robertdavidgraham/masscan
3.C段探测
masscan -p 80 192.168.0.103/24 --rate 1000 -oL output.txt
-p 设置端口
–rate 发包速率
-oL 输出位置在当前C段中,80端口开放的主机,共有3台。