Kali-Python scapy模块-扫描

Kali Python3环境安装scapy模块

pip3 install scapy

本地网卡网段arp_scan脚本

import logging
import subprocess
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
from scapy.all import *
if len(sys.argv) != 2:
    print("Usage - ./arp_ping.py [interface]")
    print("Example - ./arp_ping.py eth0")
    print("Example will perform an ARP scan of the local subnet to which eth0 is assigned")
    sys.exit()
interface = str(sys.argv[1])
ip = str(subprocess.check_output("ifconfig "+ interface + " | grep 'broadcast' | cut -d ':' -f 2 | cut -
d ' ' -f 10 | cut -d '.' -f 1-3", shell=True).strip(), encoding='utf-8')
prefix = str(ip + '.')
for addr in range(0,254):
    answer = sr1(ARP(pdst = prefix+str(addr)),timeout=1, verbose=0)
    if answer == None:
        pass
    else:
        print(prefix+str(addr))




猜你喜欢

转载自blog.51cto.com/7368072/2381704
今日推荐