Madness moved to ptrstream repo

This commit is contained in:
Dionysus 2023-11-24 05:04:47 -05:00
parent 77ee6980ab
commit 2c1f7d7996
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 0 additions and 19 deletions

19
madness
View File

@ -1,19 +0,0 @@
#!/bin/sh
# maDNeSs with DNS - devloped by acidvegas (https://git.acid.vegas/mdaxfr)
genip() {
num_octets=$((RANDOM % 4 + 1))
ip=""
for i in $(seq 1 $num_octets); do
if [ $i -ne 1 ]; then
ip+="."
fi
ip+=$((RANDOM % 256))
done
echo $ip
}
while true; do
ip=$(genip)
dig +time=1 +noall +authority $ip.in-addr.arpa | grep 'IN\sSOA' | sed "s/^/\x1B[35m$ip.in-addr.arpa\x1B[90m -> \x1B[1;33m/" | sed "s/$/\x1B[0m/"
done