Lucene search

K
openvasCopyright (C) 2009 Greenbone Networks GmbHOPENVAS:801058
HistoryDec 02, 2009 - 12:00 a.m.

TYPSoft FTP Server 'APPE' and 'DELE' Commands DOS Vulnerability

2009-12-0200:00:00
Copyright (C) 2009 Greenbone Networks GmbH
plugins.openvas.org
4

0.03 Low

EPSS

Percentile

90.9%

This host is running TYPSoft FTP Server and is prone to Denial of
Service Vulnerability.

##############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_typsoft_ftp_server_dos_vuln.nasl 4892 2016-12-30 15:39:07Z teissa $
#
# TYPSoft FTP Server 'APPE' and 'DELE' Commands DOS Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2009 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 let the user crash the application to
cause denial of service.";

tag_affected = "TYPSoft FTP Server version 1.10 and prior.";

tag_insight = "The flaw is due to an error when handling the 'APPE' and 'DELE'
commands. These can be exploited through sending multiple login request in same
socket.";

tag_solution = "Upgrade to version 1.11 or later,
For updates refer to http://www.softpedia.com/get/Internet/Servers/FTP-Servers/TYPSoft-FTP-Server.shtml";

tag_summary = "This host is running TYPSoft FTP Server and is prone to Denial of
Service Vulnerability.";

if(description)
{
  script_id(801058);
  script_version("$Revision: 4892 $");
  script_tag(name:"last_modification", value:"$Date: 2016-12-30 16:39:07 +0100 (Fri, 30 Dec 2016) $");
  script_tag(name:"creation_date", value:"2009-12-02 13:54:57 +0100 (Wed, 02 Dec 2009)");
  script_tag(name:"cvss_base", value:"3.5");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:S/C:N/I:N/A:P");
  script_bugtraq_id(37114);
  script_cve_id("CVE-2009-4105");
  script_name("TYPSoft FTP Server 'APPE' and 'DELE' Commands DOS Vulnerability");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/54407");
  script_xref(name : "URL" , value : "http://securitytracker.com/alerts/2009/Nov/1023234.html");

  script_tag(name:"qod_type", value:"remote_banner");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
  script_family("Denial of Service");
  script_dependencies("gb_typsoft_ftp_detect.nasl");
  script_require_ports("Services/ftp", 21);
  script_mandatory_keys("TYPSoft/FTP/Ver");
  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);
}


include("smb_nt.inc");
include("version_func.inc");


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

if(!get_port_state(port)){
  exit(0);
}

tsftpVer = get_kb_item("TYPSoft/FTP/Ver");
if(tsftpVer != NULL)
{
  if(version_is_less_equal(version:tsftpVer, test_version:"1.10")){
   security_message(port);
  }
}

0.03 Low

EPSS

Percentile

90.9%

Related for OPENVAS:801058