diff options
author | Federico Lucifredi <flucifredi@acm.org> | 2006-12-19 19:11:45 +0000 |
---|---|---|
committer | Federico Lucifredi <flucifredi@acm.org> | 2006-12-19 19:11:45 +0000 |
commit | 6386804f93ee272fcff73459a9cfe0b847101609 (patch) | |
tree | 26fa54c9fdaeb608560ccaa249f153e04e6e5798 /trunk/tests/fuzz-mdns.py | |
parent | 16ed6d63c6c231cb5e606421ae3a245b2948185f (diff) |
Branching for wide-area publishing work
git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico@1344 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'trunk/tests/fuzz-mdns.py')
-rwxr-xr-x | trunk/tests/fuzz-mdns.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/trunk/tests/fuzz-mdns.py b/trunk/tests/fuzz-mdns.py new file mode 100755 index 0000000..aeea295 --- /dev/null +++ b/trunk/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") + + |