diff options
Diffstat (limited to 'tests/fuzz-mdns.py')
-rwxr-xr-x | tests/fuzz-mdns.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/fuzz-mdns.py b/tests/fuzz-mdns.py new file mode 100755 index 0000000..aeea295 --- /dev/null +++ b/tests/fuzz-mdns.py @@ -0,0 +1,8 @@ +#!/usr/bin/python + +from scapy import * + + +sendp(Ether(type=0x800, dst="ff:ff:ff:ff:ff:ff")/IP(dst="224.0.0.251")/fuzz(UDP(dport = 5353, sport = 5353)/DNS(qd = fuzz(DNSQR()))),loop=1, iface="realtek0") + + |