mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
6d5c64d215
Co-authored-by: Håvard Sørbø <havard@hsorbo.no>
16 lines
350 B
Python
16 lines
350 B
Python
import pprint
|
|
|
|
import frida
|
|
|
|
device = frida.get_usb_device()
|
|
|
|
appservice = device.open_service("xpc:com.apple.coredevice.appservice")
|
|
response = appservice.request(
|
|
{
|
|
"CoreDevice.featureIdentifier": "com.apple.coredevice.feature.listprocesses",
|
|
"CoreDevice.action": {},
|
|
"CoreDevice.input": {},
|
|
}
|
|
)
|
|
pprint.pp(response)
|