Results 1 to 3 of 3
  1. #1
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad

    Getting a process handle in Kernel Mode

    Shut the fuck up if you've come here to bitch. You came in the C++ section, go fuck yourself if you didn't expect this.

    Anyway, because I have such a low self-asteem and I need to boost my ego from online users I've never met, by posting source code(because that's the only reason I'd ever post it) I've written up this post.

    I am writing a Driver to protect another process(it's a work in progress). And I noticed that there aren't any functions to get a process handle via it's image name. So I did some googling, turns out, if it's there, it sure as hell is hard to find. I couldn't find a single result that showed me how. After doing some research on the undocumented members of a couple structs, and the ZwOpenProcess API, I found out how to get a handle to the targeted process. I think some people could benifit greatly from this, so I'm going to be posting it here on MPGH, and you're free to redistribute it in any form anywhere else. Also note, it's C and I believe C is a little less strict with the type system. The code is fairly simple to understand(at least for those who've landed on this page via google). These are stripped down header and source files from my JRK project.


    While it's not copy-paste friendly, this is supposed to be an example.

    Header:
    hidApi.h
    [PHP]
    #ifndef HIDAPI_H_
    #define HIDAPI_H_

    #include "ntddk.h"
    NTSYSAPI NTSTATUS NTAPI ZwQuerySystemInformation(
    ULONG SystemInformationClass,
    PVOID SystemInformation,
    ULONG SystemInformationLength,
    PULONG ReturnLength
    );

    #endif
    [/PHP]winstructs.h : I took some of these structs from a website which lists undocumented structs & members
    [PHP]
    #ifndef WINSTRUCTS_H_
    #define WINSTRUCTS_H_
    #include "ntddk.h"
    typedef struct _SYSTEM_THREADS

    {
    LARGE_INTEGER KernelTime;
    LARGE_INTEGER UserTime;
    LARGE_INTEGER CreateTime;
    ULONG WaitTime;
    PVOID StartAddress;
    CLIENT_ID ClientId;
    KPRIORITY Priority;
    KPRIORITY BasePriority;
    ULONG ContextSwitchCount;
    ULONG ThreadState;
    KWAIT_REASON WaitReason;
    } _SYSTEM_THREADS;


    typedef struct _SYSTEM_PROCESSES
    {
    ULONG NextEntry;
    ULONG ThreadCount;
    ULONG Reserved[6];
    LARGE_INTEGER CreateTime;
    LARGE_INTEGER UserTime;
    LARGE_INTEGER KernelTime;
    UNICODE_STRING ProcessName;
    KPRIORITY BasePriority;
    ULONG ProcessId;
    ULONG InheritedFromProcessId;
    ULONG HandleCount;
    ULONG Reserved2[2];
    VM_COUNTERS VmCounters;
    IO_COUNTERS IoCounters;
    _SYSTEM_THREADS Threads[1];
    } _SYSTEM_PROCESSES;
    #endif
    [/PHP]memory.h
    [PHP]
    #ifndef MEMORY_H_
    #define MEMORY_H_

    void* allocateMemory(unsigned long size);
    void* allocateMemoryEx(unsigned long size, short forced);

    void freeMemoryPool(void* addr);

    #endif
    [/PHP]
    systemInformation.h

    [PHP]
    #ifndef SYSTEMINFORMATION_H_
    #define SYSTEMINFORMATION_H_
    #include "ntddk.h"

    /* If ALLOW_BUFFER_ALLOCATION_RAISED is defined, buffers are allowed to exceed their fixed limit to provide a larger buffer, which may
    * be required for API calls that require a buffer with an unknown and varying required size. Regardless if this is defined or not,
    * BUFFER_INCREASE_PER_CYCLE must be defined.
    */
    #define ALLOW_BUFFER_ALLOCATION_RAISED
    #define BUFFER_INCREASE_PER_CYCLE 0x200 //When buffer size is not large enough, it will be increased by this amount.
    #define ALLOW_MUST_SUCCEED_ALLOCATIONS 1 //Dangerous and could cause system crashes on systems with low resources. However if the buffer isn't huge, it is safe. I have to use it on my VM because of it's low amount of virtual ram.
    #define SYS_INFO_PROCESSES_SIZE 0x8000
    #define SystemProcessesAndThreadsInformation 5 //I had an enumerator here for all the members of, but to strip down code, I replaced it with the single required definition. If you need a list of these, they should be listed in any webpage that discuss undocumented kernel APIs.

    HANDLE GetProcHandle(PWCHAR procName);

    #endif
    [/PHP]memory.c
    [PHP]
    #include "ntddk.h"
    #include "memory.h"

    void* allocateMemory(unsigned long size)
    {
    return (void*)ExAllocatePool(NonPagedPool, size);
    }

    void* allocateMemoryEx(unsigned long size, short forced)
    {
    return (void*)ExAllocatePool(NonPagedPool | (forced ? NonPagedPoolMustSucceed : 0), size);
    }

    void freeMemoryPool(void* addr)
    {
    ExFreePool(addr);
    }
    [/PHP]systemInformation.c
    [PHP]
    #include "winstructs.h"
    #include "memory.h"
    #include "ntddk.h"
    #include "hidApi.h"
    #include "systemInformation.h"


    HANDLE GetProcHandle(PWCHAR procName)
    {

    NTSTATUS status;
    _SYSTEM_PROCESSES* sysProcInfo;
    UNICODE_STRING usTgtBuffer;
    HANDLE hHandleBuffer;
    OBJECT_ATTRIBUTES objAttrib;

    void* allocationBase;
    unsigned long bufSize;

    bufSize = SYS_INFO_PROCESSES_SIZE;

    RtlInitUnicodeString(&usTgtBuffer, procName);

    do
    {

    allocationBase = (_SYSTEM_PROCESSES*) allocateMemoryEx(bufSize, ALLOW_MUST_SUCCEED_ALLOCATIONS);

    if(!allocationBase)
    return 0;

    status = ZwQuerySystemInformation(SystemProcessesAndThreads Information, allocationBase, bufSize, 0);

    if(status == STATUS_INFO_LENGTH_MISMATCH)
    {
    freeMemoryPool(allocationBase);

    #ifdef ALLOW_BUFFER_ALLOCATION_RAISED
    bufSize+=BUFFER_INCREASE_PER_CYCLE;
    #else
    continue;
    #endif
    }else if(!NT_SUCCESS(status))
    return 0;

    }while(status == STATUS_INFO_LENGTH_MISMATCH);

    status = STATUS_UNSUCCESSFUL;
    sysProcInfo = (_SYSTEM_PROCESSES*)allocationBase;
    while(TRUE)
    {
    if(!RtlCompareUnicodeString(&usTgtBuffer, &sysProcInfo->ProcessName, TRUE))
    {
    if((unsigned long)sysProcInfo->ThreadCount != 0)
    {
    InitializeObjectAttributes(&objAttrib, 0, OBJ_KERNEL_HANDLE, 0, 0);
    status = ZwOpenProcess(&hHandleBuffer, PROCESS_ALL_ACCESS, &objAttrib, &sysProcInfo->Threads[0].ClientId);
    break;
    }
    else
    break;
    }

    if(sysProcInfo->NextEntry)
    (unsigned long)sysProcInfo += (unsigned long)sysProcInfo->NextEntry;
    else
    break;
    }

    freeMemoryPool(allocationBase);

    return (NT_SUCCESS(status) ? hHandleBuffer : 0);

    }
    [/PHP]

  2. #2
    A⁴'s Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    I want my minion back /fosho.
    Posts
    4,001
    Reputation
    67
    Thanks
    437
    My Mood
    Flirty
    Hey Jeta,nice to see you.

    Any way, gl on your project.

  3. #3
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Thanks, I think I'm going to create an MPGH challenge when I get it done. Sort of like a crackme but it's a bit different in terms of rules etc.

Similar Threads

  1. [Question]Getting the process in textbox
    By theavengerisback15 in forum Visual Basic Programming
    Replies: 4
    Last Post: 12-02-2009, 07:56 AM
  2. Get Engine.exe Handle
    By crazyfool in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 06-28-2009, 06:40 PM
  3. Replies: 7
    Last Post: 06-11-2009, 09:53 PM
  4. [Request] Get CA process Handle
    By crazyfool in forum Programming Tutorial Requests
    Replies: 2
    Last Post: 05-30-2009, 05:38 AM
  5. Get Process name, PID, User, Path
    By Token in forum C++/C Programming
    Replies: 3
    Last Post: 10-17-2008, 09:45 AM

Tags for this Thread