Skip to main content
CVE-2026-8398 Critical Patch Available

CVE-2026-8398: DAEMON Tools Lite -- Official Installer Backdoored with Signed Malware

CVE Details

CVE ID CVE-2026-8398
CVSS Score 9.8
Severity Critical
Vendor Daemon
Product Daemon Tools Lite
Patch Status Available
Published May 28, 2026
EPSS Score 0.0%
CISA Patch Deadline ⚠ May 30, 2026 Federal deadline passed

Background

DAEMON Tools Lite is a widely-used Windows application developed by AVB Disc Soft that provides virtual disc drive emulation and disc image mounting capabilities. It has been in distribution for over two decades and has accumulated a large consumer install base, particularly in Central and Eastern Europe, parts of Asia, and gaming communities globally where physical media mounting and ISO handling remain common use cases.

CVE-2026-8398 is a critical (CVSS 9.8) supply chain vulnerability in which attackers gained access to AVB Disc Soft’s build or distribution infrastructure and replaced legitimate installer binaries with trojansied versions. Between approximately April 8 and May 5, 2026, official DAEMON Tools Lite installers distributed from the legitimate vendor website (daemon-tools.cc) contained malicious binaries signed with AVB Disc Soft’s own code-signing certificate. The compromised binaries established persistent backdoor access on victim systems, beaconing to attacker-controlled C2 infrastructure on every system startup.

CISA added CVE-2026-8398 to its Known Exploited Vulnerabilities catalog on May 27, 2026, with an expedited remediation deadline of May 30, 2026 — three days from addition rather than the typical two-week window, reflecting the severity and confirmed active exploitation.

Technical Mechanism

CVE-2026-8398 is classified as CWE-506 (Embedded Malicious Code). The vulnerability is not a defect in the DAEMON Tools Lite software itself but a supply chain compromise in which the legitimate installer was replaced with one containing backdoored binaries.

Three specific files within the installer were replaced with malicious versions:

  • DTHelper.exe
  • DiscSoftBusServiceLite.exe
  • DTShellHlp.exe

Signed malicious binaries: All three backdoored files carry valid digital signatures from AVB Disc Soft’s code-signing certificate. This means the signatures would have passed enterprise software whitelisting controls relying on publisher trust, and standard signature verification would not have detected the compromise without binary comparison against known-clean versions.

Startup persistence: Two of the three affected binaries run as part of system startup — DiscSoftBusServiceLite.exe is the DAEMON Tools service that starts automatically at boot, and DTHelper.exe is invoked through a startup registry entry. The malicious implant is therefore activated on every system restart.

C2 communication and staging: On activation, the compromised binary sends an initial HTTP GET beacon to the attacker-controlled domain env-check.daemontools[.]cc — a typosquat registered on March 27, 2026, approximately two weeks before compromised installers began appearing in distribution. The GET request serves as both a check-in and a retrieval mechanism: the C2 response contains a shell command executed via cmd.exe.

Payload delivery: The initial shell command downloads additional executable payloads from attacker infrastructure and executes them. The modular staging design means the final payload can be updated or changed remotely, and on-disk evidence from the initial implant may not reveal the full extent of attacker activity on affected systems.

The use of signed binaries, a legitimate software distribution channel, a plausible-looking C2 domain that closely mimics the legitimate vendor domain, and pre-registration of C2 infrastructure weeks before deployment are consistent with a capable, organised actor.

Real-World Exploitation Evidence

CISA’s three-day remediation deadline (vs the standard fourteen days) is a strong signal of ongoing active exploitation at the time of KEV addition. The typical two-week window reflects time for organisations to plan and test patching; compressing this to three days indicates CISA assessed that the exploitation rate and severity warranted urgent action.

DAEMON Tools Lite’s broad consumer install base and its prevalence on personal and prosumer Windows machines makes it an effective distribution vector for campaigns targeting individuals, researchers, and developers — including environments that may not be covered by enterprise endpoint management. The software’s longevity and user trust mean malicious updates are less likely to be questioned.

The vendor (AVB Disc Soft) published an incident notification at blog.daemon-tools.cc/post/security-incident acknowledging the breach of their distribution pipeline and releasing clean version 12.6.0. Attribution for the attack has not been publicly confirmed as of this writing.

