您好,登錄后才能下訂單哦!
原理:使用ARP協(xié)議,在網(wǎng)段內(nèi)進(jìn)行廣播,查看是否有回包,如果有,證明該主機(jī)存活;
優(yōu)點(diǎn):掃描速度快、可靠;
缺點(diǎn):不可路由,只能發(fā)現(xiàn)同一網(wǎng)段內(nèi)的主機(jī);
kali 2.0
利用arping
命令結(jié)合腳本實(shí)現(xiàn)主機(jī)發(fā)現(xiàn)
#!/bin/bash
#Author:Tao
if [ $# -ne 1 ];then
echo "Usage ./arp.sh [interface]"
exit
fi
intface=$1
ipd=$(ifconfig eth0 | grep 'netmask' | cut -d ' ' -f 10 | cut -d '.' -f 1-3)
for num in $(seq 1 255);do
ip=$ipd.$num
arping -c 1 $ip | grep bytes | cut -d ' ' -f 5 | cut -d '(' -f 2 | cut -d ')' -f 1
done
腳本一效果圖:
#!/bin/bash
#Author:Tao
interface=$(ifconfig | head -1 | awk -F ":" '{print $1}')
ip=$(ifconfig $interface | grep "netmask" | awk '{print $2}'| cut -d '.' -f 1-3)
for i in `seq 1 254`;do
arping -c 1 $ip.$i | grep from | cut -d " " -f 5 | cut -d "(" -f 2 | cut -d ")" -f 1
done > alive.txt
注:以上腳本結(jié)果回輸入到alive.txt文件
腳本二效果圖:
#!/bin/bash
#Author:Tao
file=$1
for i in $(cat $1);do
arping -c 1 $i | grep from | cut -d " " -f 5 | cut -d "(" -f 2 | cut -d ")" -f 1
done > $1-alive.txt
注:以上腳本結(jié)果回輸入到你傳的文件名+alive.txt文件
總結(jié):腳本大同小異~,記錄一下
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。