mirror of
https://github.com/20kaushik02/CSE545_SS_Work.git
synced 2025-12-06 06:24:07 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
from scapy.all import *
|
|
|
|
l2=Ether(src='a6:cb:ec:88:05:5e', dst='cc:cc:cc:cc:cc:cc', type=0xFFFF)
|
|
pkt=l2
|
|
|
|
ans, unans=srp(pkt, iface='eth0')
|