amig0 Posted April 10 Posted April 10 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 1
HostageOfCode Posted April 15 Posted April 15 Just use GetModuleHandle(). Quote HMODULE hModule = GetModuleHandle(ModuleName); uintptr_t base_of_code = (uintptr_t)hModule; uintptr_t patch_va = base_of_code + rva; 3
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now