使用shell脚本,nmap自动扫描,并使用tcpdump自动抓包
(1)首先编写shell脚本(script01 脚本的名字,后面会用到)
根据自己需求可进行修改
#!/bin/bash
port=$1
shift
for ip in $*
do
nmap -Pn -A -p $port "$ip" -oG $ip.txt
tcpdump -A -i eth0 tcp port $port -c 1 and host $ip -w $ip.cap -v
done
(2)调用masscan扫描的IP List
由于masscan扫描的结果需要进行预处理
将其只变为IP,将前面的这些东西删去,只留下IP
(3)通过shell脚本自动扫描抓包任务
bash script01 554 $(cat 1.txt)