Skip to content

Commit

Permalink
Merge branch 'master' into csharp-api
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed May 15, 2024
2 parents 3ab5846 + 7bd947d commit a25dd47
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion shared/sdk/REContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,25 @@ namespace sdk {
}
}
if (!method_inside_invoke_tbl) {
spdlog::info("[VM::update_pointers] Unable to find method inside invoke table.");
spdlog::info("[VM::update_pointers] Unable to find method inside invoke table. Trying fallback scan...");
const auto anchor = utility::scan(mod, "8D 56 FF 48 8B CF E8 ? ? ? ?");

if (!anchor) {
spdlog::info("[VM::update_pointers] Unable to find anchor for invoke table.");
return;
}

const auto lea_rdx = utility::scan_reverse(*anchor, 0x100, "48 8D 15 ? ? ? ?");

if (!lea_rdx) {
spdlog::info("[VM::update_pointers] Unable to find lea rdx for invoke table.");
return;
}

s_invoke_tbl = (sdk::InvokeMethod*)utility::resolve_displacement(*lea_rdx).value_or(0);

spdlog::info("[VM::update_pointers] s_invoke_tbl: {:x}", (uintptr_t)s_invoke_tbl);

return;
}

Expand Down

0 comments on commit a25dd47

Please sign in to comment.