| Reporter | Title | Published | Views | Family All 15 |
|---|---|---|---|---|
| Microsoft ISAPI W3Who Library Buffer Overflow (CVE-2004-1134) | 18 Feb 201000:00 | – | checkpoint_advisories | |
| CVE-2004-1133 | 8 Dec 200405:00 | – | cve | |
| CVE-2004-1134 | 8 Dec 200405:00 | – | cve | |
| CVE-2004-1133 | 8 Dec 200405:00 | – | cvelist | |
| CVE-2004-1134 | 8 Dec 200405:00 | – | cvelist | |
| Microsoft IIS - ISAPI 'w3who.dll' Query String Overflow (Metasploit) | 7 Jul 201000:00 | – | exploitdb | |
| Microsoft IIS ISAPI w3who.dll Query String Overflow | 13 Sep 200606:28 | – | metasploit | |
| CVE-2004-1133 | 10 Jan 200505:00 | – | nvd | |
| CVE-2004-1134 | 10 Jan 200505:00 | – | nvd | |
| w3who.dll Buffer Overflow / XSS Vulnerability - Active Check | 3 Nov 200500:00 | – | openvas |
| Source | Link |
|---|---|
| exaprobe | www.exaprobe.com/labs/advisories/esa-2004-1206.html |
# OpenVAS Vulnerability Test
# $Id: w3who_dll.nasl 5838 2017-04-03 10:26:36Z cfi $
# Description: w3who.dll overflow and XSS
#
# Authors:
# Nicolas Gregoire <[email protected]>
#
# Copyright:
# Copyright (C) 2004 Nicolas Gregoire <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2,
# 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_summary = "The Windows 2000 Resource Kit ships with a DLL that displays
the browser client context. It lists security identifiers,
privileges and $ENV variables.
OpenVAS has determined that this file is installed on the remote host.
The w3who.dll ISAPI may allow an attacker to execute arbitrary commands
on this host, through a buffer overflow, or to mount XSS attacks.";
tag_solution = "Delete this file";
if(description)
{
script_id(15910);
script_version("$Revision: 5838 $");
script_tag(name:"last_modification", value:"$Date: 2017-04-03 12:26:36 +0200 (Mon, 03 Apr 2017) $");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_tag(name:"cvss_base", value:"10.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
script_cve_id("CVE-2004-1133", "CVE-2004-1134");
script_bugtraq_id(11820);
script_name("w3who.dll overflow and XSS");
script_category(ACT_MIXED_ATTACK);
script_tag(name:"qod_type", value:"remote_active");
script_copyright("This script is Copyright (C) 2004 Nicolas Gregoire <[email protected]>");
script_family("Web application abuses");
script_dependencies("gb_get_http_banner.nasl");
script_mandatory_keys("IIS/banner");
script_require_ports("Services/www", 80);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
script_xref(name : "URL" , value : "http://www.exaprobe.com/labs/advisories/esa-2004-1206.html");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
port = get_http_port(default:80);
sig = get_http_banner(port:port);
if ( sig && "IIS" >!< sig ) exit(0);
req = http_get(item:"/scripts/w3who.dll", port:port);
res = http_keepalive_send_recv(port:port, data:req);
if("Access Token" >< res)
{
if(safe_checks()) {
security_message(port);
exit(0);
}
req = string("GET /scripts/w3who.dll?", crap(600), " HTTP/1.1\r\n",
"Host: ", get_host_name(), "\r\n",
"User-Agent: ", OPENVAS_HTTP_USER_AGENT, "\r\n");
soc = http_open_socket(port);
if(!soc)exit(0);
send(socket:soc, data:req);
r = http_recv(socket:soc);
# The page content is subject to localization
# Matching on headers and title
if("HTTP/1.1 500 Server Error" >< r &&
"<html><head><title>Error</title>" >< r) security_message(port);
}
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