mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
24 lines
489 B
Python
24 lines
489 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
import frida
|
|
|
|
|
|
def on_process_crashed(crash):
|
|
print("on_process_crashed")
|
|
print("\tcrash:", crash)
|
|
|
|
def on_detached(reason, crash):
|
|
print("on_detached()")
|
|
print("\treason:", reason)
|
|
print("\tcrash:", crash)
|
|
|
|
device = frida.get_usb_device()
|
|
device.on('process-crashed', on_process_crashed)
|
|
session = device.attach("Hello")
|
|
session.on('detached', on_detached)
|
|
print("[*] Ready")
|
|
sys.stdin.read()
|