2 مستودعات
Altering the execution flow of a runtime environment by replacing core system binaries.
Distinct from Android App Modifications: Candidates focus on containerized runtimes or app-level patching, not the modification of the system runtime binary itself.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Runtime Execution Modifications. Refine with filters or upvote what's useful.
Xposed is a native Android runtime hooking framework and instrumentation tool. It provides a modified version of the Android app process binary to intercept and modify the behavior of system and application processes at the binary level. The framework enables Android operating system customization by altering internal function calls and runtime execution flow. It achieves this through native process instrumentation, allowing for the modification of functionality without altering original application files. The tool covers several low-level capabilities, including native library injection and
Alters the execution flow of the Android runtime by replacing the standard app_process binary.
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.