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-2024-1305

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

CVE-2024-1305 is a buffer overflow vulnerability in the OpenVPN tap-windows6 driver that allows attackers to execute arbitrary code in kernel space. This article covers technical details, affected versions, and mitigations.

Updated: May 16, 2026

CVE-2024-1305 Overview

CVE-2024-1305 is an integer overflow vulnerability [CWE-190] in the OpenVPN tap-windows6 driver versions 9.26 and earlier. The driver fails to properly validate the size data of incoming write operations. Attackers can exploit this flaw to overflow kernel memory buffers, resulting in a bug check or arbitrary code execution in kernel space. Because tap-windows6 runs as a Windows kernel-mode driver, successful exploitation grants ring-0 privileges on the affected host. The OpenVPN project tracks the issue in its CVE-2024-1305 advisory.

Critical Impact

Successful exploitation enables arbitrary code execution in Windows kernel space, allowing full system compromise and bypass of endpoint protection boundaries.

Affected Products

  • OpenVPN tap-windows6 driver version 9.26
  • OpenVPN tap-windows6 driver versions earlier than 9.26
  • Windows hosts running OpenVPN community builds that bundle vulnerable tap-windows6 versions

Discovery Timeline

  • 2024-07-08 - CVE-2024-1305 published to the National Vulnerability Database (NVD)
  • 2025-08-22 - Last updated in NVD database

Technical Details for CVE-2024-1305

Vulnerability Analysis

The tap-windows6 driver implements a virtual TAP network adapter used by OpenVPN to inject and receive Ethernet frames on Windows. The driver exposes I/O control and write interfaces that accept buffers from user mode. In affected versions, the driver does not correctly validate the size of incoming write operations before copying data into kernel buffers. The size handling triggers an integer overflow condition, after which subsequent length checks pass even though the actual buffer copy exceeds allocated memory. The result is a kernel-mode buffer overflow that corrupts adjacent memory structures.

Because the vulnerability resides in a signed kernel driver loaded at boot, exploitation provides direct kernel execution. An attacker who controls a local process, or who can route crafted frames through a network path the driver processes, can trigger the overflow. Reliable exploitation yields code execution at IRQL levels that bypass standard user-mode mitigations.

Root Cause

The root cause is an integer overflow [CWE-190] in the size validation logic for write operations. The driver computes buffer length using arithmetic that wraps around when supplied with large or crafted values, defeating the bounds check that follows. The subsequent memory copy uses the attacker-influenced length, producing an out-of-bounds write into kernel pool memory.

Attack Vector

The attack vector is network-adjacent through the TAP adapter interface, with no authentication or user interaction required. An attacker triggers the flaw by sending oversized or malformed write payloads to the driver's exposed interface. The vulnerability produces either an immediate bug check (BSOD) or, with a tuned payload, arbitrary kernel code execution that can disable security agents and persist below the operating system.

No verified public proof-of-concept code is associated with this CVE. Refer to the OpenVPN community advisory and the OpenVPN users mailing list discussion for technical context.

Detection Methods for CVE-2024-1305

Indicators of Compromise

  • Unexpected BugCheck events referencing tap0901.sys in the Windows System event log
  • Loaded driver image tap0901.sys reporting a file version at or below 9.26
  • Kernel pool corruption crash dumps where the faulting module is the TAP driver
  • New or unsigned drivers loaded shortly after tap0901.sys activity, indicating possible post-exploitation persistence

Detection Strategies

  • Inventory installed OpenVPN packages and query tap0901.sys file version across managed Windows endpoints
  • Correlate kernel crash telemetry with TAP adapter I/O activity to surface exploitation attempts
  • Hunt for processes opening handles to \\.\Global\TAP device names followed by abnormal write sizes

Monitoring Recommendations

  • Forward Windows kernel crash dumps and WER reports to a centralized log pipeline for analysis
  • Alert on driver load events (Sysmon Event ID 6) where tap0901.sys version is less than 9.26.0.0
  • Monitor for privilege escalation chains that originate from processes interacting with the TAP adapter

How to Mitigate CVE-2024-1305

Immediate Actions Required

  • Upgrade tap-windows6 to version 9.27 or later, distributed with current OpenVPN community packages
  • Identify and remove orphaned tap-windows6 installations left by uninstalled VPN clients
  • Restrict local user accounts that can load or interact with kernel drivers on sensitive hosts

Patch Information

OpenVPN addressed the integer overflow in tap-windows6 releases following version 9.26. Administrators should deploy the latest OpenVPN Windows installer, which packages the fixed driver, and reboot affected hosts to ensure the vulnerable image is unloaded. Patch details and download links are published in the OpenVPN CVE-2024-1305 advisory.

Workarounds

  • Uninstall OpenVPN and the tap-windows6 driver on hosts that do not require the TAP adapter
  • Block non-administrative users from creating handles to the TAP device through Windows access control lists
  • Apply Windows Defender Application Control or WDAC policies to prevent loading of out-of-date tap0901.sys images
bash
# Verify installed tap-windows6 driver version on Windows (PowerShell)
Get-WmiObject Win32_PnPSignedDriver |
  Where-Object { $_.DeviceName -like '*TAP-Windows*' } |
  Select-Object DeviceName, DriverVersion, DriverProviderName

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability8.33%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-190
  • Technical References
  • OpenVPN User Discussion Archive
  • Vendor Resources
  • OpenVPN CVE-2024-1305 Details
  • Related CVEs
  • CVE-2026-2738: ovpn-dco-win Buffer Overflow Vulnerability

  • CVE-2025-12106: OpenVPN Buffer Overflow Vulnerability

  • 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