为什么我的custom.rc文件在执行frida-server时没有执行它?

问题描述 投票:0回答:1

我正在尝试在 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 没有启动。我不知道从这里该去哪里。

android android-emulator init frida
1个回答
0
投票

解决了!

仅使用时:

exec_background -- /system/bin/frida-server 

进程启动并正在运行。

© www.soinside.com 2019 - 2024. All rights reserved.