frida与objection对应版本

不定时更新,博主用到时会来这里新增版本对应

# frida 12.8.0
pip install frida==12.8.0
pip install frida-tools==5.3.0
pip install objection==1.8.4


# 附赠frida联机秘籍一份


# 从usb设备连接frida-server,参数0表示不限等待时间,没有这个参数容易出现找不到设备
# device = frida.get_usb_device(0)

# 从TCP连接frida-server,指定IP和端口
# device = frida.get_device_manager().add_remote_device("192.168.31.176:8002")

# 以spawn方式启动app并在最早时机阻塞,后续可通过attach后resume恢复app执行流程
# pid = device.spawn(["test"])
# session = device.attach(pid)
# session = device.attach("com.eg.android.AlipayGphone")
# device.resume(pid)

# attach附加不影响app执行流程,get_frontmost_application可以获取到最前台的app,懒得去找进程号进程名
# app = device.get_frontmost_application()
# session = device.attach(app.pid)
posted @ 2020-10-28 11:01  DXCyber409  阅读(619)  评论(0编辑  收藏  举报