You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
251 B

nc -l -k -v -p 1234
while true
do ip="$((0 + RANDOM % 255)).$((0 + RANDOM % 255)).$((0 + RANDOM % 255)).$((0 + RANDOM % 255)) $((1 + RANDOM % 65535))"
echo "Hello, this is 78.58.49.144 listening on port 1234, is anybody out there!? "| nc $ip &
done