Overview
DeviceManager is a modular, Python-based Windows remote access trojan first documented in August 2026 by SOCRadar's Threat Research Unit during analysis of a loader-as-a-service platform named DOUBLECUP. It is not a self-spreading commodity family. It is a hands-on backdoor that arrives at the end of a ClickFix social-engineering chain, gives an operator full command execution on the host, and is engineered specifically to survive infrastructure takedowns and network monitoring.
The delivery vehicle is what makes DeviceManager notable for defenders. DOUBLECUP is a Russian loader-as-a-service, active since early June 2026, that sells operators a builder and hosts the delivery infrastructure for ClickFix campaigns. It stages a steganographic PNG in the victim's browser cache, hijacks the clipboard through a fake CAPTCHA prompt, and relies on the victim to paste and run the command themselves. There is no exploit and no CVE in the front of this chain. The user is the execution mechanism, which is why parent-child process telemetry and clipboard-to-process correlation matter more here than exploit detection.
Two things separate DeviceManager from a typical RAT. First, it resolves its command-and-control server from a smart contract on the Ethereum or Polygon blockchain, a technique known as EtherHiding, documented by Google Threat Intelligence Group and mapped to MITRE ATT&CK T1102.001. Because the C2 address is read from an immutable public ledger through a read-only call, there is no domain to sinkhole and no hosting provider to serve a takedown. Second, it prefers DNS tunneling for transport, appending a hardcoded microsoft.com suffix to every query so the traffic resembles legitimate Microsoft telemetry to a defender reading DNS logs.
DeviceManager was recovered alongside an updated build of CountLoader, a second payload delivered by the same DOUBLECUP infrastructure. This page focuses on DeviceManager and the DOUBLECUP delivery chain that precedes it, because the pre-execution and post-execution behavior is where realistic detection windows exist.
Why this matters for defenders: DeviceManager's kill chain resists the controls defenders usually lean on. There is no exploit at entry, the payload runs in memory, the C2 is read from an immutable public ledger, and the transport is disguised as Microsoft DNS traffic. None of the individual techniques are novel. The significance is that they combine into a backdoor that is hard to block at the network edge and offers nothing to sinkhole, which shifts the defensive burden onto endpoint behavior.
Verify before relying on this: SOCRadar analyzed a single build, identified as version 1.3, in which DNS tunneling and scheduled-task persistence were the active defaults, while the WMI event subscription and HTTP C2 modules were present but unused. Builds are per-campaign and the C2 is served dynamically from the blockchain, so treat the hashes, delivery URL, resolved C2, and smart-contract address as volatile and confirm them live before blocking.