frida_interactive_eval
Evaluate arbitrary JavaScript in an existing Frida REPL session, reusing hooks and state. Return data via send() without unloading the session.
Instructions
Execute arbitrary JS in an existing persistent Frida session (REPL).
Reuses a persistent session so hooks and state remain. Unlike inject_script, this creates a one-shot script, collects messages, and unloads without disturbing the session.
session_id: session id from frida_connect / frida_list_sessions.
js_code: JavaScript to evaluate. Use send() to return data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| js_code | Yes | ||
| runtime | No | ||
| parameters | No | ||
| auto_perform | No | ||
| exit_on_error | No |