Riremito

thread id check bypass

Jul 13th, 2015
859
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. DWORD (__fastcall *_GetData4)(DWORD ecx);
  2.  
  3. DWORD __fastcall NewGetData4(DWORD ecx){
  4.     if(ecx == Addr_ThreadIDPointer){
  5.         return 0;
  6.     }
  7.     return _GetData4(ecx);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment