Changed a lot of things. Addded a loader for extracting payload onto system

This commit is contained in:
hellisabove
2023-07-03 15:32:13 +03:00
parent 0969e96a55
commit 9f4a57720b
69 changed files with 406 additions and 63 deletions
+9
View File
@@ -0,0 +1,9 @@
#pragma once
#include <Windows.h>
#define RtlOffsetToPointer(Module, Pointer) PBYTE(PBYTE(Module) + DWORD(Pointer))
namespace Tools {
PVOID GetImageBase();
PBYTE ExtractDllFile(PBYTE module_base, PDWORD module_size);
}