我正在尝试在 LDplayer Android 9 上启动时运行 frida-server。为此,我找到了这篇文章
我使用了 INIT 方法并创建了一个 custom.rc 文件:
#/etc/init/custom.rc
# execute the binary when boot is completed
on property:sys.boot_completed=1
write /data/local/tmp/here.txt here
exec_background u:r:magisk:s0 -- /system/bin/frida-server
设备已root,Frida-server 的 CHMODded 755,SElinux SetEnforce 为 0,重启后我可以看到here.txt 文件。所以RC文件正在被执行。
但是,frida-server 没有启动。我不知道从这里该去哪里。
解决了!
仅使用时:
exec_background -- /system/bin/frida-server
进程启动并正在运行。