You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
345 B
17 lines
345 B
4 years ago
|
#pragma once
|
||
|
#include "Utils.h"
|
||
|
extern unsigned char PayLoad[2560];
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
|
typedef struct _VOYAGER_T
|
||
|
{
|
||
|
UINT64 VmExitHandlerRVA;
|
||
|
UINT64 HypervModuleBase;
|
||
|
UINT64 HypervModuleSize;
|
||
|
UINT64 ModuleBase;
|
||
|
UINT64 ModuleSize;
|
||
|
} VOYAGER_T, *PVOYAGER_T;
|
||
|
#pragma pack(pop)
|
||
|
|
||
|
UINT32 PayLoadSize(VOID);
|
||
|
VOID* PayLoadEntry(VOID* ModuleBase);
|