Impact Assessment

  • Persistent backdoor installation: Any system that installed DAEMON Tools Lite from daemon-tools.cc between approximately April 8 and May 5, 2026 may have a backdoor activated on every boot, providing persistent remote access to attackers.
  • Bypassed endpoint controls: The use of a legitimate code-signing certificate means many host-based security controls that rely on publisher trust would have allowed the malicious binaries to run without flagging. Antivirus products that did not have behavioural detections for the C2 communication pattern may not have detected the compromise.
  • Modular payload delivery: Because the initial implant downloads and executes additional stages, the ultimate payload on any given system cannot be determined from the implant alone. Affected systems should be assumed to be fully compromised, not merely beaconing.
  • Consumer machine targeting: The attack reaches machines that may not be enrolled in enterprise MDM or monitored by a corporate SOC, including developer personal machines, home offices, and systems used for both personal and work tasks.
  • Credential exposure: Secondary payloads are likely to include credential-stealing components targeting browser-stored credentials, SSH keys, and locally cached tokens, though specific payload analysis has not been publicly disclosed.

Affected Versions

ProductAffected VersionsFixed Version
DAEMON Tools Lite (Windows)12.5.0.2421 through 12.5.0.243412.6.0 (released May 5, 2026)

Any system that installed DAEMON Tools Lite from the official website during approximately April 8 – May 5, 2026 and is running one of the affected version numbers should be treated as fully compromised. The malicious binaries run at every system startup, meaning a single installation creates a persistent implant.

Remediation Steps

  1. Treat the system as compromised. Removal of DAEMON Tools is not sufficient remediation — the persistent startup behaviour means secondary payloads may have already been deployed and may maintain their own persistence independently.

  2. Isolate the system from production networks and sensitive resources pending investigation.

  3. Perform a full forensic review or, where that is not feasible, re-image the system from a known-good baseline. Given the modular payload delivery design, the full extent of attacker activity cannot be assessed from the initial implant alone.

  4. Revoke and rotate credentials that were accessible from the affected system:

    • Windows credentials and domain account passwords
    • Browser-stored credentials (all browsers)
    • VPN and remote access credentials
    • SSH keys stored locally
    • Any API keys or tokens stored in local configuration files
  5. Update DAEMON Tools Lite to version 12.6.0 or later (if continued use is required) only after system remediation — installing the clean version on a compromised system does not undo prior payload delivery.

  6. Block known C2 infrastructure at DNS and network perimeter levels: env-check.daemontools[.]cc

  7. For organisations: Audit software inventory for DAEMON Tools Lite installations across managed endpoints and identify any installations in the affected version range.

Detection Guidance

Check installed version:

# PowerShell  --  check installed version
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |
  Where-Object { $_.DisplayName -like "*DAEMON Tools*" } |
  Select-Object DisplayName, DisplayVersion

Identify malicious binaries by hash:

# Get hashes of the three potentially affected files
Get-FileHash "C:\Program Files\DAEMON Tools Lite\DTHelper.exe"
Get-FileHash "C:\Program Files\DAEMON Tools Lite\DiscSoftBusServiceLite.exe"
Get-FileHash "C:\Program Files\DAEMON Tools Lite\DTShellHlp.exe"

Compare against hashes published in the vendor security advisory and CVE record. Mismatches in any of the three files indicate a compromised version.

Network IOCs:

  • Domain: env-check.daemontools[.]cc (typosquat of legitimate daemon-tools.cc)
  • DNS queries for env-check.daemontools[.]cc from any endpoint
  • HTTP GET requests to this domain from Windows service or helper process accounts
  • Any HTTP/HTTPS traffic from DTHelper.exe, DiscSoftBusServiceLite.exe, or DTShellHlp.exe to external endpoints

Process-based detection:

  • cmd.exe processes spawned by DTHelper.exe, DiscSoftBusServiceLite.exe, or DTShellHlp.exe
  • Any child process spawned by the above three binaries inconsistent with normal DAEMON Tools operation (e.g., powershell.exe, wscript.exe, mshta.exe, or executables running from %TEMP%)

Windows Event Log indicators:

  • Event ID 7045 (Service Control Manager): new services registered by compromised binaries
  • Event ID 4688 (Process creation, with audit enabled): anomalous parent-child process trees involving DAEMON Tools processes

Sysmon rules:

<!-- Sysmon network connection from DAEMON Tools processes -->
<NetworkConnect>
  <Image condition="end with">DTHelper.exe</Image>
  <Image condition="end with">DiscSoftBusServiceLite.exe</Image>
  <Image condition="end with">DTShellHlp.exe</Image>
</NetworkConnect>

Timeline

DateEvent
March 27, 2026Attacker pre-registers C2 domain env-check.daemontools[.]cc
~April 8, 2026Compromised DAEMON Tools Lite installers begin appearing on daemon-tools.cc
April 8 – May 5, 2026Users installing DAEMON Tools Lite from official site receive backdoored installers
May 5, 2026AVB Disc Soft discovers compromise; releases clean version 12.6.0
May 5, 2026Vendor publishes incident notification at blog.daemon-tools.cc
May 27, 2026CISA adds CVE-2026-8398 to KEV catalogue
May 30, 2026CISA remediation deadline (expedited three-day window)

References