PulseAPK Core GUI workflow for APK decompilation, Smali rule...#2007
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
PulseAPK Core GUI workflow for APK decompilation, Smali rule...#2007carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/deemoun/PulseAPK-Core Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> Android Applications Pentesting (new subsection: "Smali static analysis / rule-based hunting" or add under existing "Smali - Decompiling, Modifying, Compiling" with a section on regex+context heuristics for root/emulator/secret detection)". 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
What this repository is
PulseAPK Core is an open-source, cross-platform GUI built with Avalonia on .NET 8 that orchestrates a typical Android reverse-engineering workflow: APK decompile → static analysis on Smali → rebuild → optional signing. It is a hacking / reverse-engineering tool (not a CVE write-up) whose security value is operational: it helps analysts quickly locate anti-analysis logic (root/emulator detection) and potential sensitive-data issues (e...
🔧 Technical Details
Rule-driven Smali hunting: After decompiling an APK with apktool, scan Smali line-by-line with regex rules that match suspicious API usage/strings (e.g.,
Runtime.getRuntime().exec("su"), root package names, emulator system properties likero.kernel.qemu, emulator fingerprints/brands/models). Reduce false positives by adding lightweight context requirements ("within N lines" of checks such asFile;->exists,PackageManager;->getPackageInfo, or string comparisons like->equals/->contains/->startsWith).Noise suppression by namespace: Mark or suppress matches in common third-party library prefixes (e.g.,
Landroidx/,Lkotlin/,Lcom/google/,Lokhttp3/) so reports focus on app-owned code paths, which is typically where anti-analysis logic and embedded secrets are actionable.Hardcoded-secret proximity heuristic: Identif...
🤖 Agent Actions
Summary
Updated
src/mobile-pentesting/android-app-pentesting/smali-changes.mdwith a new “Smali Static Analysis / Rule-Based Hunting” section capturing rule-driven Smali scanning, library filtering, and context-based heuristics, plus added PulseAPK references.Tests
Not run (documentation-only change).
Next Steps
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.