RedAlert Trojan Campaign Fake Emergency Alert App Spread via...#1962
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
RedAlert Trojan Campaign Fake Emergency Alert App Spread via...#1962carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.cloudsek.com/blog/redalert-trojan-campaign-fake-emergency-alert-app-spread-via-sms-spoofing-israeli-home-front-command Content Categories: Based on the analysis, this content was categorized under "📱 Mobile Pentesting -> Android Applications Pentesting (new page/subsection around 'Android anti-tamper / signature spoofing / PackageManager (IPackageManager) hooking' and/or 'Dynamic code loading via ApplicationInfo sourceDir/publicSourceDir rewriting')". 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 (what is happening)
CloudSEK describes a smishing (SMS phishing) Android espionage campaign that weaponizes wartime urgency by distributing a trojanized “Red Alert” emergency-alert app that impersonates Israel’s Home Front Command app. The delivery is designed to bypass the legitimate distribution channel (Google Play), convincing victims to sideload a malicious APK from attacker-controlled links (including bit.ly shorteners). The malicious app keeps a fully fun...
🔧 Technical Details
PackageManager hook for signature + installer spoofing: Replace
android.app.ActivityThread’ssPackageManager/mPMwith a Java dynamic proxy (Proxy.newProxyInstance) so allIPackageManagercalls flow throughinvoke(). InterceptgetPackageInfoand return attacker-chosen signing certificate data (decoded from an embedded Base64 blob) to defeat signature/tamper checks. InterceptgetInstallerPackageNameand always returncom.android.vendingso a sideloaded APK appears Play-installed to policies/heuristics.Hardcoded certificate blob format to feed anti-tamper logic: Embed an X.509 DER certificate and a small header parsed via
DataInputStream(e.g., first byte = number of signatures; next 4 bytes = cert length). This lets malware precisely control what certificate is “reported” to integrity checks without changing the actual APK signing ident...🤖 Agent Actions
Summary
Files Updated
src/mobile-pentesting/android-app-pentesting/android-package-manager-hooking-and-dynamic-loading.mdsrc/mobile-pentesting/android-app-pentesting/README.mdTests
If you want, I can also cross-link this from other Android malware analysis–oriented pages or add a short detection checklist section.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.