BUt HOw TO DIsable.
Code:
void WriteAsm(void *adress,void *bytes,int size)
{
DWORD dwProtect; //Define our dwProtect
VirtualProtect((void*)adress,size,PAGE_EXECUTE_READWRITE,&dwProtect); //we open for writing
memcpy((void *)adress,(PBYTE)bytes,size); //we write our adress,byte & size
VirtualProtect((void*)adress,size,dwProtect,&dwProtect); //we restore the protection and close writing
}
VOID Bypass(VOID)
{
WriteAsm((VOID *)(0x479936),(PBYTE)"\xC9",1);
WriteAsm((VOID *)(0x4798F8),(PBYTE)"\x6A\x00",2);
WriteAsm((VOID *)(0x479930),(PBYTE)"\x00",1);
} Error!
---------- Post added at 11:09 PM ---------- Previous post was at 10:54 PM ----------
Help Me PLease BEcuase THis Is My FIrst TIme To DIsabling A MEssage. Assembly.
Give Me Plss The FUnction And Will Read. PLease! THanks!