Archived
1
0

feat(Pointers): Added blame explode

This commit is contained in:
Yimura 2021-10-15 11:26:52 +02:00
parent 12f4527de8
commit f19f79f9d0
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682
2 changed files with 7 additions and 0 deletions

@ -203,6 +203,12 @@ namespace big
{
m_report_myself_sender = ptr.as<decltype(m_report_myself_sender)>();
});
// Blame Explode
main_batch.add("BE", "0F 85 ? ? ? ? 48 8B 05 ? ? ? ? 48 8B 48 08 E8", [this](memory::handle ptr)
{
m_blame_explode = ptr.as<decltype(m_blame_explode)>();
});
main_batch.run(memory::module(nullptr));

@ -37,6 +37,7 @@ namespace big
IDXGISwapChain **m_swapchain{};
PVOID m_blame_explode;
PVOID m_model_spawn_bypass;
PVOID m_native_return;