Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

C++ loader source code

Featured Replies

Posted

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

Just use GetModuleHandle().
 

Quote

 

    HMODULE hModule = GetModuleHandle(ModuleName);

    uintptr_t base_of_code = (uintptr_t)hModule;

    uintptr_t patch_va = base_of_code + rva;

 

 

 

  • 7 months later...

Due to the differences in memory addressing and architecture between 32& 64bit systems you need a few adjustments to inject code into a 64bit process with ASLR  

Pointers: are wide , so you need to make sure you're using appropriate types like uintptr_t for addresses, and LPVOID for memory allocations.
Memory Allocation: Functions work similarly to 32bit systems, but you need to make sure you're handling 64bit addresses correctly.

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.