Class

FridaSessionOptions

Description [src]

final class Frida.SessionOptions : GObject.Object
{
  /* No available fields */
}

Options controlling how frida_device_attach() sets up a FridaSession.

Ancestors

Constructors

frida_session_options_new

Creates a new FridaSessionOptions.

Instance methods

frida_session_options_clear_linker_notifier_offsets

Clears the configured linker notifier offsets.

frida_session_options_add_linker_notifier_offset

Adds a linker notifier offset, used to detect module load and unload events in the target.

frida_session_options_enumerate_linker_notifier_offsets

Invokes func for each configured linker notifier offset.

frida_session_options_get_realm

The realm to attach in.

frida_session_options_set_realm

The realm to attach in.

frida_session_options_get_persist_timeout

How long the session may survive a disconnection before being torn down, in seconds; 0 disables persistence.

frida_session_options_set_persist_timeout

How long the session may survive a disconnection before being torn down, in seconds; 0 disables persistence.

frida_session_options_get_emulated_agent_path

Path to a custom agent to use in the emulated realm.

frida_session_options_set_emulated_agent_path

Path to a custom agent to use in the emulated realm.

frida_session_options_get_exceptor

How the agent should handle exceptions in the target.

frida_session_options_set_exceptor

How the agent should handle exceptions in the target.

frida_session_options_get_unwind_broker

Whether to install the unwind broker so exceptions can propagate through instrumented code.

frida_session_options_set_unwind_broker

Whether to install the unwind broker so exceptions can propagate through instrumented code.

frida_session_options_get_exit_monitor

Whether to monitor the target for exit so the session is cleaned up.

frida_session_options_set_exit_monitor

Whether to monitor the target for exit so the session is cleaned up.

frida_session_options_get_thread_suspend_monitor

Whether to monitor thread suspension in the target.

frida_session_options_set_thread_suspend_monitor

Whether to monitor thread suspension in the target.

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Properties

Frida.SessionOptions:realm

The realm to attach in.

Frida.SessionOptions:persist-timeout

How long the session may survive a disconnection before being torn down, in seconds; 0 disables persistence.

Frida.SessionOptions:emulated-agent-path

Path to a custom agent to use in the emulated realm.

Frida.SessionOptions:exceptor

How the agent should handle exceptions in the target.

Frida.SessionOptions:unwind-broker

Whether to install the unwind broker so exceptions can propagate through instrumented code.

Frida.SessionOptions:exit-monitor

Whether to monitor the target for exit so the session is cleaned up.

Frida.SessionOptions:thread-suspend-monitor

Whether to monitor thread suspension in the target.

Signals

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct FridaSessionOptionsClass {
  /* no available fields */
}

No description available.