]> git.meshlink.io Git - catta/blob - tests/fuzz-mdns.py
fix avahi_netlink_new to allow multiple netlinks per process
[catta] / tests / fuzz-mdns.py
1 #!/usr/bin/python
2
3 from scapy import *
4
5
6 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")
7
8