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.
22 lines
550 B
22 lines
550 B
#pragma once
|
|
#include "Utils.h"
|
|
#include <Library/ShellLib.h>
|
|
extern VOID* PayLoad;
|
|
|
|
#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)
|
|
|
|
#define WINDOWS_BOOTMGFW_PATH L"\\efi\\microsoft\\boot\\bootmgfw.efi"
|
|
#define PAYLOAD_PATH L"\\efi\\microsoft\\boot\\payload.dll"
|
|
|
|
UINT32 PayLoadSize(VOID);
|
|
EFI_STATUS LoadPayLoadFromDisk(VOID** PayLoadBufferPtr);
|
|
VOID* PayLoadEntry(VOID* ModuleBase); |