Home | History | Annotate | Download | only in tests
      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 
      9