From 923132cea25cb95071207960fd65353ec31a5fef Mon Sep 17 00:00:00 2001 From: vxunderground <57078196+vxunderground@users.noreply.github.com> Date: Thu, 14 Jul 2022 23:24:58 -0500 Subject: [PATCH] Create PEB_LDR_DATA.h --- Structures/PEB_LDR_DATA.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Structures/PEB_LDR_DATA.h diff --git a/Structures/PEB_LDR_DATA.h b/Structures/PEB_LDR_DATA.h new file mode 100644 index 0000000..9495eba --- /dev/null +++ b/Structures/PEB_LDR_DATA.h @@ -0,0 +1,8 @@ +typedef struct _PEB_LDR_DATA { + ULONG Length; + ULONG Initialized; + PVOID SsHandle; + LIST_ENTRY InLoadOrderModuleList; + LIST_ENTRY InMemoryOrderModuleList; + LIST_ENTRY InInitializationOrderModuleList; +} PEB_LDR_DATA, * PPEB_LDR_DATA;