View Full Version : NOP Antikick
NoobH4xer
01-26-2008, 11:27 AM
Hi, how should I nop antikick? like that:????
ON CODE:
memory();
BYTE Nop[ ] = {0x90, 0x90, 0x90};
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) (0x4FCF35), &Nop, sizeof(Nop), NULL);
OFF CODE:
memory();
BYTE Nop[ ] = {0x4F, 0xCF, 0x35};
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) (0x4FCF35), &Nop, sizeof(Nop), NULL);
pls help thx
wr194t
01-26-2008, 11:33 AM
Anti Kick is a 6 byte NOP:
emory();
BYTE Nop[ ] = {0x90, 0x90, 0x90, 0x90, 0x90, 0x90};
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) (0x4FCF35), &Nop, sizeof(Nop), NULL);
Each 0x90 is 1 byte, and for the off code, you need to find the off bytes yourself.
NoobH4xer
01-26-2008, 12:33 PM
sry but I dont understand how to find the bytes... what should I do when I want to find them?:D
LegendaryHacker
01-26-2008, 12:53 PM
You have the address ?
then, read the bytes from him.
lol
masterboy
01-26-2008, 02:08 PM
Open UCE or a CE Then WarRock. Don`t login
Attach process.than go to Memory View,right click an address and go to address,enter the anti kick address click ok,right click the address and go to Replace code that does nothing and u will find something like 66 55 22 33 55 66(this is not the real bytes but u should find 6 bytes)
Thats it lol :)
Powered by vBulletin® Version 4.1.12 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.