Código:#include DWORD g_dwLoadLibraryAJMP; /* HOOK FUNCTION */ DWORD WINAPI jumphook( DWORD AddressToPerformJump, DWORD AddressOfMyFunction, DWORD LenghOfTheAreaToPerformTheJump ) { if( LenghOfTheAreaToPerformTheJump < 5 ) return 0; DWORD RelativeJump, NextInstructionAddress, Flag; if ( ! VirtualProtect((LPVOID)AddressToPerformJump, LenghOfTheAreaToPerformTheJump, PAGE_EXECUTE_READWRITE, &Flag) ) return 0; NextInstructionAddress = AddressToPerformJump + LenghOfTheAreaToPerformTheJump; *(BYTE*)AddressToPerformJump = 0xE9; for( DWORD i = 5; i < LenghOfTheAreaToPerformTheJump; i++) *(BYTE*)(AddressToPerformJump+i) = 0x90; RelativeJump = AddressOfMyFunction...
Read more »