DOUBLECUP LaaS Hides Malware in PNG Images

New 'DOUBLECUP' LaaS Uses Steganography to Hide Malware in PNGs

HIGH
August 6, 2026
4m read
MalwarePhishingThreat Actor

Related Entities

Products & Tech

Other

DOUBLECUPCountLoader DeviceManager

Full Report

Executive Summary

A new Russian-speaking Loader-as-a-Service (LaaS) operation named DOUBLECUP is enabling cybercriminals to distribute malware using novel evasion techniques. Active since at least June 2026, DOUBLECUP employs steganography to hide malicious payloads within PNG image files. The attack chain, part of a "ClickFix" campaign, socially engineers victims into executing a command that extracts and runs malware from a PNG file cached by their browser. The service has been observed delivering the CountLoader malware and a previously undocumented Windows Remote Access Trojan (RAT) called DeviceManager. This new RAT uses the blockchain for its command-and-control (C2) infrastructure, making it highly resilient.


Threat Overview

The DOUBLECUP service provides malware distribution capabilities to other criminals. The attack begins when a victim is lured to a malicious website, often a convincing fake login page for a CRM platform like Salesforce or HubSpot. The site presents a fake verification prompt (e.g., a CAPTCHA) that instructs the user to copy a command and paste it into a terminal or command prompt to "verify" their session. This is a social engineering tactic known as a "ClickFix" attack.

The pasted command does not perform verification. Instead, it searches the local browser cache for a specific PNG image that was downloaded from the malicious site. This image appears benign but contains a hidden, encrypted malware payload. The script extracts and decrypts the payload directly in memory using the victim's public IP address as part of the decryption key. This fileless, in-memory execution makes the malware difficult for traditional antivirus software to detect.


Technical Analysis

The DOUBLECUP attack chain combines several clever techniques to evade detection:

  1. Social Engineering: The attack relies on tricking the user into executing code themselves, bypassing many automated security controls. This is a form of T1204.002 - Malicious File, though in this case, it's a malicious command.
  2. Steganography: The core of the technique is hiding the payload within a PNG file. This is a classic example of T1027.003 - Steganography. By hiding code in a common file type, it can bypass simple network content filters.
  3. Execution: The malware is executed in memory after being extracted from the image, which aligns with T1059 - Command and Scripting Interpreter and aims to be fileless to evade AV scans.
  4. Command and Control: The DeviceManager RAT uses "EtherHiding," querying the Ethereum or Polygon blockchain to retrieve its C2 server address. This makes the C2 infrastructure decentralized and highly resistant to takedowns. This is a sophisticated form of T1102.002 - Bidirectional Communication.

The delivered payloads, CountLoader and DeviceManager, provide the attacker with information stealing and remote access capabilities, respectively.


Impact Assessment

The DOUBLECUP LaaS lowers the barrier to entry for less sophisticated cybercriminals to conduct stealthy malware campaigns. The use of steganography and in-memory execution can bypass traditional endpoint security, while the blockchain-based C2 makes the resulting infections difficult to disrupt. A successful infection with the DeviceManager RAT gives an attacker full control over the victim's machine, leading to data theft, financial fraud, or the machine being used as a pivot point for further attacks into a corporate network. The targeting of CRM users suggests an aim to compromise business accounts, which can lead to larger business email compromise (BEC) schemes or data breaches.


IOCs — Directly from Articles

No specific file hashes, IP addresses, or domains were provided in the source articles.


Cyber Observables — Hunting Hints

Security teams can hunt for this activity using the following patterns:

