Skip to content

Commit 9e7e308

Browse files
authored
Added Packing and Protection category
1 parent 7d96f16 commit 9e7e308

File tree

1 file changed

+48
-12
lines changed

1 file changed

+48
-12
lines changed

README.md

Lines changed: 48 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ A collection of github repositories related to android modding.
1111
# Categories
1212
- [Mod Menu Templates](https://github.com/jbro129/android-modding#mod-menu-templates)
1313
- [Dumping and Unpacking](https://github.com/jbro129/android-modding#dumping-and-unpacking)
14+
- [Packing and Protection](https://github.com/jbro129/android-modding#packing-and-protection)
1415
- [C++ Libraries](https://github.com/jbro129/android-modding#c-libraries)
1516
- [Hooking Libraries and Templates](https://github.com/jbro129/android-modding#hooking-libraries-and-templates)
1617
- [Modding Projects and Tutorials](https://github.com/jbro129/android-modding#modding-projects-and-tutorials)
@@ -137,6 +138,53 @@ A collection of github repositories related to android modding.
137138
[dexdump](https://github.com/smartdone/dexdump) by smartdone : Xposed plug-in for quick release of the first generation shell.
138139

139140

141+
# Packing and Protection
142+
143+
[Obfuscapk](https://github.com/ClaudiuGeorgiu/Obfuscapk) by ClaudiuGeorgiu : An automatic obfuscation tool for Android apps.
144+
145+
[ApkEncryptor](https://github.com/espmihacker/ApkEncryptor) by espmihacker : A android app for encrypting apk.
146+
147+
[AndResGuard](https://github.com/shwenzhang/AndResGuard) by shwenzhang : Proguard resource for Android by wechat team.
148+
149+
[AabResGuard](https://github.com/bytedance/AabResGuard) by bytedance : Android app bundle resource obfuscation tool.
150+
151+
[ApkToolPlus](https://github.com/linchaolong/ApkToolPlus) by linchaolong : An apk reverse analysis tool (a apk analysis tools).
152+
153+
[dexknife-wj](https://github.com/godlikewangjun/dexknife-wj) by godlikewangjun : APK reinforcement plug-in with signature verification, dex encryption, resource obfuscation.
154+
155+
[anti_Android](https://github.com/TUGOhost/anti_Android) by TUGOhost : Protect Android App anti any attacks and environments.
156+
157+
[AntiDebugandMemoryDump](https://github.com/darvincisec/AntiDebugandMemoryDump) by darvincisec : Anti-Debug and Anti-Memory Dump for Android.
158+
159+
[DetectFrida](https://github.com/darvincisec/DetectFrida) by darvincisec : Detect Frida for Android.
160+
161+
[Oo0Proguard](https://github.com/L-JINBIN/Oo0Proguard) by L-JINBIN : Modified version of Proguard, the obfuscated class name is Oo0 combination.
162+
163+
[KiwiApkProtect](https://github.com/iKiwiSec/KiwiApkProtect) by iKiwiSec : encryption for mobile android applications.
164+
165+
[Bangcle](https://github.com/woxihuannisja/Bangcle) by woxihuannisja : The second generation Android Hardening Protection.
166+
167+
[StormJiagu](https://github.com/codingsf/StormJiagu) by codingsf : Android Dex Protector.
168+
169+
[BlackObfuscator](https://github.com/CodingGay/BlackObfuscator) by CodingGay : An obfuscator for Android APK DexFile.
170+
171+
[BlackObfuscator-ASPlugin](https://github.com/CodingGay/BlackObfuscator-ASPlugin) by CodingGay : This project is an Android Studio plugin version of BlackObfuscator, it supports obfuscating code automatically.
172+
173+
[skidfuscator-java-obfuscator](https://github.com/terminalsin/skidfuscator-java-obfuscator) by terminalsin : Public proof-of-concept obfuscator using the MapleIR framework designed by cts & bibl.
174+
175+
[yGuard](https://github.com/yWorks/yGuard) by yWorks : The open-source Java obfuscation tool working with Ant and Gradle.
176+
177+
[paranoid](https://github.com/MichaelRocks/paranoid) by MichaelRocks : String obfuscator for Android applications.
178+
179+
[Enigma](https://github.com/christopherney/Enigma) by christopherney : Gradle Plugin - Obfuscator String Encryption (Android/Java).
180+
181+
[Obfuscate](https://github.com/adamyaxley/Obfuscate) by adamyaxley : Guaranteed compile-time string literal obfuscation header-only library for C++14.
182+
183+
[cpp11-compile-time-string-obfuscation](https://github.com/Rednick16/cpp11-compile-time-string-obfuscation) by Rednick16 : a mini project to obfuscate strings/hex and const char strings/objective c strings.
184+
185+
[nmmp](https://github.com/maoabc/nmmp) by maoabc : dex-vm used to protect the android classes.dex file.
186+
187+
140188
# C++ Libraries
141189

142190

@@ -424,10 +472,6 @@ A collection of github repositories related to android modding.
424472

425473
[Android-Mem-Edit](https://github.com/mrcang09/Android-Mem-Edit) by mrcang09 : Android memory plug-in, a memory modification tool for application processes.
426474

427-
[Obfuscapk](https://github.com/ClaudiuGeorgiu/Obfuscapk) by ClaudiuGeorgiu : An automatic obfuscation tool for Android apps.
428-
429-
[KiwiApkProtect](https://github.com/iKiwiSec/KiwiApkProtect) by iKiwiSec : encryption for mobile android applications.
430-
431475
[DLGMemor](https://github.com/DeviLeo/DLGMemor) by DeviLeo : A memory editor and viewer for iOS (Jailed or not Jailed).
432476

433477
[AssetStudio](https://github.com/Perfare/AssetStudio) by Perfare : A tool for exploring, extracting and exporting assets and assetbundles.
@@ -484,10 +528,6 @@ A collection of github repositories related to android modding.
484528

485529
[tinker](https://github.com/Tencent/tinker) by Tencent : A hot-fix solution library for Android, it supports dex, library and resources update without reinstall apk.
486530

487-
[AndResGuard](https://github.com/shwenzhang/AndResGuard) by shwenzhang : Proguard resource for Android by wechat team.
488-
489-
[ApkToolPlus](https://github.com/linchaolong/ApkToolPlus) by linchaolong : An apk reverse analysis tool (a apk analysis tools).
490-
491531
[AutoAPKTool](https://github.com/TheArmKing/AutoAPKTool) by TheArmKing : A bash based script that helps you decompile, recompile, signs apks.
492532

493533
[AutoSmali](https://github.com/TheArmKing/AutoSmali) by TheArmKing : A simple script that automatically adds your smali popup code for your APK Mods.
@@ -520,8 +560,6 @@ A collection of github repositories related to android modding.
520560

521561
[intellij-java2smali](https://github.com/ollide/intellij-java2smali) by ollide : A plugin for IntelliJ IDEA & Android Studio to easily compile Java & Kotlin files to smali.
522562

523-
[ApkEncryptor](https://github.com/espmihacker/ApkEncryptor) by espmihacker : A android app for encrypting apk.
524-
525563
[XAPKDetector](https://github.com/horsicq/XAPKDetector) by horsicq : APK/DEX detector for Windows, Linux and MacOS.
526564

527565
[CppDLL](https://github.com/Rprop/CppDLL) by Rprop : A small tool that will help you generate Cpp Header(.h) and Import Library(.lib) from Dynamic Link Library(.dll).
@@ -696,8 +734,6 @@ A collection of github repositories related to android modding.
696734

697735
[apkeep](https://github.com/EFForg/apkeep) by EFForg : A command-line tool for downloading APK files from various sources.
698736

699-
[cpp11-compile-time-string-obfuscation](https://github.com/Rednick16/cpp11-compile-time-string-obfuscation) by Rednick16 : a mini project to obfuscate strings/hex and const char strings/objective c strings.
700-
701737
[MobileApp-Pentest-Cheatsheet](https://github.com/tanprathan/MobileApp-Pentest-Cheatsheet) by tanprathan : The Mobile App Pentest cheat sheet was created to provide concise collection of high value information on specific mobile application penetration testing topics.
702738

703739
[GGInjector](https://github.com/saiaapiz14/GGInjector) by saiaapiz14 : Inject shared library by using GameGuardian.

0 commit comments

Comments
 (0)