mirror of
https://github.com/xishandong/Android_reverse.git
synced 2024-11-25 16:26:35 +08:00
增加frida常用脚本
This commit is contained in:
parent
125646f2ee
commit
8c0d6dde4f
11
Frida常用以及框架脚本/查看当前运行.py
Normal file
11
Frida常用以及框架脚本/查看当前运行.py
Normal file
@ -0,0 +1,11 @@
|
||||
import frida
|
||||
|
||||
rdev = frida.get_remote_device()
|
||||
print(rdev)
|
||||
|
||||
processes = rdev.enumerate_processes()
|
||||
for process in processes:
|
||||
print(process)
|
||||
|
||||
front_app = rdev.get_frontmost_application()
|
||||
print(front_app)
|
Loading…
Reference in New Issue
Block a user