Linux command
frida-ps 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
List
frida-ps
List
frida-ps -U
List
frida-ps -Ua
List
frida-ps -Uai
List
frida-ps -D [device_id]
Connect
frida-ps -H [192.168.1.100]
说明
frida-ps is a command-line tool for listing processes, part of the Frida dynamic instrumentation toolkit. It functions similarly to the Unix ps command but is designed to work with both local and remote devices (USB-connected phones, remote frida-server instances). It can list all running processes or filter to only applications, including installed but not running ones.
参数
- -a, --applications
- List only applications, not all system processes.
- -i, --installed
- Include all installed applications (requires -a).
- -U, --usb
- Connect to USB device.
- -R, --remote
- Connect to remote frida-server.
- -H _HOST_, --host _HOST_
- Connect to remote frida-server on HOST.
- -D _ID_, --device _ID_
- Connect to device with the given ID.
- --certificate _CERTIFICATE_
- Speak TLS with HOST, expecting CERTIFICATE.
- --origin _ORIGIN_
- Connect to remote server with Origin header set to ORIGIN.
- --token _TOKEN_
- Authenticate with HOST using TOKEN.
- --keepalive-interval _INTERVAL_
- Set keepalive interval in seconds, or 0 to disable.
- -O _FILE_, --options-file _FILE_
- Text file containing additional command-line options.
FAQ
What is the frida-ps command used for?
frida-ps is a command-line tool for listing processes, part of the Frida dynamic instrumentation toolkit. It functions similarly to the Unix ps command but is designed to work with both local and remote devices (USB-connected phones, remote frida-server instances). It can list all running processes or filter to only applications, including installed but not running ones.
How do I run a basic frida-ps example?
Run `frida-ps` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -a, --applications do in frida-ps?
List only applications, not all system processes.