aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2019-12-02 14:07:34 +0100
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2019-12-02 14:07:34 +0100
commit1629c3621e02a8e176172f44a72d155030172d35 (patch)
treef125880354a771c047cfde27d3e9023668acb87e /test
parent6a147a95c105fe4884f01accbd3fcd6e571b1b10 (diff)
downloaddns-1629c3621e02a8e176172f44a72d155030172d35.tar.gz
Prepare for license
Diffstat (limited to 'test')
-rwxr-xr-xtest/netfuzz.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/netfuzz.sh b/test/netfuzz.sh
new file mode 100755
index 0000000..42a8543
--- /dev/null
+++ b/test/netfuzz.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+while true
+do
+ dd if=/dev/urandom bs=$(echo $RANDOM/100 | bc) count=1 2>/dev/null | nc -cu localhost 53 > /dev/null
+done