Android Reverse Engineering & API Extraction — Claude Code s...#1970
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
Android Reverse Engineering & API Extraction — Claude Code s...#1970carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/SimoneAvogadro/android-reverse-engineering-skill Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> Android Applications Pentesting (add a subsection like "Static reversing to extract backend APIs (Retrofit/OkHttp)" or extend existing reversing-related pages such as "APK decompilers" / "Manual DeObfuscation" with multi-decompiler differential analysis + API endpoint extraction patterns)". 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
Title/Type: Android Reverse Engineering & API Extraction — Claude Code skill is a Claude Code plugin/skill that automates static reverse engineering of Android artifacts (APK/XAPK/JAR/AAR) to extract and document the HTTP API surface used by an app (Retrofit/OkHttp, hardcoded URLs, auth headers/tokens) without having the app’s source code.
Primary security value (impact):🔧 Technical Details
Multi-decompiler differential analysis: Decompile the same Android artifact with different engines (jadx vs Fernflower/Vineflower) and compare outputs using
decompile.sh --engine both. This helps recover clearer control flow/types when one decompiler mis-recovers constructs. Pair with--deobfto improve readability when code is obfuscated by ProGuard/R8.Static HTTP API surface extraction from decompiled sources: After decompilation, scan recovered sources to enumerate the app’s HTTP interface by identifying (a) Retrofit interface annotations/endpoints, (b) OkHttp request builders/call sites, (c) hardcoded base URLs, and (d) auth material such as headers/tokens. Use
find-api-calls.shwith focused modes like--retrofitand--urlsagainstoutput/sources/to quickly isolate these patterns.Call-flow reconstruction for accurate request reproduction:🤖 Agent Actions
Summary: Added a new static reversing subsection covering multi-decompiler diffing, API surface extraction (Retrofit/OkHttp/URLs/auth), call-flow tracing, plus a brief tool workflow example and reference.
File updated:
src/mobile-pentesting/android-app-pentesting/README.mdTests: Not run (not requested).
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.