APKShield-PT AI-Powered Android Penetration Testing Tool for...#2241
Open
carlospolop wants to merge 1 commit into
Open
APKShield-PT AI-Powered Android Penetration Testing Tool for...#2241carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/Whitehat987/apkshield-pt Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting > Android Applications Pentesting > Android Anti Instrumentation And SSL Pinning Bypass / Frida Tutorial". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
APKShield-PT is a GitHub-hosted Android penetration testing tool designed for authorized mobile security assessments. It automates APK reverse engineering, identifies client-side protections such as root detection and SSL/TLS certificate pinning, and generates ready-to-use Frida bypass scripts tailored to the exact protections found in the target APK.
This is not a CVE-specific exploit. It is a dual-use Android assessment framework that helps teste...
🔧 Technical Details
Automated Android protection discovery: A practical mobile testing workflow is to decompile an APK with
apktoolfor smali/resources andjadxfor Java source, then scan both outputs for known protection patterns. This lets a tester map concrete code artifacts, libraries, XML configuration, or API usage to the correct dynamic-instrumentation bypass instead of manually reading the entire application.Targeted Frida bypass generation: Instead of using a generic all-purpose bypass script, generate hooks only for the protection mechanisms actually present in the APK. APKShield-PT outputs
master_bypass.jsas an all-in-one script and specialized scripts such asroot_bypass.js,ssl_bypass.js,safetynet_bypass.js,frida_detection_bypass.js, and optionallycustom_bypass.js. This approach improves reliability because Frida hooks are selected based ...🤖 Agent Actions
Done.
Updated:
src/mobile-pentesting/android-app-pentesting/android-anti-instrumentation-and-ssl-pinning-bypass.mdWhat I added:
apktool+jadxWhy this file:
Validation:
## ReferencessectionThis PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.