Skip to main content
CVE-2026-21510 High Patch Available

CVE-2026-21510: Microsoft Windows Shell -- Protection Mechanism Failure

CVE Details

CVE ID CVE-2026-21510
CVSS Score 8.1
Severity High
Vendor Microsoft
Product Windows Shell
Patch Status Available
Published February 10, 2026
EPSS Score 25.8%
CISA Patch Deadline ⚠ March 3, 2026 Federal deadline passed

Background

The Windows Shell is the graphical user environment of Windows, encompassing Explorer, the taskbar, desktop, and the file system shell extension mechanism. Its deep integration with file handling, shortcut processing, and application launching makes it a consistent target for security bypass research.

CVE-2026-21510 is a protection mechanism failure (CWE-693) in the Windows Shell that enables an unauthorised attacker to bypass a security feature over the network. CISA added this to the KEV catalog on 2026-02-10 as part of the February 2026 Patch Tuesday batch. Active exploitation confirms it is being used in real attack chains.

Windows Shell security bypasses have a well-documented exploitation history. Vulnerabilities like CVE-2021-36948 (Windows Update Medic Service) and the .lnk file techniques used in Stuxnet show how attackers use shell-level weaknesses to bypass protections and achieve code execution.

Technical Mechanism

CWE-693 (Protection Mechanism Failure) in Windows Shell typically involves a failure of security controls such as Mark-of-the-Web (MotW) zone enforcement, AppLocker/WDAC bypass, or shell extension security policy enforcement. The network-deliverable nature suggests the bypass can be triggered by content delivered over the network without requiring local interaction.

# Conceptual Windows Shell bypass: MotW circumvention
# Normal behavior: downloaded file gets Zone.Identifier ADS
# Bypass: certain shell operations strip or ignore the zone marker

# Attacker crafts a file that survives MotW stripping:
$content = "malicious payload"
Set-Content -Path ".\payload.hta" -Value $content
# Craft container (e.g., .iso, .vhd) that preserves content without MotW
# Shell opens without SmartScreen/Protected View warnings

The protection mechanism failure allows content delivered via network paths to be processed by Windows Shell with reduced security enforcement, potentially enabling execution of code that should be blocked by zone-based security controls.

Real-World Exploitation Evidence

CISA’s KEV listing confirms active exploitation. Windows Shell bypasses are a staple of phishing campaigns — they let attackers deliver malicious files that Windows security features (SmartScreen, Protected View, MotW) would normally block or flag. Recent campaigns have heavily used container formats (.iso, .zip, .vhd) to bypass MotW; this vulnerability likely represents a newer bypass technique being exploited before defences are updated.

Impact Assessment

  • Bypass of Windows Shell security features (MotW, SmartScreen, zone enforcement)
  • Enablement of code execution for content that security controls should block
  • Network-deliverable: can be exploited via malicious email attachments or web downloads
  • Amplification of phishing and drive-by download campaign effectiveness
  • Potential combination with other vulnerabilities for complete compromise chain

Affected Versions

ProductAffectedFixed
Windows 10Affected Shell versionsFebruary 2026 Patch Tuesday
Windows 11Affected Shell versionsFebruary 2026 Patch Tuesday
Windows Server 2019/2022Affected Shell versionsFebruary 2026 Patch Tuesday

Remediation Steps

  1. Apply February 2026 Patch Tuesday updates immediately.
  2. Enable Windows Defender SmartScreen and ensure it is enforced via Group Policy.
  3. Configure AppLocker or Windows Defender Application Control (WDAC) to restrict unauthorized code execution.
  4. Enable Protected View in Microsoft Office for all content from external sources.
  5. Train users to be suspicious of files downloaded from the internet or received via email.

Detection Guidance

Log Sources: Windows Event Logs, Sysmon, EDR process creation and file telemetry.

IOCs: Execution of files without Zone.Identifier ADS from downloaded locations; SmartScreen bypasses logged in Windows Defender event log; unexpected shell spawning processes from shell extension handlers.

Sigma rule:

title: Windows Shell Protection Bypass CVE-2026-21510
logsource:
  product: windows
  category: file_event
detection:
  selection:
    TargetFilename|contains:
      - '\Downloads\'
      - '\Temp\'
    TargetFilename|endswith:
      - '.hta'
      - '.lnk'
      - '.vbs'
      - '.js'
  filter_ads:
    # Files without Zone.Identifier = bypassed MotW
    TargetFilename|contains: ':Zone.Identifier'
  condition: selection and not filter_ads
level: high

Timeline

DateEvent
2026-02-10CVE-2026-21510 disclosed (February Patch Tuesday)
2026-02-10CISA adds to KEV catalog; active exploitation confirmed

References