Worked example · 2026-06
CryptoBandits — USB-worm crypto-clipper with Tor C2 and clipboard secret-harvesting — Windows / cross-chain — disclosed 2026-06-17
Summary
CryptoBandits is a Windows crypto-clipper that Microsoft's Defender research teams disclosed on 2026-06-17 after tracking activity since February 2026. It comprises two components: a worm that ensures propagation, and a clipper/stealer that harvests and exfiltrates cryptocurrency wallet material. The clipper relies on Windows Script Host and ActiveX-driven JScript logic to launch a bundled Tor proxy and poll a hidden-service C2; it performs high-frequency clipboard theft (~500 ms), wallet-address substitution, seed-phrase and private-key harvesting, and screenshot exfiltration (reported as five captures ten seconds apart for context). The clipboard monitor matches popular address formats (Bitcoin, Ethereum, Litecoin, and others) and replaces a copied address with an attacker-controlled one, frequently preserving partial character matches so the substitution survives a casual visual check.
Propagation is worm-like via removable media: specially crafted .lnk files that Windows Explorer processes automatically when a USB drive is inserted execute the payload (icon rendering alone is sufficient to trigger it), and the worm creates additional malicious shortcuts of legitimate files and re-seeds them onto newly inserted drives, with scheduled tasks providing persistence and re-propagation. C2 and exfiltration are routed through a bundled Tor client (ugate.exe) over a SOCKS5 proxy at localhost:9050, communicating via HTTP POST to .onion domains. The malware also exposes an EVAL command that executes arbitrary JScript delivered from the C2 server — i.e. remote code execution on the infected host. Microsoft published ten worm-component SHA-256 hashes, the ugate.exe Tor-binary filename, and ten .onion C2 domains as indicators, and recommended disabling AutoRun/AutoPlay, blocking .lnk execution from removable drives via GPO, monitoring localhost:9050 activity, and hunting script-to-network execution chains (e.g. curl/PowerShell).
Timeline (UTC)
| When | Event | OAK ref |
|---|---|---|
| 2026-02 | CryptoBandits activity begins; .lnk-based USB worm seeds infections; clipper/stealer harvests clipboard addresses, seed phrases, and private keys and exfiltrates over Tor |
T4.012 + T4.012.001 |
| 2026-02 → 2026-06 | Standing campaign: ~500 ms clipboard polling, same-coin address substitution, screenshot capture, Tor .onion C2, EVAL remote code execution; worm re-propagates via scheduled tasks on inserted removable media |
T4.012 (clipper + secret-harvest arms) |
| 2026-06-17 | Microsoft Defender Security Research Team + Defender Experts disclose the family; Defender detects Trojan:Win32/CryptoBandits.A/.B and Trojan:Win32/ClipBanker.USB!MTB (intel update 1.391.1092.0); IOCs published (10 worm hashes, ugate.exe, 10 .onion domains) |
(defender-side disclosure) |
Public references
[microsoftcryptobandits2026]— Microsoft Security Blog, "Crypto Clipper uses Tor and worm-like propagation for persistence and control" (2026-06-17;Trojan:Win32/CryptoBandits.A; USB.lnkworm; ~500 ms clipboard polling; BIP39 seed + ETH/BTC-WIF key theft; screenshots; bundled Torugate.exeSOCKS5localhost:9050→.onionHTTP POST C2;EVALJScript RCE; scheduled-task persistence; IOCs): https://www.microsoft.com/en-us/security/blog/2026/06/17/crypto-clipper-uses-tor-worm-like-propagation-for-persistence-control/[windowsnewsclipbanker2026]— Windows News, "USB Shortcut Malware Uses Tor SOCKS Backdoor to Steal Cryptocurrency, Microsoft Warns" (corroboratesTrojan:Win32/ClipBanker.USB!MTBdetection, intel update 1.391.1092.0;.lnk-on-insertion execution; ephemeral.onionC2; clipboard address-format substitution; AutoPlay-disable / AppLocker mitigations): https://windowsnews.ai/article/usb-shortcut-malware-uses-tor-socks-backdoor-to-steal-cryptocurrency-microsoft-warns.427549
Discussion
CryptoBandits is the removable-media worm-propagated anchor (T4.012.001) for OAK's new clipper technique. It is worth contrasting carefully with OAK-T4.003 (Address Poisoning): both attacks end with the victim sending funds to an attacker address they believed was correct, and both are ultimately defeated by the same user habit — verifying the full destination address rather than a truncated prefix. But the mechanism and the defender's instrumentation point are different. T4.003 plants look-alike transactions in the victim's on-chain wallet history and waits for the victim to copy-paste from that history; there is no malware on the host, and the manipulated substrate is the wallet UI. CryptoBandits manipulates the clipboard on the endpoint in real time, so it works regardless of where the victim copied the address from, and it is invisible to on-chain detection because no authority is ever granted on-chain — the only signals are at the endpoint (clipboard-behaviour, Tor egress, .lnk-on-USB, scheduled tasks) and at the wallet-UX layer (full-address verification at sign time). See techniques/T4.003-address-poisoning.md for the on-chain sibling.
The case also illustrates why OAK classifies the clipboard substitution / secret-harvesting primitive as the crypto-relevant technique and treats the surrounding capabilities — USB-worm propagation, Tor-anonymised C2, scheduled-task persistence, EVAL remote code execution — as general-malware delivery/operational context rather than minting each as a separate crypto-attack technique. That scoping keeps the taxonomy focused on the value-extraction mechanism (recipient substitution and key exfiltration) while still recording the operational facets that make a given clipper campaign more or less dangerous. CryptoBandits sits alongside the same week's reputation-laundered Rust clipper (T4.012.002, see examples/2026-06-rust-clipper-fake-reputation-ghost-network.md) as the two independent 2026 anchors that justify promoting the clipper class from a long-standing taxonomy gap into a first-class technique.