Lucene search

K
nessusThis script is Copyright (C) 2000-2018 Tenable Network Security, Inc.FTP_SERVU_TRAVERSAL.NASL
HistoryDec 06, 2000 - 12:00 a.m.

Serv-U CD Command Encoded Traversal Arbitrary File/Directory Access

2000-12-0600:00:00
This script is Copyright (C) 2000-2018 Tenable Network Security, Inc.
www.tenable.com
22

The remote host is running Serv-U FTP server. The installed version fails to properly sanitize user-supplied input to the ‘cd’ command. An attacker could exploit this flaw to access arbitrary files on the remote host.

#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if(description)
{
 script_id(10565);
 script_version ("1.40");

 script_bugtraq_id(2052);
 script_cve_id("CVE-2001-0054");
 
 script_name(english:"Serv-U CD Command Encoded Traversal Arbitrary File/Directory Access");
 script_summary(english:"Traverses the remote ftp root");

 script_set_attribute(attribute:"synopsis", value:
"The remote FTP server is affected by a directory traversal
vulnerability." );
 script_set_attribute(attribute:"description", value:
"The remote host is running Serv-U FTP server. The installed version
fails to properly sanitize user-supplied input to the 'cd' command. An
attacker could exploit this flaw to access arbitrary files on the
remote host." );
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2000/Dec/79" );
 script_set_attribute(attribute:"solution", value:
"Upgrade to Serv-U 2.5i or later." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/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: "2000/12/06");
 script_set_attribute(attribute:"vuln_publication_date", value: "2000/12/05");
 script_cvs_date("Date: 2018/11/15 20:50:22");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:serv-u:serv-u");
 script_end_attributes();
 
 script_category(ACT_GATHER_INFO);
 
 script_copyright(english:"This script is Copyright (C) 2000-2018 Tenable Network Security, Inc.");
 script_family(english:"FTP");

 script_dependencie("ftpserver_detect_type_nd_version.nasl", "ftp_anonymous.nasl");
 script_require_keys("ftp/servu", "ftp/anonymous");
 script_require_ports("Services/ftp", 21);
 exit(0);
}

#
# The script code starts here
#

include("ftp_func.inc");

port = get_ftp_port(default: 21);

login = get_kb_item("ftp/login");
pass  = get_kb_item("ftp/password");

if(! login) login="ftp";
if (! pass) pass="[email protected]";

banner = get_ftp_banner(port:port);
if (! banner || "Serv-U FTP Server" >!< banner ) exit(0);

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

 if(ftp_authenticate(socket:soc, user:login,pass:pass))
 {
  
  for(i=0;i<2;i=i+1)
  {
  send(socket:soc, data: 'CWD ..%20.\r\n');
  a[i] = ftp_recv_line(socket:soc);
  }
  
  if(a[0]==a[1])exit(0);

  if((egrep(pattern:".*to /..", string:a[0])) ||
     (egrep(pattern:".*to /[a-z]:/", string:a[1], icase:TRUE)) ||
     (egrep(pattern:"^550 /[a-z]:/.*", string:a[1], icase:TRUE)))
    	security_warning(port);

  exit(0);   
 }
ftp_close(socket: soc);


r = get_ftp_banner(port: port);
if(!r)exit(1);

 if(egrep(pattern:"^220 Serv-U FTP-Server v2\.(([0-4][0-9])|(5[a-h]))", string:r))
 {
    report = string(
      "*** Note : Nessus solely relied on the banner as it was not possible\n",
      "*** to log into this server"
    );
 	security_warning(port:port, extra:report);
 }

VendorProductVersionCPE
serv-userv-ucpe:/a:serv-u:serv-u
Related for FTP_SERVU_TRAVERSAL.NASL