frida-gadget-injection
Installation
SKILL.md
Frida Gadget Injection
Use this skill when normal attach is blocked, root or jailbreak is unavailable, or instrumentation must load from inside the target app.
Decide Gadget Mode
- Use
listenmode when a host should attach after the app starts. - Use
connectmode when Gadget should call back to a host. - Use
scriptmode for an embedded script that must run without an interactive host. - On jailed iOS, account for code-signing policy before relying on
Interceptor.
Android Shape
- Match Gadget architecture to APK ABI.
- Place the Gadget
.sowhere the app will load it. - Add the matching
.configfile beside Gadget. - Load the library early enough for the target behavior.
- Rebuild, sign, install, and run the app.