aboutsummaryrefslogtreecommitdiff
path: root/scripts/netfuzz.sh
blob: 3e52295300489093a8401df6e3066c02cc7bfefb (plain)
1
2
3
4
5
6
#!/bin/bash

while true
do
	dd if=/dev/urandom bs=$(echo $RANDOM/100 | bc) count=1 2>/dev/null | nc -cu localhost 5333 > /dev/null
done