| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| Microsoft IIS FTP Status Request DoS | 20 Aug 200400:00 | – | nessus | |
| Microsoft IIS Vulnerabilities in Cisco Products - MS02-018 | 15 Apr 200218:00 | – | cisco | |
| CVE-2002-0073 | 2 Apr 200305:00 | – | cve | |
| CVE-2002-0073 | 2 Apr 200305:00 | – | cvelist | |
| CVE-2002-0073 | 22 Apr 200204:00 | – | nvd | |
| Microsoft Internet Information Services (IIS) Multiple Vulnerabilities (MS02-018) - Active Check | 3 Nov 200500:00 | – | openvas | |
| Microsoft IIS FTP Connection Status Request Denial of Service Vulnerability | 4 Jul 201200:00 | – | openvas | |
| Multiple Remote Vulnerabilities in Microsoft IIS | 11 Apr 200200:00 | – | securityvulns | |
| Advisory CA-2002-09 Multiple Vulnerabilities in Microsoft IIS | 12 Apr 200200:00 | – | securityvulns | |
| Microsoft Internet Information Server (IIS) vulnerable to DoS via malformed FTP connection status request | 10 Apr 200200:00 | – | cert |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
# Thanks to: H D Moore
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(10934);
script_version("1.53");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");
script_cve_id("CVE-2002-0073");
script_bugtraq_id(4482);
script_xref(name:"MSFT", value:"MS02-018");
script_xref(name:"MSKB", value:"319733");
script_name(english:"MS02-018: Microsoft IIS FTP Status Request DoS (uncredentialed check)");
script_set_attribute(attribute:"synopsis", value:
"The remote FTP server is prone to a denial of service attack.");
script_set_attribute(attribute:"description", value:
"It was possible to make the remote FTP server crash by sending the
command 'STAT *?AAAAA....AAAAA'.
There is a bug in certain versions of Microsoft's FTP server that can
be exploited in this fashion. Other FTP servers may also react
adversely to such a string. An attacker may leverage this issue to
crash the affected service and deny usage to legitimate users.");
script_set_attribute(attribute:"see_also", value:"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2002/ms02-018");
script_set_attribute(attribute:"solution", value:
"Microsoft has released a set of patches for IIS 4.0, 5.0, and 5.1.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2002/04/10");
script_set_attribute(attribute:"plugin_publication_date", value:"2002/04/10");
script_set_attribute(attribute:"potential_vulnerability", value:"true");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/o:microsoft:windows");
script_set_attribute(attribute:"cpe", value:"cpe:/a:microsoft:internet_information_server");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_end_attributes();
script_category(ACT_DENIAL);
script_family(english:"FTP");
script_copyright(english:"This script is Copyright (C) 2002-2022 Tenable Network Security, Inc.");
script_dependencies("ftpserver_detect_type_nd_version.nasl", "ftp_anonymous.nasl", "iis_asp_overflow.nasl", "ftp_kibuv_worm.nasl");
script_require_keys("Settings/ParanoidReport");
script_require_ports("Services/ftp", 21);
exit(0);
}
include("audit.inc");
include("ftp_func.inc");
include("global_settings.inc");
if (report_paranoia < 2) audit(AUDIT_PARANOID);
if ( get_kb_item("Q319733") ) exit(0);
port = get_ftp_port(default: 21);
if(!safe_checks())
{
login = get_kb_item("ftp/login");
password = get_kb_item("ftp/password");
if(login)
{
# Connect to the FTP server
soc = open_sock_tcp(port);
if(soc)
{
if(ftp_authenticate(socket:soc, user:login, pass:password))
{
# We are in
c = string("STAT *?", crap(240), "\r\n");
send(socket:soc, data:c);
b = ftp_recv_line(socket:soc);
send(socket:soc, data:string("HELP\r\n"));
r = ftp_recv_line(socket:soc);
if(!r)security_warning(port);
else {
ftp_close(socket: soc);
}
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