ASM Hooker
Hello guys,
I just made that wonderful function to write in memory :P
and to call this use :
address = the second line from "AntiMemHackThread"...
hope you like it and press thanx if you use
@Jigsaw, @Austin, @Hero, @Royku, @DaRk, @BACKD00R a rename this to ASM Hooker and change it to release
, and you can sticky if you like 
I just made that wonderful function to write in memory :P
Code:
void writer(DWORD address,DWORD bytes, byte opcode)
{
for (int i = 0; i < bytes; i++)
{
DWORD adr = address+i*1;
VirtualProtect((LPVOID)adr,1,PAGE_EXECUTE_READWRITE,&oldProtection);
memcpy((VOID*)adr,&opcode,1);
VirtualProtect((LPVOID)adr,1,oldProtection,NULL);
}
}
Code:
DWORD cshell = (DWORD)(GetModuleHandleW(L"CShell.dll")); DWORD address = (DWORD)(cshell + 0x513D); writer(address,1,0x90);
hope you like it and press thanx if you use

@Jigsaw, @Austin, @Hero, @Royku, @DaRk, @BACKD00R a rename this to ASM Hooker and change it to release
, and you can sticky if you like 

