mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
10 lines
233 B
Python
10 lines
233 B
Python
import pprint
|
|
|
|
import frida
|
|
|
|
device = frida.get_usb_device()
|
|
|
|
deviceinfo = device.open_service("dtx:com.apple.instruments.server.services.deviceinfo")
|
|
response = deviceinfo.request({"method": "runningProcesses"})
|
|
pprint.pp(response)
|