Undetected Nop Function?

Posts 13 of 3 · Page 1 of 1
Undetected Nop Function?
Is there an undetected nop function for CA? Mine keeps getting detected.
This is the one I'm using.

Code:
bool Memory( void * pDest, char * szPatch, size_t sSize )
{

    DWORD dwOrgProtect = NULL; 
    if ( !VirtualProtect ( pDest, sSize, PAGE_EXECUTE_READWRITE, &dwOrgProtect ))
        return FALSE;

    memcpy( pDest, szPatch, sSize ); 
    VirtualProtect( pDest, sSize, dwOrgProtect, NULL ); 
    return TRUE; 
}
Posts 13 of 3 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?