├── .gitignore ├── Makefile ├── README.md ├── README_current.json ├── book.json ├── book_current.json └── src ├── README.md ├── SUMMARY.md ├── android_background ├── README.md ├── android_framework.md ├── apk_compile_process.md └── related_info │ ├── README.md │ ├── android_vm │ ├── README.md │ ├── art.md │ └── dalvik.md │ ├── apk_file.md │ ├── dex_file.md │ └── smali.md ├── android_crack_tool └── other_assistant_tool │ ├── README.md │ └── android_debugger │ └── README.md ├── android_protect ├── README.md ├── anti_analysis │ ├── README.md │ ├── add_shell │ │ ├── README.md │ │ ├── common_harden_method.md │ │ └── why_encrypt_harden.md │ └── code_obfuscation │ │ ├── README.md │ │ ├── obfuscator_llvm.md │ │ └── proguard.md ├── anti_debug │ └── README.md └── harden_history │ ├── README.md │ └── vmp.md ├── android_reverse └── README.md ├── appendix ├── README.md └── reference.md ├── assets ├── favicon.ico └── img │ ├── android_common_harden_tech_compare.jpg │ ├── android_compile_flow.png │ ├── apk_build_process.png │ ├── apk_compile_package_process.png │ ├── junkcode_deassembly_wrong_code.png │ ├── junkcode_decompile_fail_fill_payload.png │ ├── junkcode_origin_assembly_code.png │ ├── junkcode_switch_flow.png │ ├── jvm_vs_dvm_compile.png │ ├── jvm_vs_dvm_flow.png │ ├── llvm_core_arch_flow.png │ ├── re_common_deassembly_algorithm.png │ ├── smaliviewer_demo.png │ ├── vmp_code_procedure.jpg │ ├── vmp_design_compiler_flow.png │ ├── vmp_encrypt_theory.png │ ├── vmp_parse_flow.jpg │ └── vmp_protect_flow.jpg ├── intro └── README.md └── sub_tutorial └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include ../../common/honkit_makefile.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/README.md -------------------------------------------------------------------------------- /README_current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/README_current.json -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/book.json -------------------------------------------------------------------------------- /book_current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/book_current.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/android_background/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/README.md -------------------------------------------------------------------------------- /src/android_background/android_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/android_framework.md -------------------------------------------------------------------------------- /src/android_background/apk_compile_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/apk_compile_process.md -------------------------------------------------------------------------------- /src/android_background/related_info/README.md: -------------------------------------------------------------------------------- 1 | # 相关知识 2 | -------------------------------------------------------------------------------- /src/android_background/related_info/android_vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/related_info/android_vm/README.md -------------------------------------------------------------------------------- /src/android_background/related_info/android_vm/art.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/related_info/android_vm/art.md -------------------------------------------------------------------------------- /src/android_background/related_info/android_vm/dalvik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/related_info/android_vm/dalvik.md -------------------------------------------------------------------------------- /src/android_background/related_info/apk_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/related_info/apk_file.md -------------------------------------------------------------------------------- /src/android_background/related_info/dex_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/related_info/dex_file.md -------------------------------------------------------------------------------- /src/android_background/related_info/smali.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_background/related_info/smali.md -------------------------------------------------------------------------------- /src/android_crack_tool/other_assistant_tool/README.md: -------------------------------------------------------------------------------- 1 | # 其他辅助类工具 2 | -------------------------------------------------------------------------------- /src/android_crack_tool/other_assistant_tool/android_debugger/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/android_protect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/README.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/README.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/add_shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/add_shell/README.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/add_shell/common_harden_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/add_shell/common_harden_method.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/add_shell/why_encrypt_harden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/add_shell/why_encrypt_harden.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/code_obfuscation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/code_obfuscation/README.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/code_obfuscation/obfuscator_llvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/code_obfuscation/obfuscator_llvm.md -------------------------------------------------------------------------------- /src/android_protect/anti_analysis/code_obfuscation/proguard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_analysis/code_obfuscation/proguard.md -------------------------------------------------------------------------------- /src/android_protect/anti_debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/anti_debug/README.md -------------------------------------------------------------------------------- /src/android_protect/harden_history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/harden_history/README.md -------------------------------------------------------------------------------- /src/android_protect/harden_history/vmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_protect/harden_history/vmp.md -------------------------------------------------------------------------------- /src/android_reverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/android_reverse/README.md -------------------------------------------------------------------------------- /src/appendix/README.md: -------------------------------------------------------------------------------- 1 | # 附录 2 | 3 | 下面列出相关参考资料。 -------------------------------------------------------------------------------- /src/appendix/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/appendix/reference.md -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/android_common_harden_tech_compare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/android_common_harden_tech_compare.jpg -------------------------------------------------------------------------------- /src/assets/img/android_compile_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/android_compile_flow.png -------------------------------------------------------------------------------- /src/assets/img/apk_build_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/apk_build_process.png -------------------------------------------------------------------------------- /src/assets/img/apk_compile_package_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/apk_compile_package_process.png -------------------------------------------------------------------------------- /src/assets/img/junkcode_deassembly_wrong_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/junkcode_deassembly_wrong_code.png -------------------------------------------------------------------------------- /src/assets/img/junkcode_decompile_fail_fill_payload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/junkcode_decompile_fail_fill_payload.png -------------------------------------------------------------------------------- /src/assets/img/junkcode_origin_assembly_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/junkcode_origin_assembly_code.png -------------------------------------------------------------------------------- /src/assets/img/junkcode_switch_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/junkcode_switch_flow.png -------------------------------------------------------------------------------- /src/assets/img/jvm_vs_dvm_compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/jvm_vs_dvm_compile.png -------------------------------------------------------------------------------- /src/assets/img/jvm_vs_dvm_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/jvm_vs_dvm_flow.png -------------------------------------------------------------------------------- /src/assets/img/llvm_core_arch_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/llvm_core_arch_flow.png -------------------------------------------------------------------------------- /src/assets/img/re_common_deassembly_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/re_common_deassembly_algorithm.png -------------------------------------------------------------------------------- /src/assets/img/smaliviewer_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/smaliviewer_demo.png -------------------------------------------------------------------------------- /src/assets/img/vmp_code_procedure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/vmp_code_procedure.jpg -------------------------------------------------------------------------------- /src/assets/img/vmp_design_compiler_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/vmp_design_compiler_flow.png -------------------------------------------------------------------------------- /src/assets/img/vmp_encrypt_theory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/vmp_encrypt_theory.png -------------------------------------------------------------------------------- /src/assets/img/vmp_parse_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/vmp_parse_flow.jpg -------------------------------------------------------------------------------- /src/assets/img/vmp_protect_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/assets/img/vmp_protect_flow.jpg -------------------------------------------------------------------------------- /src/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/intro/README.md -------------------------------------------------------------------------------- /src/sub_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/android_app_security_crack/HEAD/src/sub_tutorial/README.md --------------------------------------------------------------------------------