增加frida常用脚本

This commit is contained in:
xishandong 2023-10-19 23:41:37 +08:00
parent 125646f2ee
commit 8c0d6dde4f
3 changed files with 11 additions and 0 deletions

View 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)