본문 바로가기
App hacking

[안드로이드]frida 재 설치 및 오류 해결 ''/system' not in /proc/mounts'

by m_.9m 2022. 5. 20.

 

frida 다운

https://github.com/frida/frida/releases

 

Releases · frida/frida

Clone this repo to build Frida. Contribute to frida/frida development by creating an account on GitHub.

github.com

 

모바일에 설치

 

adb로 설치

 

 

C:\Users\K1220>cd C:\Users\K1220\Downloads


C:\Users\K1220\Downloads>adb push frida-server-15.1.22-android-arm64 /data/local/tmp
frida-server-15.1.21-android-x86: 1 file pushed, 0 skipped. 110.2 MB/s (46277244 bytes in 0.400s)

C:\Users\K1220\Downloads>adb shell
d1x:/ $ su root
d1x:/ # cd /data/local/tmp
d1x:/data/local/tmp # chmod 755 frida-server-15.1.22-android-arm64
d1x:/data/local/tmp # mount -o rw,remount /system
mount: '/system' not in /proc/mounts
1|d1x:/data/local/tmp # mount -o rw,remount /
d1x:/data/local/tmp # mount -o rw,remount /system
mount: '/system' not in /proc/mounts

**'/system' not in /proc/mounts 이 오류가 떠도 해당 부분에 /system 이 없기때문에 발생한 것이기 때문에 '/'에 적용을해서 해당 부분이 사실 해결된것이다.

 


d1x:/data/local/tmp # cp frida-server-15.1.21-android-x86 /system/priv-app/
d1x:/data/local/tmp # cd /system/priv-app/

d1x:/system/priv-app # ./frida-server-15.1.22-android-arm64

 

 

아나콘다에서 실행확인