본문 바로가기

apk3

안드로이드 소스 디컴파일 - Apk to jar ◈ Apk to jar 1. apk 파일 확장자를 zip으로 변경 후 압축 해제. test.apk —> test.apk.zip 2. Dex to jar github.com/pxb1988/dex2jar Table - Download to sf link Extract zip ( dex2jar-2.0.zip ) Command Execute : Dex to jar sh d2j-dex2jar.sh -f ~/path/to/apk_to_decompile.apk d2j-dex2jar.bat -f ~/path/to/apk_to_decompile.apk ◈ Apk to jar 1. http://java-decompiler.github.io/#jd-gui-download 2. Jd ui에서 jar 로드 ◈ AndroidMa.. 2019. 10. 21.
apk decompile (apk to jar) # apk to jar 1. apk 파일 확장자를 zip으로 변경한 후 압축을 해제한다. 2. classes_dex2jar.jar 파일을 이용하여 classes.dex파일을 jar로 디컴파일한다. - 다운경로 : https://github.com/pxb1988/dex2jar - 실행 : d2j-dex2jar.bat test.apk - 결과 : test.jar 생성 3. jd ui download - 다운경로 : http://java-decompiler.github.io/#jd-gui-download - 실행 : jd ui에서 test.jar 로드 # AndroidMainfest.xml 추출 - AXMLPrinter2.jar를 이용하여 바이너리화된 AndroidMainfest.xml파일을 디컴파일한다. -.. 2019. 7. 16.
android apk decompile 방법 ★ 설정 프로그램압축 가. apk 추출 방법1. ES 파일탐색기에서 프로그램 백업을 통해 apk를 추출할 수 있다. 방법2. adb 를 이용 1. android sdk 설치 선행조건 : android sdk가 설치되어있어야한다.( http://developer.android.com/sdk/index.html ) ※ 참고 : http://eaglos.tistory.com/8 2. Win+R(실행) : cmd [ adb 사용법 : http://developer.android.com/tools/help/adb.html ] adb devices : 연결된 장치 목록을 보여줍니다. adb -s 시리얼번호 명령어 adb -s 시리얼번호 shell c:\> adb shell shell@c1skt:/ $ pm list.. 2015. 1. 2.