(추가)
다음 명령어로 안드로이드 쉘에 접속한다.
$ adb shell
접속된 안드로이드 쉘에서 다음 명령을 실행하면 /system을 rw로 마운트 할 수 있다.
$ su -
# /system/bin/mount -o remount,rw /system
다시 read only로 바꾸려면 다음과 같은 명령어를 실행한다.
# /system/bin/mount -o remount,ro /system
출처: https://dcmru.tistory.com/2511061 [Everything is possible]
$ adb shell android $ cp /data/app/com.nianticlabs.pokemongo-1/base.apk /sdcard/
이제 복사할 수 있는 영역으로 넘어 간 것이다.
adb를 빠져나와 다음과 같이 명령을 실행하면 된다.
$ adb pull /sdcard/base.apk
본인도 갤럭시7이 테스트 기기인데 동일한 접근 제한이 걸려서 해당 방법으로 기기 내 파일을 추출함
cp /data/data/~~/~file~/ /sdcard
adb pull /sdcard/~file/ E:\test
'모바일' 카테고리의 다른 글
Swift 프로젝트에서 Objective-C 코드 반영 (0) | 2020.12.19 |
---|---|
모바일 인증서 설치 (0) | 2020.12.08 |
Arbitrary code execution on Facebook for Android (0) | 2020.10.20 |
Android Anti-debugging 소스 코드 (0) | 2020.09.21 |
안드로이드 NDK 란? (0) | 2020.09.21 |