Definition
What is hook detection?
Hooking is a technique that intercepts calls in a running application and redirects or modifies them. Frameworks like Frida make it possible to change what a function returns, skip a check, or rewrite behavior without ever touching the app on disk.
For an attacker, hooking is one of the most powerful runtime tools. It can bypass a security check, manipulate a value, or extract data, all while the application appears to run normally.
Hook detection is a runtime, RASP-style protection that identifies when hooking frameworks are active in your application's process. Once it knows, your app can respond instead of trusting logic that is being intercepted.
