| Reporter | Title | Published | Views | Family All 4 |
|---|---|---|---|---|
| CVE-2001-0491 | 24 May 200104:00 | – | cve | |
| CVE-2001-0491 | 24 May 200104:00 | – | cvelist | |
| EUVD-2001-0487 | 7 Oct 202500:30 | – | euvd | |
| CVE-2001-0491 | 27 Jun 200104:00 | – | nvd |
| Source | Link |
|---|---|
| cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(18224);
script_version("1.13");
script_cve_id("CVE-2001-0491");
script_bugtraq_id(2655);
script_name(english:"RaidenFTPD Multiple Command Traversal Arbitrary File Access");
script_set_attribute(
attribute:"synopsis",
value:"The remote FTP server has a directory traversal vulnerability."
);
script_set_attribute(
attribute:"description",
value:
"The remote host is running the RaidenFTPD FTP server. This version
has a directory traversal vulnerability. An authenticated attacker
could exploit this to read and write arbitrary files outside of the
intended FTP root."
);
script_set_attribute(
attribute:"solution",
value:"Upgrade to RaidenFTPD 2.1 build 952 or later."
);
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:N");
script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"plugin_publication_date", value: "2005/05/11");
script_set_attribute(attribute:"vuln_publication_date", value: "2001/04/26");
script_cvs_date("Date: 2018/07/25 18:58:04");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();
summary["english"] = "Detects RaidenFTPD Directory Traversal";
script_summary(english:summary["english"]);
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2005-2018 Tenable Network Security, Inc.");
script_family(english:"FTP");
script_dependencie("ftp_anonymous.nasl", "ftpserver_detect_type_nd_version.nasl");
script_require_keys("ftp/login");
script_require_ports("Services/ftp", 21);
exit(0);
}
#
# The script code starts here
#
include("misc_func.inc");
include("ftp_func.inc");
port = get_ftp_port(default: 21);
login = get_kb_item_or_exit("ftp/login");
password = get_kb_item_or_exit("ftp/password");
banner = get_ftp_banner(port: port);
if ( ! banner ) exit(0);
if (!egrep(pattern:".*RaidenFTPD.*", string:banner))exit(0);
soc = open_sock_tcp(port);
if (! soc) exit(1);
ftp_recv_line(socket:soc);
if(ftp_authenticate(socket:soc, user:login, pass:password))
{
s = string("GET ....\....\autoexec.bat\r\n");
send(socket:soc, data:s);
r = ftp_recv_line(socket:soc);
if ("150 Sending " >< r) security_warning(port);
}
close(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