Nmap Security Scanner
*Intro
*Ref Guide
*Install Guide
*Download
*Changelog
*Book
*Docs
Security Lists
*Nmap Hackers
*Nmap Dev
*Bugtraq
*Full Disclosure
*Pen Test
*Basics
*More
Security Tools
*Pass crackers
*Sniffers
*Vuln Scanners
*Web scanners
*Wireless
*Exploitation
*Packet crafters
*More
Site News
Site Search:
Exploit World
Advertising
About/Contact
Credits
Sponsors:




bugtraq logo Bugtraq mailing list archives

Re: vixie cron possible local root compromise
From: Wolfgang Wieser <wwieser () GMX DE>
Date: Wed, 14 Feb 2001 20:19:28 +0100

Note that the proposed patch...

<       strcpy(User, pw->pw_name);
---
      strncpy(User, pw->pw_name, MAX_UNAME - 1);

does not completely patch the hole. Okay, shellcode
will get cut off, but strncpy() does not '\0'-terninate the
strings but I saw that the rest of the code (notably the
next line strcpy(RealUser, User); ) assumes a
standard '\0'-terninated string.
So, the patch would be

<       strcpy(User, pw->pw_name);
---
      strncpy(User, pw->pw_name, MAX_UNAME - 1);
      User[MAX_UNAME-1]='\0';

wwieser


  By Date           By Thread  

Current thread:
[ Nmap | Sec Tools | Mailing Lists | Site News | About/Contact | Advertising | Privacy ]