Advertisement
yonidrori

ASLR Bypass For ROBLOX

Aug 3rd, 2016
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. //ASLR Bypass For Roblox 2016
  2. //Or : ASLR.h Bypass For ROBLOX 2016
  3. //By Yonidrori
  4. #include <Windows.h>
  5. #include <iostream>
  6. int ASLR(int address)
  7. {
  8.     int bk = address;
  9.     int bs = (int)GetModuleHandleA("RobloxPlayerBeta.exe");
  10.     while (bk != (address - 0x400000))
  11.     {
  12.         void* dt = malloc((pow(2, 16) / 2) - 1);
  13.         memset(dt, 0xE8, (pow(2, 16) / 2) - 1);
  14.         bk -= (char)(dt)-0xE7;
  15.     }
  16.     return (bk + bs);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement