A critical local privilege escalation bug in Fuji Electric Tellus 5.0.2 can hand any authenticated user full SYSTEM rights on industrial Windows machines. The vulnerability, tracked as CVE-2026-8108, received a CISA industrial control systems advisory on May 12, 2026, underscoring the growing wave of kernel-level attacks targeting operational technology (OT) environments.
The root cause lies in a Windows kernel driver installed by the Tellus configuration software. The driver ships with overly permissive access controls, allowing unprivileged local users or malicious applications to send specially crafted IOCTL (input/output control) requests. Successful exploitation enables an attacker to execute arbitrary code in the kernel’s security context, effectively bypassing all user-mode protections and granting SYSTEM privileges—the highest integrity level on Windows.
For OT networks where Tellus is used to program and manage Fuji Electric’s industrial automation controllers, the impact is severe. A low-privilege operator or even a compromised field laptop could pivot to disrupt production lines, alter safety parameters, or deploy ransomware across connected PLCs. The advisory categorizes the vulnerability under CWE-782 (Exposed IOCTL with Insufficient Access Control), a pattern seen repeatedly in industrial software where kernel drivers are bolted onto legacy codebases without modern security review.
Inside the Privilege Escalation
Windows separates user mode from kernel mode to protect the operating system from unstable or malicious programs. Drivers run in kernel mode with unrestricted access to memory and hardware. When a driver fails to validate the calling process’s credentials properly, it becomes a bridge for attackers to leap from a restricted account—say, a factory floor operator’s ID—to full control of the OS.
CVE-2026-8108 illustrates a classic IOCTL handler flaw. The Tellus driver’s device object likely lacks a proper security descriptor, or the driver routine neglects to check the requestor’s privilege level before performing a privileged operation. An attacker can write a few lines of C or PowerShell to open the driver device (e.g., \\.\TellusDrv), fire an IOCTL that writes to an arbitrary kernel memory location, and overwrite a function pointer to hijack execution. Public proof-of-concept code for similar flaws, such as the notorious Capcom.sys or MSI driver exploits, demonstrates how trivially this can be weaponized.
Because the attack requires local code execution, it is often chained with other vulnerabilities. An infostealer or phishing email that drops a script can first establish a foothold as a limited user. The kernel exploit then escalates that foothold into a complete system compromise, disabling monitoring tools and moving laterally across the plant network. In air-gapped OT setups, the attacker might rely entirely on local access—a rogue insider or a compromised USB drive that automates the escalation.
Why OT and Windows Kernel Drivers Are a Dangerous Mix
Industrial software vendors have historically treated kernel drivers as a quick way to interface with hardware or to enforce licensing. Windows 10 and 11 drivers, especially those that are not Windows Hardware Quality Labs (WHQL) certified, often run outside the watchful eye of Microsoft’s driver blocklist. Many OT-specific applications, including HMI and configuration tools, install drivers that remain unpatched for years because of the “if it isn’t broken, don’t fix it” mindset prevalent in manufacturing.
Tellus is a programming environment for Fuji Electric’s MICREX and other PLC ranges. Engineering workstations running Tellus are frequently Windows 10 LTSC or Windows 11 machines joined to an Active Directory domain or standalone. The drivers accompanying these tools typically grant direct memory access to the controller—functionality that requires kernel privileges. What CVE-2026-8108 exposes is a failure to ring-fence that power: any process on the machine can inherit those same kernel rights, not just the authorized configuration software.
The CISA advisory reflects a broader push by the U.S. government to highlight software supply chain risks in critical infrastructure. OT-oriented CVEs that reach kernel privilege escalation are rare enough to trigger alerts. In 2024 and 2025, similar advisories appeared for drivers in products from Siemens, Rockwell Automation, and Mitsubishi. The common denominator is the Windows kernel’s trust model—drivers must be impeccably written, yet the incentives for vendors to perform rigorous outside-in security testing remain weak until a regulatory body or a major incident forces action.
Dissecting the Advisory
CISA’s publication typically includes a CVSS score, technical analysis, and recommended mitigations. For CVE-2026-8108, the attack vector is local (AV:L), attack complexity low (AC:L), privileges required low (PR:L), user interaction none (UI:N). The impact on confidentiality, integrity, and availability is high (C:H/I:H/A:H). That configuration yields a CVSS v3.1 base score of 7.8, a high-severity rating. The exploitability is high precisely because the only barrier is an authenticated local session—no sandbox escape or memory corruption trick is needed.
The advisory identifies Fuji Electric Tellus version 5.0.2 and possibly earlier versions as affected. Users are advised to update to a patched release as soon as available or apply a driver block rule. In lieu of a patch, CISA outlines temporary workarounds: restrict access to the affected endpoint through network segmentation, enforce the principle of least privilege, and use application control to prevent unauthorized binaries from running. The advisory also reminds asset owners to monitor Windows event logs for anomalous service or driver installations that could indicate exploitation.
Real-World Attack Scenarios
Imagine a water treatment plant where Tellus runs on a Windows engineering workstation inside the control room. An attacker, having obtained a standard Active Directory username and password via a spear-phishing campaign, logs in remotely over a jump host. That account is a plain Domain User with no local admin rights. The attacker drops a small executable that enumerates kernel drivers, finds the vulnerable Tellus driver, and executes the local privilege escalation. Within seconds, the actor has SYSTEM shell and can steal the local Security Account Manager (SAM) database or install a persistent rootkit that survives reboots.
From there, the attacker pivots to the PLC programming network. Because the engineering workstation is trusted to download logic to PLCs, the attacker can alter the control program, causing physical damage or hiding malfunctions from operators. The entire attack chain from initial access to OT-level impact might take less than five minutes. Detection is difficult because the escalation itself leaves scant traces unless kernel auditing is enabled—a configuration rarely turned on in performance-sensitive OT machines.
In another scenario, the escalation is used solely to disable antivirus and EDR agents on the workstation, paving the way for ransomware that spreads to file servers and manufacturing execution systems (MES). With SYSTEM privileges, the malware can encrypt files and disrupt backup processes with impunity. The Tellus driver becomes an unwitting enabler for a broader IT-OT shutdown.
Mitigations Beyond the Patch
Patching is the definitive fix, but OT environments are notorious for low patch velocity. While organizations wait for a vendor-certified update or schedule downtime, several technical controls can reduce the risk:
- Driver Blocking: Windows Defender Application Control (WDAC) or AppLocker can be configured to deny the loading of the vulnerable driver by its hash or file name. Microsoft’s recommended driver block rules, built into Windows Security, automatically block known-vulnerable drivers and can be extended via GPO.
- Device Guard and HVCI: On Windows 11 and some Windows 10 builds, Hypervisor-Protected Code Integrity (HVCI) ensures that only signed drivers can load, and those with known exploits are blacklisted. Enabling HVCI where hardware support exists stops many IOCTL-based attacks by enforcing stricter kernel memory protections.
- Remove Admin Privileges from Day-to-Day Accounts: Ensure that operators and engineers do not run with local administrator rights. The more barriers an attacker must cross, the harder the overall attack chain becomes.
- Endpoint Logging: Enable System Monitor (Sysmon) with a configuration that logs driver loads (Event ID 6) and enables WMI auditing. Feed these logs to a SIEM that can alert on suspicious driver load patterns.
- Network Segmentation: Place engineering workstations in a separate VLAN with strict firewall rules only allowing necessary PLC communication protocols. Disable RDP and SMB from IT subnets to those segments.
Longer term, asset owners should demand that industrial software vendors adopt Microsoft’s driver security guidelines: driver signing, IOCTL input validation, strict access control lists on device objects, and participation in the Windows Hardware Dev Center driver validation program. The security community has openly called for banning third‑party kernel drivers in OT that are not WHQL certified, a stance the CISA advisory indirectly supports by highlighting this class of vulnerability.
The Windows OT Security Posture
Microsoft has invested in OT-aware features for Windows 10 and 11: tamper protection, Microsoft Defender for IoT, and specialized agent-based security for industrial endpoints. However, the burden remains on third-party software vendors to produce secure drivers. The kernel’s integrity is only as strong as the weakest loaded module. Tellus’s vulnerability joins a long list of reminders that the OT software supply chain often lags a decade behind mainstream IT security practices.
Windows remains the dominant operating system in control rooms and for engineering tools, making it a prime target. The 2026 CISA advisory adds CVE-2026-8108 to the agency’s Known Exploited Vulnerabilities catalog, compelling U.S. federal civilian agencies to remediate within a set timeframe. Private sector organizations are strongly encouraged to follow suit.
The Bigger Picture for Windows Enthusiasts
Enthusiasts who dual-boot or run virtualized OT test labs should not dismiss kernel vulnerabilities. A homelab with a vulnerable driver can become a playground for learning exploit development, but it also represents a risk if that driver exists on a daily-driver PC—malware scans for exposed IOCTL handles regardless of the machine’s primary use.
Windows Insiders and IT pros can contribute by testing driver hardening features in preview builds. Microsoft regularly tests improvements in driver isolation, and feedback from the community helps shape technology like driver sandboxing. CVE-2026-8108 is expected to be detectable via the Microsoft Driver Blocklist soon after the advisory, and enthusiasts can verify blocks using PowerShell cmdlets like Get-WDDriverBlockEntry.
For those maintaining Windows OT systems, the advisory is a call to audit all installed kernel drivers. A simple driverquery /v can reveal non-Microsoft drivers; cross-referencing them against public CVE databases flags risky modules. A single overlooked driver can unravel years of network hardening.
What Fuji Electric Users Should Do Now
Fuji Electric has not publicly detailed a patch timeline, but the coordinated disclosure process typically leads to a software update within weeks of an advisory. In the interim, the most effective action is to remove or disable the driver if the engineering tool can function without it. If the driver is essential, implement application allowlisting via WDAC in audit mode first, then enforce it. Security teams should also map all Tellus installations—often forgotten on laptops used by field service technicians—and apply the same mitigations.
CISA’s advisory serves as the formal notification and should be disseminated across OT and IT security teams. The same document includes YARA rules and detection signatures that can be deployed in network monitoring tools to spot exploitation attempts. Asset owners can subscribe to CISA’s ICS alerts to receive updates directly.
Ultimately, CVE-2026-8108 is not a sophisticated zero-click remote exploit; it is a pernicious, low-complexity local escalation that erodes the last defensive boundary on a critical workstation. Its existence reflects the systemic challenges of securing the intersection between purpose-built industrial software and the general-purpose Windows kernel. Recognizing that chasm and actively working to bridge it remains the most pragmatic path forward.