Jump to content
Tuts 4 You

C++ loader source code


Recommended Posts

Hi,

I'm looking for C++ loader source code that works on x64 applications with ASLR

If someone can help I would really appreciate it

  • Like 1
Link to comment
HostageOfCode

Just use GetModuleHandle().
 

Quote

 

    HMODULE hModule = GetModuleHandle(ModuleName);

    uintptr_t base_of_code = (uintptr_t)hModule;

    uintptr_t patch_va = base_of_code + rva;

 

 

 

  • Like 2
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...