| Reporter | Title | Published | Views | Family All 13 |
|---|---|---|---|---|
| CVE-2012-0007 | 10 Jan 201200:00 | – | circl | |
| Microsoft AntiXSS Library Bypass Information Disclosure (MS12-007; CVE-2012-0007) | 10 Jan 201200:00 | – | checkpoint_advisories | |
| Microsoft AntiXSS Library Bypass Information Disclosure (MS12-007) - Ver2 (CVE-2012-0007) | 26 Mar 201500:00 | – | checkpoint_advisories | |
| CVE-2012-0007 | 10 Jan 201221:00 | – | cve | |
| CVE-2012-0007 | 10 Jan 201221:00 | – | cvelist | |
| MS12-007: Vulnerability in AntiXSS Library Could Allow Information Disclosure (2607664) (uncredentialed check) | 17 Jan 201200:00 | – | nessus | |
| MS12-007: Vulnerability in AntiXSS Library Could Allow Information Disclosure (2607664) | 10 Jan 201200:00 | – | nessus | |
| MS12-007: Vulnerability in Anti-XSS Library could allow information disclosure: January 10, 2012 | 10 Jan 201200:00 | – | mskb | |
| CVE-2012-0007 | 10 Jan 201221:55 | – | nvd | |
| Microsoft AntiXSS Library Information Disclosure Vulnerability (2607664) | 11 Jan 201200:00 | – | openvas |
| Source | Link |
|---|---|
| technet | www.technet.microsoft.com/en-us/security/bulletin/ms12-007 |
| securitytracker | www.securitytracker.com/id/1026499 |
| secunia | www.secunia.com/advisories/47516/ |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms12-007.nasl 5366 2017-02-20 13:55:38Z cfi $
#
# Microsoft AntiXSS Library Information Disclosure Vulnerability (2607664)
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2012 SecPod, http://www.secpod.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################
tag_impact = "Successful exploitation could allow attackers to bypass the filter and
conduct cross-site scripting attacks. Successful exploits may allow attackers
to execute arbitrary script code and steal cookie-based authentication
credentials.
Impact Level: Application";
tag_affected = "Microsoft Anti-Cross Site Scripting Library version 3.x
Microsoft Anti-Cross Site Scripting Library version 4.0";
tag_insight = "The flaw is due to error in library which fails to properly filter
HTML code from user-supplied input. A remote user may be able to exploit a
target application that uses the library to cause arbitrary scripting code to
be executed by the target user's browser.";
tag_solution = "Upgrade to Microsoft Anti-Cross Site Scripting Library version 4.2.1
For updates refer to http://technet.microsoft.com/en-us/security/bulletin/ms12-007";
tag_summary = "This host is missing an important security update according to
Microsoft Bulletin MS12-007.";
if(description)
{
script_id(902785);
script_version("$Revision: 5366 $");
script_cve_id("CVE-2012-0007");
script_bugtraq_id(51291);
script_tag(name:"cvss_base", value:"4.3");
script_tag(name:"last_modification", value:"$Date: 2017-02-20 14:55:38 +0100 (Mon, 20 Feb 2017) $");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
script_tag(name:"creation_date", value:"2012-01-11 13:30:24 +0530 (Wed, 11 Jan 2012)");
script_name("Microsoft AntiXSS Library Information Disclosure Vulnerability (2607664)");
script_xref(name : "URL" , value : "http://secunia.com/advisories/47516/");
script_xref(name : "URL" , value : "http://securitytracker.com/id/1026499");
script_xref(name : "URL" , value : "http://technet.microsoft.com/en-us/security/bulletin/ms12-007");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2012 SecPod");
script_family("Windows : Microsoft Bulletins");
script_dependencies("secpod_reg_enum.nasl");
script_mandatory_keys("SMB/WindowsVersion");
script_require_ports(139, 445);
script_tag(name : "impact" , value : tag_impact);
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "insight" , value : tag_insight);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
script_tag(name:"qod_type", value:"registry");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
include("smb_nt.inc");
include("version_func.inc");
include("secpod_smb_func.inc");
if(!get_kb_item("SMB/WindowsVersion")){
exit(0);
}
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";
if(!registry_key_exists(key:key)){
exit(0);
}
## Check for the Microsoft AntiXSS
foreach item (registry_enum_keys(key:key))
{
xssName = registry_get_sz(key:key + item, item:"DisplayName");
if("Microsoft AntiXSS" >< xssName ||
"Microsoft Anti-Cross Site Scripting Library" >< xssName)
{
## Get the version for Microsoft AntiXSS
xssVer = registry_get_sz(key:key + item, item:"DisplayVersion");
if(xssVer)
{
## Check for vulnerable versions of Microsoft AntiXSS
if(xssVer =~ "^3\.*" ||
version_in_range(version:xssVer, test_version:"4.0", test_version2:"4.2.0"))
{
security_message(0);
exit(0);
}
}
}
}
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation