Lucene search
K

Open-FTPD Authentication Bypass Vulnerability

🗓️ 16 Jul 2010 00:00:00Reported by Copyright (C) 2010 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 19 Views

Open-FTPD Authentication Bypass Vulnerability. Allows attackers to bypass security restrictions and execute FTP commands without authentication. No available patch. Prone to CVE-2010-2620 with CVSS base score of 9.3

Related
Refs
Code
ReporterTitlePublishedViews
Family
0day.today
Open&Compact FTP Server 1.2 - Auth Bypass & Directory Traversal SAM Retrieval Exploit
7 Aug 201300:00
zdt
0day.today
Open-FTPD 1.2 Arbitrary File Upload Vulnerability
13 Aug 201300:00
zdt
Circl
CVE-2010-2620
18 Jun 201000:00
circl
CVE
CVE-2010-2620
2 Jul 201020:00
cve
Cvelist
CVE-2010-2620
2 Jul 201020:00
cvelist
NVD
CVE-2010-2620
2 Jul 201020:30
nvd
OpenVAS
Open-FTPD Authentication Bypass Vulnerability
16 Jul 201000:00
openvas
Packet Storm
Open And Compact FTP Server 1.2 Bypass / Directory Traversal
8 Aug 201300:00
packetstorm
Packet Storm
Open-FTPD 1.2 Arbitrary File Upload
12 Aug 201300:00
packetstorm
Prion
Authentication flaw
2 Jul 201020:30
prion
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_open_ftpd_auth_bypass_vuln.nasl 5323 2017-02-17 08:49:23Z teissa $
#
# Open-FTPD Authentication Bypass Vulnerability
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2010 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_impact = "Successful exploitation will allow attackers to bypass certain
security restrictions and execute FTP commands without any authentication.

Impact Level: Application";

tag_affected = "Open&Compact FTP Server (Open-FTPD) Version 1.2 and prior.";

tag_insight = "The flaw is due to access not being restricted to various FTP
commands before a user is properly authenticated. This can be exploited to
execute FTP commands without any authentication.";

tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";

tag_summary = "This host is running Open&Compact FTP Server (Open-FTPD) and is
prone to authentication bypass vulnerability.";

if(description)
{
  script_id(801228);
  script_version("$Revision: 5323 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-17 09:49:23 +0100 (Fri, 17 Feb 2017) $");
  script_tag(name:"creation_date", value:"2010-07-16 18:57:03 +0200 (Fri, 16 Jul 2010)");
  script_cve_id("CVE-2010-2620");
  script_tag(name:"cvss_base", value:"9.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
  script_name("Open-FTPD Authentication Bypass Vulnerability");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/13932");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/40284");

  script_tag(name:"qod_type", value:"remote_vul");
  script_category(ACT_ATTACK);
  script_copyright("Copyright (C) 2010 Greenbone Networks GmbH");
  script_family("FTP");
  script_dependencies("find_service.nasl");
  script_require_ports("Services/ftp", 21);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"solution_type", value:"WillNotFix");
  exit(0);
}


include("ftp_func.inc");

## Get FTP port
port = get_kb_item("Services/ftp");
if(!port) {
  port = 21;
}

## Check port status
if(!get_port_state(port)) {
  exit(0);
}

## Confirm Open-FTPD
banner = get_ftp_banner(port:port);
if("Gabriel's FTP Server" >!< banner) {
  exit(0);
}

## Open TCP Socket
soc = open_sock_tcp(port);
if(!soc){
  exit(0);
}

## Try to execute LIST command without authentication
ftp_send_cmd(socket:soc, cmd:"LIST");
result = ftp_recv_listing(socket:soc);
close(soc);

## Check the FTP status message
if("226 Transfert Complete" >< result)
{
  security_message(port:port);
  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

17 Feb 2017 00:00Current
0.9Low risk
Vulners AI Score0.9
EPSS0.55672
19