aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver/Native.h
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-05-07 22:23:34 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-05-07 22:23:34 +0200
commit3b8ee025edd045b962c21d09dd1ef86e1e48aae4 (patch)
tree294f2015bf65813b6cd23d7cfa265ccd21cd1ac3 /KMemDriver/Native.h
initial commit
Diffstat (limited to 'KMemDriver/Native.h')
-rw-r--r--KMemDriver/Native.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/KMemDriver/Native.h b/KMemDriver/Native.h
new file mode 100644
index 0000000..e421bda
--- /dev/null
+++ b/KMemDriver/Native.h
@@ -0,0 +1,82 @@
+#pragma once
+
+#include <ntddk.h>
+
+typedef struct _PEB_LDR_DATA
+{
+ ULONG Length;
+ UCHAR Initialized;
+ PVOID SsHandle;
+ LIST_ENTRY InLoadOrderModuleList;
+ LIST_ENTRY InMemoryOrderModuleList;
+ LIST_ENTRY InInitializationOrderModuleList;
+} PEB_LDR_DATA, *PPEB_LDR_DATA;
+
+typedef struct _LDR_DATA_TABLE_ENTRY
+{
+ LIST_ENTRY InLoadOrderLinks;
+ LIST_ENTRY InMemoryOrderLinks;
+ LIST_ENTRY InInitializationOrderLinks;
+ PVOID DllBase;
+ PVOID EntryPoint;
+ ULONG SizeOfImage;
+ UNICODE_STRING FullDllName;
+ UNICODE_STRING BaseDllName;
+ ULONG Flags;
+ USHORT LoadCount;
+ USHORT TlsIndex;
+ LIST_ENTRY HashLinks;
+ ULONG TimeDateStamp;
+} LDR_DATA_TABLE_ENTRY, *PLDR_DATA_TABLE_ENTRY;
+
+typedef struct _PEB
+{
+ UCHAR InheritedAddressSpace;
+ UCHAR ReadImageFileExecOptions;
+ UCHAR BeingDebugged;
+ UCHAR BitField;
+ PVOID Mutant;
+ PVOID ImageBaseAddress;
+ PPEB_LDR_DATA Ldr;
+ PVOID ProcessParameters;
+ PVOID SubSystemData;
+ PVOID ProcessHeap;
+ PVOID FastPebLock;
+ PVOID AtlThunkSListPtr;
+ PVOID IFEOKey;
+ PVOID CrossProcessFlags;
+ PVOID KernelCallbackTable;
+ ULONG SystemReserved;
+ ULONG AtlThunkSListPtr32;
+ PVOID ApiSetMap;
+} PEB, *PPEB;
+
+typedef struct _MEMORY_BASIC_INFORMATION {
+ PVOID BaseAddress;
+ PVOID AllocationBase;
+ ULONG AllocationProtect;
+ SIZE_T RegionSize;
+ ULONG State;
+ ULONG Protect;
+ ULONG Type;
+} MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
+
+typedef struct _KLDR_DATA_TABLE_ENTRY {
+ LIST_ENTRY InLoadOrderLinks;
+ PVOID ExceptionTable;
+ ULONG ExceptionTableSize;
+ PVOID GpValue;
+ PVOID NonPagedDebugInfo;
+ PVOID DllBase;
+ PVOID EntryPoint;
+ ULONG SizeOfImage;
+ UNICODE_STRING FullDllName;
+ UNICODE_STRING BaseDllName;
+ ULONG Flags;
+ USHORT LoadCount;
+ USHORT __Unused;
+ PVOID SectionPointer;
+ ULONG CheckSum;
+ PVOID LoadedImports;
+ PVOID PatchInformation;
+} KLDR_DATA_TABLE_ENTRY, *PKLDR_DATA_TABLE_ENTRY; \ No newline at end of file