commands.sh

frida

all

A dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers.

More info →

Options (4)

-U, --usbboolean

Start the interactive shell attached to a process over USB

Example: frida {{[-U|--usb]}} {{process_name}}
-p, --attach-pidboolean

Attach to a running process by its PID

Example: frida {{[-p|--attach-pid]}} {{pid}}
-l, --loadboolean

Load a JavaScript script into a process

Example: frida {{[-l|--load]}} {{path/to/script.js}} {{process_name}}
-c, --codeshareboolean

Load a script from Frida Codeshare <https://codeshare.frida.re/>

Example: frida {{[-c|--codeshare]}} {{script_name}} {{process_name}}

Examples (5)

Start the interactive shell (REPL) attached to a running process

frida process_name

Start the interactive shell attached to a process over USB

frida [-U|--usb] process_name

Attach to a running process by its PID

frida [-p|--attach-pid] pid

Load a JavaScript script into a process

frida [-l|--load] path/to/script.js process_name

Load a script from Frida Codeshare <https://codeshare.frida.re/>

frida [-c|--codeshare] script_name process_name
made by @shridhargupta | data from tldr-pages