from scapy.all import * target_ip="192.168.1.1" frame = Ether(dst="ff:ff:ff:ff:ff:ff") / ARP(op=1, pdst=target_ip) sendp(frame) ...
確定! 回上一頁