Type
Command Line Pattern
Value
powershell -c "...findstr..."
Description
Look for PowerShell commands that search through browser cache directories (AppData\Local\...\Cache).
Type
Command Line Pattern
Value
`pbpaste
Description
shorpowershell -c "Get-Clipboard
Type
Network Traffic Pattern
Value
Outbound connections to Ethereum/Polygon nodes
Description
Monitor for JSON-RPC requests to public blockchain nodes from corporate endpoints, which could indicate EtherHiding C2.
Type
File Name
Value
DeviceManager.exe
Description
The name of the new RAT. Monitor for the creation or execution of a file with this name.

Detection & Response

Detection:

  1. Endpoint Monitoring (EDR): Use an EDR solution to monitor for suspicious command-line activity, especially PowerShell or shell commands interacting with browser cache directories or executing content from the clipboard. This aligns with D3FEND's Process Analysis.
  2. Network Analysis: Monitor for and alert on outbound connections to public blockchain gateways from standard user workstations. This is an anomalous activity for most corporate environments. This uses D3FEND's Network Traffic Analysis.
  3. YARA Scanning: Develop and use YARA rules to scan memory for strings and patterns associated with CountLoader and DeviceManager.

Response:

  1. Isolate: Isolate any machine suspected of being compromised.
  2. Block C2: If blockchain C2 is detected, block outbound access to the identified blockchain nodes at the firewall.
  3. Credential Reset: Assume all credentials on the compromised machine have been stolen and initiate a full password reset for the user.

Mitigation

Strategic:

  1. User Training: The primary defense against ClickFix attacks is user education. Train users to never, under any circumstances, paste commands from a website into a terminal or PowerShell window. This is a critical component of security awareness.
  2. Application Control: Use application control solutions to prevent users from executing unauthorized scripts or commands. Restrict the use of PowerShell for standard users.

Tactical:

  1. Attack Surface Reduction: Configure PowerShell to run in Constrained Language Mode for non-administrative users, which limits its ability to execute malicious code.
  2. Clipboard Monitoring: Some advanced EDR tools can monitor and alert on suspicious clipboard operations, such as copying a command and immediately pasting it into a shell.

Timeline of Events

1
June 1, 2026
The DOUBLECUP Loader-as-a-Service is first observed to be active.
2
August 6, 2026
This article was published

MITRE ATT&CK Mitigations

Train users to never paste untrusted commands from websites into a command prompt or PowerShell.

Use application control to restrict the use of PowerShell and other scripting interpreters for standard users.

Mapped D3FEND Techniques:

Use an EDR to detect and block suspicious command line patterns, such as executing content from the clipboard.

D3FEND Defensive Countermeasures

The most effective technical countermeasure against the DOUBLECUP/ClickFix attack is to monitor and restrict Process Creation. An EDR or similar endpoint security tool should be configured with a high-severity alert for any process (e.g., cmd.exe, powershell.exe) that is spawned with a command line containing patterns like Get-Clipboard | iex or pbpaste | sh. This specific behavior of piping clipboard content directly into an interpreter is the core of the attack's execution phase and is almost never legitimate user behavior. Blocking this action outright via an EDR's prevention capabilities would stop the attack cold, even if a user is tricked by the social engineering.

Since the DOUBLECUP attack chain relies entirely on social engineering the user to execute the malicious command, Security Training is a paramount defense. Users must be explicitly and repeatedly trained on the dangers of pasting commands from any website into a command prompt, PowerShell, or terminal. This should be a specific, actionable 'never-ever' rule in security awareness programs. Training should include simulations of these ClickFix attacks to demonstrate how they appear and why they are dangerous. A well-informed user who is suspicious of such a request is the most effective first line of defense.

Timeline of Events

1
June 1, 2026

The DOUBLECUP Loader-as-a-Service is first observed to be active.

Sources & References

Article Author

Jason Gomes

Jason Gomes

• Cybersecurity Practitioner

Cybersecurity professional with over 10 years of specialized experience in security operations, threat intelligence, incident response, and security automation. Expertise spans SOAR/XSOAR orchestration, threat intelligence platforms, SIEM/UEBA analytics, and building cyber fusion centers. Background includes technical enablement, solution architecture for enterprise and government clients, and implementing security automation workflows across IR, TIP, and SOC use cases.

Threat Intelligence & AnalysisSecurity Orchestration (SOAR/XSOAR)Incident Response & Digital ForensicsSecurity Operations Center (SOC)SIEM & Security AnalyticsCyber Fusion & Threat SharingSecurity Automation & IntegrationManaged Detection & Response (MDR)

Editorial Standards & Analyst Review

CyberNetSec.io uses automation to assist source monitoring, deduplication, observable extraction, and structured intelligence generation. Published analysis follows human-defined editorial standards and adds defensive context including MITRE ATT&CK, D3FEND, STIX, and Sigma where applicable. Read our editorial policy.

Tags

DOUBLECUPLaaSmalwaresteganographyClickFixCountLoaderDeviceManagerRATEtherHiding

📢 Share This Article

Help others stay informed about cybersecurity threats

🎯 MITRE ATT&CK Mapped

Every tactic, technique, and sub-technique used in this threat has been identified and mapped to the MITRE ATT&CK framework for consistent, actionable threat language.

🧠 Enriched & Analyzed

Observables and indicators of compromise (IOCs) have been extracted and cataloged. Risk has been assessed and correlated with known threat actors and historical campaigns.

🛡️ Actionable Guidance

Detection rules, incident response steps, and D3FEND-aligned mitigation strategies are included so your team can act on this intelligence immediately.

🔗 STIX Visualizer

Structured threat data is packaged as a STIX 2.1 bundle and can be visualized as an interactive graph — relationships between actors, malware, techniques, and indicators.

Sigma Generator

Sigma detection rules are derived from the threat techniques in this article and can be converted for deployment across any major SIEM or EDR platform.