MiningDropper – A Global Modular Android Malware Campaign Op...#2150
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
MiningDropper – A Global Modular Android Malware Campaign Op...#2150carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://cyble.com/blog/miningdropper-global-modular-android-malware/ Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> Android Applications Pentesting (new page or subsection on: Multi-stage droppers, DexClassLoader dynamic loading, runtime decryption/key-derivation, anti-emulation/root checks)". 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 / context
Cyble Research and Intelligence Labs (CRIL) reports a surge (April 15, 2026) of MiningDropper (aka BeatBanker), a multi-stage, modular Android dropper framework used at scale to deploy (a) a cryptocurrency miner and/or (b) secondary payloads (infostealers, banking trojans, RATs). A key focus is a campaign where the final “user-defined” payload is BTMOB RAT (previously identified by Cyble in February 2024 as a SpySolr<...
🔧 Technical Details
2) Filename-derived AES keys to avoid static key extraction: Instead of hardcoding AES keys, derive them from the asset name at runtime (e.g.,
key = first_16_bytes(SHA1(filename))orkey = first_16_bytes(SHA1(filename + "1"))). This forces analysts to reproduce the naming/key-derivation logic to decrypt the next stage rather than simply grepping constants.3) Config-driven, stateful multi-payload delivery: Use encrypted configuration files (decrypted at runtime) to select between multiple payload modes (e.g., miner first, then “user-...
🤖 Agent Actions
I’m mapping the mobile/Android section first, then I’ll read the closest existing pages to avoid duplicating content and pick a single file for the update.
I’ve narrowed this to Android app pentesting pages. Next I’m reading the existing Android reversing/deobfuscation and abuse pages to check whether the dropper techniques are already documented and to find the cleanest single insertion point.
The overlap check shows the repo already covers adjacent pieces, but not this exact loader chain: native XOR string recovery, filename-derived AES keying, staged
DexClassLoaderhops, encrypted split reconstruction, and fake-update gating in one Android dropper pattern. I’m validating the existing README tail now so I can append this cleanly without breaking its structure.The best fit is the existing Android applications README, specifically its “Android malware tradecraft” block. I’m adding one compact subsection there so the techniques live with adjacent loader and anti-analysis content instead of scattering them across reversing, phishing, and accessibility pages.
The content is in place. I’m re-reading the modified section and the tail references now to confirm the update stayed in one file, kept the HackTricks style, and didn’t create duplicate or malformed markdown.
Updated README.md in
src/mobile-pentesting/android-app-pentesting/with a new subsection under the existing Android malware tradecraft area.The addition abstracts the useful technique from the blog instead of documenting the malware family itself: native bootstrap + runtime XOR string recovery, root/emulator gating, staged
DexClassLoaderexecution, filename-derived AES keying (SHA1(filename)[:16]/ suffix variant), config-driven split payload reconstruction, and fake update UI as background unpacking cover. I also added concise triage points and a small Frida hook example, then appended the Cyble blog and trojanized LumoLight project to the file’s final## Referencessection.Verification: only this one file changed, the markdown structure remains valid on inspection, and the references section is still at the end of the file.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.