5 ms·
Nowadays MSVC supports the /hotpatch command line option, which inserts fillers like "mov edx, edx" or "lea edi, [edi]" at the start of each function for the sa
by DCoder 16y ago
Nowadays MSVC supports the /hotpatch command line option, which inserts fillers like "mov edx, edx" or "lea edi, [edi]" at the start of each function for the same purpose.
- abhijitr 16y agoSee also: Detours library by MSFT research(http://research.microsoft.com/en-us/projects/detours/ http://research.microsoft.com/en-us/projects/detours/). It doesn't require you to recompile your binaries to add NOPs.