Vulnerabilities > CVE-2010-3225 - Resource Management Errors vulnerability in Microsoft Windows 7 and Windows Vista

047910
CVSS 0.0 - NONE
Attack vector
UNKNOWN
Attack complexity
UNKNOWN
Privileges required
UNKNOWN
Confidentiality impact
UNKNOWN
Integrity impact
UNKNOWN
Availability impact
UNKNOWN

Summary

Use-after-free vulnerability in the Media Player Network Sharing Service in Microsoft Windows Vista SP1 and SP2 and Windows 7 allows remote attackers to execute arbitrary code via a crafted Real Time Streaming Protocol (RTSP) packet, aka "RTSP Use After Free Vulnerability."

Vulnerable Configurations

Part Description Count
OS
Microsoft
4

Common Weakness Enumeration (CWE)

Msbulletin

bulletin_idMS10-075
bulletin_url
date2010-10-12T00:00:00
impactRemote Code Execution
knowledgebase_id2281679
knowledgebase_url
severityCritical
titleVulnerability in Media Player Network Sharing Service Could Allow Remote Code Execution

Nessus

NASL familyWindows : Microsoft Bulletins
NASL idSMB_NT_MS10-075.NASL
descriptionA use-after-free vulnerability exists in the Microsoft Windows Media Player Network Sharing Service installed on the remote host. By sending a specially crafted Real Time Streaming Protocol (RTSP) packet to the affected service, a remote attacker may be able to leverage this vulnerability to execute arbitrary code in the security context of the Network Service account.
last seen2020-06-01
modified2020-06-02
plugin id49952
published2010-10-13
reporterThis script is Copyright (C) 2010-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/49952
titleMS10-075: Vulnerability in Media Player Network Sharing Service Could Allow Remote Code Execution (2281679)
code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
  script_id(49952);
  script_version("1.20");
  script_cvs_date("Date: 2018/11/15 20:50:30");

  script_cve_id("CVE-2010-3225");
  script_bugtraq_id(43776);
  script_xref(name:"IAVA", value:"2010-A-0141");
  script_xref(name:"MSFT", value:"MS10-075");
  script_xref(name:"MSKB", value:"2281679");

  script_name(english:"MS10-075: Vulnerability in Media Player Network Sharing Service Could Allow Remote Code Execution (2281679)");
  script_summary(english:"Checks the version of Wmpmde.dll");

  script_set_attribute(attribute:"synopsis", value:
"It is possible to execute arbitrary code on the remote Windows host
using the Microsoft Windows Media Player Network Sharing Service.");
  script_set_attribute(attribute:"description", value:
"A use-after-free vulnerability exists in the Microsoft Windows Media
Player Network Sharing Service installed on the remote host.

By sending a specially crafted Real Time Streaming Protocol (RTSP)
packet to the affected service, a remote attacker may be able to
leverage this vulnerability to execute arbitrary code in the security
context of the Network Service account.");
  script_set_attribute(attribute:"see_also", value:"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2010/ms10-075");
  script_set_attribute(attribute:"solution", value:
"Microsoft has released a set of patches for Windows Vista and Windows
7.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:H/Au:N/C:C/I:C/A:C");
  script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"false");

  script_set_attribute(attribute:"vuln_publication_date", value:"2010/10/12");
  script_set_attribute(attribute:"patch_publication_date", value:"2010/10/12");
  script_set_attribute(attribute:"plugin_publication_date", value:"2010/10/13");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/o:microsoft:windows");
  script_set_attribute(attribute:"stig_severity", value:"II");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows : Microsoft Bulletins");

  script_copyright(english:"This script is Copyright (C) 2010-2018 Tenable Network Security, Inc.");

  script_dependencies("smb_hotfixes.nasl", "ms_bulletin_checks_possible.nasl");
  script_require_keys("SMB/MS_Bulletin_Checks/Possible");
  script_require_ports(139, 445, 'Host/patch_management_checks');

  exit(0);
}

include("audit.inc");
include("smb_hotfixes_fcheck.inc");
include("smb_hotfixes.inc");
include("smb_func.inc");
include("misc_func.inc");

get_kb_item_or_exit("SMB/MS_Bulletin_Checks/Possible");

bulletin = 'MS10-075';
kbs = make_list("2281679");
if (get_kb_item("Host/patch_management_checks")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);

get_kb_item_or_exit("SMB/Registry/Enumerated");
get_kb_item_or_exit("SMB/WindowsVersion", exit_code:1);

if (hotfix_check_sp_range(vista:'1,2', win7:'0') <= 0) audit(AUDIT_OS_SP_NOT_VULN);

# Determine the Windows product name.
productname = NULL;

port    =  kb_smb_transport();
login   =  kb_smb_login();
pass    =  kb_smb_password();
domain  =  kb_smb_domain();

if(! smb_session_init()) audit(AUDIT_FN_FAIL, "smb_session_init");


rc = NetUseAdd(login:login, password:pass, domain:domain, share:"IPC$");
if (rc != 1)
{
  NetUseDel();
  audit(AUDIT_SHARE_FAIL, "IPC$");
}

hklm = RegConnectRegistry(hkey:HKEY_LOCAL_MACHINE);
if (isnull(hklm))
{
  NetUseDel();
  audit(AUDIT_REG_FAIL);
}

key = "SOFTWARE\Microsoft\Windows NT\CurrentVersion";
key_h = RegOpenKey(handle:hklm, key:key, mode:MAXIMUM_ALLOWED);
if (!isnull(key_h))
{
  item = RegQueryValue(handle:key_h, item:"ProductName");
  if (!isnull(item)) productname = item[1];

  RegCloseKey(handle:key_h);
}
RegCloseKey(handle:hklm);
NetUseDel();

if (isnull(productname))
  exit(0, "Failed to determine the Windows product name.");
if ("Windows Vista" >!< productname && "Windows 7" >!< productname)
  exit(0, "The host is running "+productname+" and hence is not affected.");

rootfile = hotfix_get_systemroot();
if (!rootfile) exit(1, "Failed to get the system root.");

share = hotfix_path2share(path:rootfile);
if (!is_accessible_share(share:share)) audit(AUDIT_SHARE_FAIL, share);

kb = "2281679";
if (
  # Windows 7
  hotfix_is_vulnerable(os:"6.1",       file:"Wmpmde.dll", version:"12.0.7600.20787", min_version:"12.0.7600.20000", dir:"\System32", bulletin:bulletin, kb:kb) ||
  hotfix_is_vulnerable(os:"6.1",       file:"Wmpmde.dll", version:"12.0.7600.16661",                                dir:"\System32", bulletin:bulletin, kb:kb) ||

  # Vista
  hotfix_is_vulnerable(os:"6.0", sp:2, file:"Wmpmde.dll", version:"11.0.6002.22471", min_version:"11.0.6002.22000", dir:"\System32", bulletin:bulletin, kb:kb) ||
  hotfix_is_vulnerable(os:"6.0", sp:2, file:"Wmpmde.dll", version:"11.0.6002.18297",                                dir:"\System32", bulletin:bulletin, kb:kb) ||
  hotfix_is_vulnerable(os:"6.0", sp:1, file:"Wmpmde.dll", version:"11.0.6001.7117",  min_version:"11.0.6001.7100",  dir:"\System32", bulletin:bulletin, kb:kb) ||
  hotfix_is_vulnerable(os:"6.0", sp:1, file:"Wmpmde.dll", version:"11.0.6001.7009",                                 dir:"\System32", bulletin:bulletin, kb:kb)
)
{
  set_kb_item(name:"SMB/Missing/MS10-075", value:TRUE);
  hotfix_security_hole();

  hotfix_check_fversion_end();
  exit(0);
}
else
{
  hotfix_check_fversion_end();
  audit(AUDIT_HOST_NOT, 'affected');
}

Oval

accepted2010-11-29T04:00:13.552-05:00
classvulnerability
contributors
nameJosh Turpin
organizationSymantec Corporation
definition_extensions
  • commentMicrosoft Windows Vista (32-bit) Service Pack 1 is installed
    ovaloval:org.mitre.oval:def:4873
  • commentMicrosoft Windows Vista x64 Edition Service Pack 1 is installed
    ovaloval:org.mitre.oval:def:5254
  • commentMicrosoft Windows Vista (32-bit) Service Pack 2 is installed
    ovaloval:org.mitre.oval:def:6124
  • commentMicrosoft Windows Vista x64 Edition Service Pack 2 is installed
    ovaloval:org.mitre.oval:def:5594
  • commentMicrosoft Windows 7 (32-bit) is installed
    ovaloval:org.mitre.oval:def:6165
  • commentMicrosoft Windows 7 x64 Edition is installed
    ovaloval:org.mitre.oval:def:5950
descriptionUse-after-free vulnerability in the Media Player Network Sharing Service in Microsoft Windows Vista SP1 and SP2 and Windows 7 allows remote attackers to execute arbitrary code via a crafted Real Time Streaming Protocol (RTSP) packet, aka "RTSP Use After Free Vulnerability."
familywindows
idoval:org.mitre.oval:def:6684
statusaccepted
submitted2010-08-10T13:00:00
titleRTSP Use After Free Vulnerability
version71

Seebug

bulletinFamilyexploit
descriptionBUGTRAQ ID: 43776 CVE ID: CVE-2010-3225 Windows Media Player是微软操作系统中默认捆绑的媒体播放器。 Windows Media Player对同一网络中其他设备的流媒体支持方式存在释放后使用漏洞。如果向播放器的流媒体服务例程发送了特制的RTSP请求,播放器就会释放一个对象之后再重新使用,这可能导致执行任意代码。 Microsoft Windows Media Player 11 临时解决方法: * 在受影响的系统上禁用Windows媒体播放器网络共享服务。 交互方法 1. 单击“开始”,单击“运行”,在“打开”框中键入Regedit,然后单击“确定”。 2. 找到并随后选择下列注册表项: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WMPNetworkSvc 3. 单击“文件”菜单,然后单击“导出”。 4. 在“导出注册表文件”对话框中,输入WMPNetworkSvc_Backup.reg,然后单击“保存”。 注意:默认情况下,此操作将在“我的文档”文件夹中创建此注册表项的备份。 5. 在注册表编辑器的右窗格中选择值“启动”。按回车编辑注册表项的值。将“值”数据字段更改为4,并按回车。 6. 在提升的命令提示符下,输入以下命令停止此服务: sc stop WMPNetworkSvc 被管理的部署脚本 1. 使用下列命令创建注册表项副本: regedit /e WMPNetworkSvc_Backup.reg HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WMPNetworkSvc 2. 将下列内容保存到扩展名为.REG 的文件(如 Disable_WMPNetworkSvc.reg): Windows Registry Editor Version 5.00 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\service_name] Start&quot;=dword:00000004 3. 在目标计算机上,使用下列命令运行在步骤2中创建的注册表脚本: Regedit /s Disable_WMPNetworkSvc.reg 4. 在提升的命令提示符下,输入以下命令停止此服务: sc stop WMPNetworkSvc 厂商补丁: Microsoft --------- Microsoft已经为此发布了一个安全公告(MS10-075)以及相应补丁: MS10-075:Vulnerability in Media Player Network Sharing Service Could Allow Remote Code Execution (2281679) 链接:http://www.microsoft.com/technet/security/bulletin/MS10-075.mspx?pf=true
idSSV:20171
last seen2017-11-19
modified2010-10-15
published2010-10-15
reporterRoot
titleMicrosoft Windows Media Player网络共享服务RTSP释放后使用漏洞(MS10-075)