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
346 B
17 lines
346 B
4 years ago
|
#pragma once
|
||
|
#include "Utils.h"
|
||
|
extern unsigned char PayLoad[3072];
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
4 years ago
|
typedef struct _voyager_t
|
||
4 years ago
|
{
|
||
|
UINT64 VmExitHandlerRva;
|
||
|
UINT64 HypervModuleBase;
|
||
|
UINT64 HypervModuleSize;
|
||
|
UINT64 ModuleBase;
|
||
|
UINT64 ModuleSize;
|
||
4 years ago
|
} voyager_t, * pvoyager_t;
|
||
4 years ago
|
#pragma pack(pop)
|
||
|
|
||
|
UINT32 PayLoadSize(VOID);
|
||
|
VOID* PayLoadEntry(VOID* ModuleBase);
|