The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-2738

CVE-2026-2738: ovpn-dco-win Buffer Overflow Vulnerability

CVE-2026-2738 is a buffer overflow vulnerability in ovpn-dco-win 2.8.0 that enables local attackers to crash systems via oversized packets. This article covers technical details, affected versions, and mitigation.

Updated: May 16, 2026

CVE-2026-2738 Overview

CVE-2026-2738 is a buffer overflow vulnerability in ovpn-dco-win version 2.8.0, the Windows data channel offload driver used by OpenVPN. The flaw allows local attackers to crash the system by sending oversized packets to the remote peer when the Authenticated Encryption with Associated Data (AEAD) tag appears at the end of the encrypted packet. The vulnerability is classified under [CWE-131] Incorrect Calculation of Buffer Size and affects availability of the targeted host. Exploitation requires user interaction and produces a denial-of-service condition through a system crash.

Critical Impact

Local attackers can trigger a Windows system crash by transmitting oversized packets through the ovpn-dco-win 2.8.0 driver, resulting in denial of service on the affected host.

Affected Products

  • OpenVPN ovpn-dco-win version 2.8.0
  • Windows hosts running the affected data channel offload driver
  • OpenVPN deployments using the AEAD cipher mode with the vulnerable driver

Discovery Timeline

  • 2026-02-19 - CVE-2026-2738 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2026-2738

Vulnerability Analysis

The ovpn-dco-win driver implements OpenVPN's data channel cryptographic operations directly in kernel space on Windows. This offload design improves throughput by avoiding context switches between user and kernel mode for packet encryption and decryption. The flaw exists in the packet handling path that processes AEAD-encrypted packets where the authentication tag is appended at the end of the ciphertext. When the driver receives packets exceeding expected size boundaries, an incorrect buffer size calculation occurs during processing. The defect maps to [CWE-131], indicating a miscalculation between the allocated buffer and the data being written or read. The result is memory corruption within kernel context, leading to a system crash that disrupts service on the host running the affected driver.

Root Cause

The root cause is an incorrect buffer size calculation when handling encrypted packets where the AEAD tag is positioned at the end of the payload. The driver does not adequately validate the relationship between the declared packet length, the ciphertext size, and the trailing authentication tag. Oversized packets cause the driver to operate on memory regions beyond the intended buffer boundary.

Attack Vector

Exploitation occurs through the local attack surface and requires user interaction, according to the CVSS vector. An attacker positioned as a remote peer in an OpenVPN session sends crafted packets larger than the driver expects. When the affected host processes these packets through the AEAD decryption path, the buffer miscalculation triggers a crash. The vulnerability does not provide code execution or data disclosure outcomes — only availability impact through system crash. See the OpenVPN Security Announcement for additional technical context.

Detection Methods for CVE-2026-2738

Indicators of Compromise

  • Unexpected Windows bugchecks or blue screen events on hosts running ovpn-dco-win 2.8.0
  • Crash dumps referencing the ovpn-dco-win.sys driver module
  • VPN session terminations correlated with kernel-mode faults on the affected endpoint

Detection Strategies

  • Inventory Windows endpoints and servers for the presence of ovpn-dco-win.sys and confirm the driver version is 2.8.0
  • Monitor Windows Event Log for BugCheck events (Event ID 1001) and correlate with OpenVPN service activity
  • Inspect WER (Windows Error Reporting) data for crash signatures involving the OpenVPN data channel offload driver

Monitoring Recommendations

  • Track abnormal packet sizes on OpenVPN tunnels using network flow telemetry and IDS signatures
  • Alert on repeated host reboots or kernel faults from systems hosting OpenVPN endpoints
  • Correlate VPN peer connection events with subsequent system instability to identify potentially hostile peers

How to Mitigate CVE-2026-2738

Immediate Actions Required

  • Identify all Windows systems running ovpn-dco-win 2.8.0 and prioritize upgrades to a fixed release per vendor guidance
  • Restrict OpenVPN peer connections to trusted remote endpoints until the driver is updated
  • Review VPN gateway logs for unexpected peer sessions that could indicate exploitation attempts

Patch Information

Refer to the OpenVPN Security Announcement for the authoritative patch and version guidance. Apply the fixed ovpn-dco-win driver release on all affected Windows hosts and validate the update through driver version verification after deployment.

Workarounds

  • Disable the data channel offload feature and fall back to the userspace OpenVPN data path until the driver is patched
  • Enforce strict peer authentication and certificate pinning to reduce exposure to untrusted remote peers
  • Limit OpenVPN listener exposure to known network segments using host-based firewall rules
bash
# Configuration example - verify ovpn-dco-win driver version on Windows
sc.exe query ovpn-dco-win
driverquery /v | findstr /i "ovpn-dco-win"
# Disable DCO in the OpenVPN client configuration as a temporary workaround
# Add the following line to the .ovpn config file:
# disable-dco

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechOpenvpn

  • SeverityMEDIUM

  • CVSS Score5.6

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:H/AT:N/PR:N/UI:P/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-131
  • Technical References
  • OpenVPN Security Announcement
  • Related CVEs
  • CVE-2025-12106: OpenVPN Buffer Overflow Vulnerability

  • CVE-2024-1305: OpenVPN tap-windows6 Buffer Overflow Flaw

  • CVE-2025-50054: OpenVPN ovpn-dco-win Buffer Overflow

  • CVE-2024-27459: OpenVPN Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English