Search:

Type: Posts; User: s0beit

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,477

    bool cAntiCheat::IsFuncValid( PVOID dwAddress,...

    bool cAntiCheat::IsFuncValid( PVOID dwAddress, char* szMemMatch, int iSize )
    {
    char* szMemOrig = ( char* )malloc( iSize );
    DWORD dwOldProtection, dwDummy = 0x0;
    VirtualProtect( dwAddress,...
  2. Replies
    6
    Views
    1,477

    bool cAntiCheat::IsFuncValid( PVOID dwAddress,...

    bool cAntiCheat::IsFuncValid( PVOID dwAddress, char* szMemMatch, int iSize )
    {
    char* szMemOrig = 0;
    DWORD dwOldProtection, dwDummy;
    VirtualProtect( dwAddress, iSize, PAGE_EXECUTE_READWRITE,...
  3. Replies
    6
    Views
    1,477

    What is wrong with my function?

    im making a small anti-cheat, and i want to check if functions are patched.


    bool cAntiCheat::IsFuncValid( DWORD dwAddress, char* szMemMatch, int iSize )
    {
    BYTE* szMemOrig;
    DWORD...
Results 1 to 3 of 3