1 dépôt
Alters execution paths of running Windows software by patching function entry points at runtime.
Distinct from Runtime Execution Modifications: Distinct from Runtime Execution Modifications: focuses on patching function entry points, not replacing core system binaries.
Explore 1 awesome GitHub repository matching operating systems & systems programming · Runtime Function Entry Patching. Refine with filters or upvote what's useful.
Detours is a library for intercepting Win32 API calls and redirecting function calls at runtime on Windows, enabling binary-level instrumentation without requiring access to the original source code. It functions as an API hooking library and binary instrumentation toolkit, allowing developers to monitor or modify the behavior of compiled Windows binaries by hooking into their function execution paths. The project achieves this through detour-based function interception, where the first few instructions of a target function are replaced with a jump to a user-supplied detour function, while pr
Alters execution paths of running Windows software by patching function entry points at runtime.