Fake ‘RedAlert’ Emergency App Spreads Spyware via SMS Spoofing, Targeting Israeli Civilians Amid Conflict

During active conflicts, civilians depend on official alert systems for safety. Unfortunately, cyber threat actors are now weaponizing that fear. A malicious trojanized Android application, impersonating a trusted emergency alert app, has been spreading via SMS spoofing, masquerading as official notifications from the Israeli Home Front Command.

This blog provides a deep technical analysis of the attack campaign, malware architecture, exploitation techniques, and mitigation strategies based on CloudSEK’s threat research.


1. Background: The RedAlert App & Threat Context

The legitimate Red Alert app is a civilian emergency alert system used to notify residents about incoming threats such as rocket attacks. It has a clean function: receive push alerts and show notifications. Threat actors exploited this trust by sending SMS messages spoofed to appear from official channels, tricking users into installing a fake version of the app outside of the Google Play Store.

This attack falls under smishing (SMS phishing), where attackers lure victims to install sideloaded APKs by triggering panic and urgency.


2. Threat Delivery: SMS Spoofing & Social Engineering

SMS Spoofing

Attackers used SMS spoofing techniques to make messages appear as if coming from the official “Home Front Command” number or brand:

  • The sender ID is falsified using SMS gateway manipulation.
  • The message urges victims to “update to the latest version” due to heightened threat conditions.
  • A single click opens a malicious installation link pointing to a rogue APK.

This bypasses app trust models since Google Play is not involved and default Android prohibits sideloading only unless the user explicitly enables it.

Social Engineering Impact
Because this appears to be an urgent safety update during conflict, victims often disable default security checks to install the app. This underscores the significance of combining social engineering with technical delivery.


3. Malware Architecture: Multi-Stage Trojan Execution

The trojanized app is not merely a fake UI — it includes a multistage infection chain:

Stage 1: Loader + Cloaking

The first layer of the app:

  • Hooks Android Package Manager (IPackageManager) to spoof its signing certificate.
  • Makes the app appear installed from the Google Play Store.
  • Extracts an embedded payload from the assets folder.

This allows it to evade signature checks and initial detection.

Stage 2: Hidden Intermediate Payload

A secondary component in the assets directory is dynamically loaded as a Dalvik Executable (DEX):

  • Loaded via reflection, hidden from static scans.
  • Serves as the middleman to the real malicious logic.

This method dodges traditional static scanners.

Stage 3: Core Spyware Payload

The final module executes the actual malware behavior:

  • Reads SMS inboxes (READ_SMS).
  • Harvests contacts (READ_CONTACTS).
  • Tracks real-time GPS location (ACCESS_FINE_LOCATION).
  • Continually exfiltrates stolen data via network.

This pattern makes the malware a spyware + data exfiltration agent rather than a simple nuisance Trojan.


4. Technical Features & Abilities

Signature Spoofing & Cloaking

The malware abuses Android reflection and proxying techniques:

  • Pretends its own signing certificate matches that of the original app.
  • Tricks security tools by returning hardcoded signatures.
  • Fakes installer identity (getInstallerPackageName() returns Play Store ID).

This sophisticated anti-analysis technique masks the malicious nature of the app during inspection.


5. Runtime Behavior & Exfiltration

Once installed and permissions are granted:

  • A background thread constantly polls permission statuses.
  • The malware stores collected data locally.
  • Transmits information in depth using HTTP POST to Command & Control (C2) servers.
  • Communication infrastructure leverages cloud services (e.g., Cloudflare/AWS) to obfuscate attacker infrastructure.

This constant data exfiltration loop makes the malware persistently invasive.


Strategic & Operational Risks

This campaign is more than data theft:

1. Location Tracking During War

The real-time GPS data of users under attack can be used to detect:

  • Civilian concentration areas.
  • Shelter locations.
  • Movements of defense personnel.

This elevates the malware from cybercrime to information warfare.

2. SMS Interception

Attackers can bypass two-factor authentication systems that rely on SMS. This enables deeper compromise of critical online accounts.

3. Trust Erosion

Citizens losing faith in emergency apps can lead to serious safety consequences — especially in high-risk environments.


6. Indicators of Compromise (IOCs)

The following patterns and artifacts are associated with the campaign:

  • Malicious APK named RedAlert.apk.
  • Communications to C2 like api.ra-backup[.]com/analytics/submit.php.
  • Identified IPs hosted via AWS/Cloudflare proxies.

7. Mitigation & Best Practices

Device Level

  • Revoke any elevated permissions granted to untrusted apps.
  • Use device settings to disable installation from unknown sources.
  • Factory reset if compromise is confirmed.

Network Level

  • Block DNS and IP ranges associated with known C2 domains.
  • Monitor unusual outbound HTTP POST traffic.

Enterprise Security Policies

  • Enforce Mobile Device Management (MDM) to limit sideloading.
  • Audit high-risk permission combinations.
  • Conduct awareness training emphasizing that official apps are only installed via legitimate app stores.

Conclusion

The RedAlert Trojan campaign represents an alarming blend of social engineering, malware sophistication, and real-world impact. By disguising spyware as a trusted emergency alert app and using SMS spoofing, threat actors exploited both human trust and technical loopholes.

This attack underscores the need for:

✔ Vigilant cybersecurity awareness
✔ Secure app distribution and permission hygiene
✔ Strong defense policies for mobile ecosystems

In conflict zones or high-tension environments, such threats can have effects beyond digital theft — potentially endangering lives.