白乐天

道阻且长,行则将至。

Frida工具系列

frida.exe

frida的使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Usage: frida [options] target

Options:
--version show program's version number and exit
-h, --help show this help message and exit
-D ID, --device=ID connect to device with the given ID
-U, --usb connect to USB device
-R, --remote connect to remote frida-server
-H HOST, --host=HOST connect to remote frida-server on HOST
-f FILE, --file=FILE spawn FILE
-F, --attach-frontmost
attach to frontmost application
-n NAME, --attach-name=NAME
attach to NAME
-p PID, --attach-pid=PID
attach to PID
--stdio=inherit|pipe stdio behavior when spawning (defaults to “inherit”)
--aux=option set aux option when spawning, such as “uid=(int)42”
(supported types are: string, bool, int)
--realm=native|emulated
realm to attach in
--runtime=qjs|v8 script runtime to use
--debug enable the Node.js compatible script debugger
--squelch-crash if enabled, will not dump crash report to console
-O FILE, --options-file=FILE
text file containing additional command line options
-l SCRIPT, --load=SCRIPT
load SCRIPT
-P PARAMETERS_JSON, --parameters=PARAMETERS_JSON
parameters as JSON, same as Gadget
-C CMODULE, --cmodule=CMODULE
load CMODULE
--toolchain=any|internal|external
CModule toolchain to use when compiling from source
code
-c CODESHARE_URI, --codeshare=CODESHARE_URI
load CODESHARE_URI
-e CODE, --eval=CODE evaluate CODE
-q quiet mode (no prompt) and quit after -l and -e
--no-pause automatically start main thread after startup
-o LOGFILE, --output=LOGFILE
output to log file
--eternalize eternalize the script before exit
--exit-on-error exit with code 1 after encountering any exception in
the SCRIPT

  • --version
    显示 frida 的版本号并退出。
  • -h,--help
    显示帮助信息,列出所有可用选项并退出。
  • -U, --usb
    通过 USB 连接到设备。
  • -H HOST, --host=HOST
    连接到指定 HOST 上的远程 frida-server。
  • -f FILE, --file=FILE
    spawn模式,启动指定的文件(启动一个新的进程并挂起)。
  • -F, --attach-frontmost
    attach模式,附加到前台运行的应用程序。
  • -n NAME, --attach-name=NAME
    附加到指定名称的应用程序。
  • -p PID, --attach-pid=PID
    附加到指定进程 ID 的应用程序。
  • -l SCRIPT, --load=SCRIPT
    加载指定的脚本文件。
  • --no-pause
    启动后自动启动主线程,通常配合-f选项使用。
  • -o LOGFILE, --output=LOGFILE
    将输出记录到指定的日志文件中。

frida-server

frida-server的使用

  • -l:指定监听地址,设置主机IP和端口。
  • --version:输出frida-server的版本信息。

frida-ps

列出当前正在运行的进程。

1
frida-ps -U