Conventional Test (d)

log里看到有检测到 Bootloader unlocked

image

BL 未锁定

Conventional Test (c)

Found root shell

image

68da794d877e:/data/data # ls -l /dev/pts
total 0
crw------- 1 root  root  136,   0 2025-10-31 17:33 0
crw------- 1 shell shell 136,   1 2025-10-31 19:15 1
crw------- 1 shell shell 136,   2 2025-10-31 17:35 2
crw------- 1 root  root  136,   3 2025-10-31 19:15 3
crw-rw-rw- 1 root  root    5,   2 2025-10-31 19:15 ptmx

显而易见 改成shell用户组即可

crw-rw-rw- 1 root  root    5,   2 2025-10-31 19:15 ptmx
68da794d877e:/data/data # chown shell:shell /dev/pts/0 /dev/pts/3                                                                                                        
68da794d877e:/data/data # ls -l /dev/pts                                                                                                                                 
total 0
crw------- 1 shell shell 136,   0 2025-10-31 17:33 0
crw------- 1 shell shell 136,   1 2025-10-31 19:17 1
crw------- 1 shell shell 136,   2 2025-10-31 17:35 2
crw------- 1 shell shell 136,   3 2025-10-31 19:17 3
crw-rw-rw- 1 root  root    5,   2 2025-10-31 19:17 ptmx

image

Conventional Tests (8)

https://bbs.kanxue.com/thread-285106-1.htm

image

image