All vulnerabilities
HIGHSupply chainexploited in the wildcurated

SC-ESCAN-RELOAD-2026

Security software · eScan Antivirus (MicroWorld)

Summary

On or around January 20, 2026, attackers who had broken into a regional update server for eScan, the antivirus product made by India's MicroWorld Technologies, pushed a trojanized Reload.exe through the legitimate update channel during a window of roughly two hours. The security software itself became the delivery vehicle for malware. The malicious binary carried eScan's code-signing identity, but its signature was actually invalid; it ran anyway because the updater trusted the channel rather than rigorously validating the signature. Once on a host, the malware rewrote the Windows HOSTS file to cut eScan off from its own update servers, blinded script scanning, and reached out to takedown-resistant command-and-control hosted on blockchain naming systems. Morphisec disclosed the campaign, with Kaspersky and Darktrace corroborating it independently.

How to fix it

  • Enforce cryptographic signature verification on every update artifact on the client and fail closed on an invalid or missing signature; channel trust is not integrity.
  • Protect the updater's own self-defense surface so freshly delivered code cannot silently disable updates via HOSTS or registry edits, and alert on tampering with your update domains.
  • Harden and isolate the distribution servers as tier-0 assets (MFA, network isolation, file-integrity monitoring) so an "incorrect file" cannot be served.
  • Because the malware blocks the update channel, ship an out-of-band removal tool; impacted users cannot be auto-remediated and must be reached directly.

How to avoid it in your code

  • Treat security-tool update channels as high-value supply-chain risk and monitor outbound traffic even from trusted antivirus processes.
  • Alert on HOSTS-file changes, especially entries that point your own security vendor's update domains at null or garbage addresses.
  • Detect and block resolution of decentralized-naming proxies (.hns and .sol resolvers) and treat blockchain dead-drop and code-hosting "download" URLs as command-and-control indicators.
  • Keep an out-of-band recovery path; never rely on an antivirus to remediate a compromise of that same antivirus.

Advisory details

How it happened

eScan's updater pulls components from regional distribution servers. Attackers compromised one such server and placed a malicious 32-bit Reload.exe into the distribution path, so only clients pulling from that cluster during the roughly two-hour window received it. This was a server-side breach, not a network man-in-the-middle. The crucial weakness is the same class that has burned other auto-updaters: the client trusted the origin instead of cryptographically enforcing a valid signature, so a binary that merely looked like it came from eScan (and in fact carried an invalid signature) was accepted and executed. It is a textbook supply-chain attack through the update mechanism, and it is the second time eScan's update channel has been abused (see the separate 2024 GuptiMiner campaign noted below).

The payload

Reload.exe kicked off three Base64-encoded PowerShell stages. The first dismantled eScan's defenses: it rewrote the HOSTS file to blackhole eScan's own update domains (for example pointing update1.mwti.net at a dead address), deleted remote-support tools, and added registry exceptions, so the antivirus could neither update nor self-heal. The second patched AmsiScanBuffer to blind Windows script scanning. The third validated the victim, checking installed software (notably for Kaspersky products) before deploying persistence. A 64-bit second stage, CONSCTLX.exe, acted as a backdoor and downloader, held persistence through a scheduled task disguised under the Windows Defrag path, and pulled further payloads. The most distinctive part was the command-and-control: rather than ordinary domains, the malware used decentralized, blockchain-based naming. It resolved Handshake (.hns) names through a proxy and used Solana (.sol) as a dead-drop, reading its current C2 address out of public Solana blockchain transactions. Because there is no registrar to serve a takedown, that infrastructure is far harder to seize; ironically, Solana's public ledger is what let Darktrace watch the attackers rotate their C2 on January 28.

Who was hit

No threat actor has been publicly named for the January 2026 event. Telemetry varied by vendor, since each only sees its own customers: Kaspersky reported hundreds of machines concentrated in South Asia (India, Bangladesh, Sri Lanka, the Philippines), while Darktrace's affected customers were in EMEA. eScan characterized it as a small subset of users and disputed the researchers' framing, calling the file a "corrupt update" and saying it found no evidence of additional payloads or data theft. Three independent research teams contradict that, documenting a working multi-stage downloader with live command-and-control. Where the vendor and the researchers disagree on severity, the documented C2 and persistence weigh toward the researchers.

Why it still matters

The irony is the point: software whose entire job is to protect the endpoint became the attacker's trusted delivery vehicle, the same dynamic seen in the Notepad++ update hijack and, years earlier, in ASUS ShadowHammer and SolarWinds. It also rhymes with eScan's own history: in 2024 the GuptiMiner campaign, disclosed by Avast, abused the same product's update mechanism, which at the time downloaded over plain HTTP with no signature verification, to deliver backdoors and a coin-miner; that flaw had reportedly existed for years before eScan fixed it. A 2026 server breach and a 2024 man-in-the-middle are different vectors, but the root failure is identical: an updater that does not fail closed on a missing or invalid signature. A valid signature, strictly verified on the client, is the one control that would have stopped both.

References

Related vulnerabilities

All Supply chain →