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-43080

CVE-2026-43080: Linux Kernel L2TP DoS Vulnerability

CVE-2026-43080 is a denial of service flaw in the Linux kernel's L2TP implementation caused by UDP length field overflow when handling oversized packets. This article covers technical details, affected systems, and mitigation.

Published: May 7, 2026

CVE-2026-43080 Overview

CVE-2026-43080 is a Linux kernel vulnerability in the Layer 2 Tunneling Protocol (L2TP) subsystem. The flaw resides in l2tp_xmit_core within net/l2tp/l2tp_core.c, where oversized PPP-over-L2TP packets with UDP encapsulation cause a 16-bit UDP length field overflow. When a userspace process transmits a packet exceeding 65,535 bytes through an L2TP socket, the kernel assigns the truncated length to the UDP header without bounds checking. The issue was discovered through syzbot fuzzing and has been resolved upstream by adding an overflow check that drops oversized packets before they reach the wire.

Critical Impact

Local users can trigger kernel warnings and produce malformed UDP packets, leading to potential denial of service and protocol corruption on systems running L2TP tunnels.

Affected Products

  • Linux kernel versions containing the L2TP UDP encapsulation code path in net/l2tp/l2tp_core.c
  • Systems using PPPoL2TP sockets with IPv4 or IPv6 UDP encapsulation
  • Distributions shipping kernels prior to the upstream fix commits

Discovery Timeline

  • 2026-05-06 - CVE-2026-43080 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43080

Vulnerability Analysis

The vulnerability is an integer truncation flaw in the Linux kernel L2TP transmit path. When l2tp_xmit_core constructs an outbound L2TP packet with UDP encapsulation, it computes the total packet length and assigns the value to the UDP header's 16-bit len field. The kernel did not validate that the computed length fit within 16 bits.

A syzbot reproducer demonstrates the issue by opening a PPPoL2TP socket, connecting it to an IPv6 UDP socket, and issuing a writev syscall with a 0x34000-byte (212,992 byte) payload. The payload exceeds the UDP length field's maximum value of 65,535. The kernel silently truncates the value, producing UDP packets with corrupted length headers that get transmitted on the wire.

The upstream fix adds a length validation check in l2tp_xmit_core that drops packets exceeding the 16-bit UDP length boundary, preventing the truncation and the subsequent transmission of malformed packets.

Root Cause

The root cause is missing boundary validation when assigning a wider integer value to a 16-bit field [Numeric Truncation Error]. The L2TP transmit logic in net/l2tp/l2tp_core.c accepted packet lengths from userspace via writev, sendmsg, and related socket interfaces without enforcing the UDP protocol's 65,535-byte maximum before writing to udp_set_len_short in include/linux/udp.h:38.

Attack Vector

A local unprivileged user with the ability to create a PPPoL2TP socket can trigger the condition. The user opens an L2TP socket, connects it through an underlying UDP socket, and writes a payload larger than 65,535 bytes. The kernel proceeds to construct a UDP packet with a truncated length field, generating a kernel warning on instrumented kernels and emitting protocol-violating traffic on production kernels.

The vulnerability is described in prose only; refer to the upstream commits for the exact patch logic and reproducer details available in the kernel mailing list discussion.

Detection Methods for CVE-2026-43080

Indicators of Compromise

  • Kernel log entries containing WARNING references to udp_set_len_short or l2tp_xmit_core with messages such as len >= 65536u
  • Unexpected kernel stack traces originating from pppol2tp_sendmsg followed by sock_write_iter and vfs_writev
  • Malformed UDP packets on L2TP tunnel interfaces showing length field values inconsistent with actual payload size

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for warnings emitted from net/l2tp/l2tp_core.c line 1293 or 1327
  • Audit processes invoking socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP) followed by large writev or sendmsg calls
  • Use packet capture on L2TP-bearing interfaces to identify UDP datagrams whose declared length is smaller than the on-wire payload

Monitoring Recommendations

  • Enable kernel auditing for L2TP socket creation events and correlate them with subsequent oversized write syscalls
  • Track which kernel build is deployed across the fleet and flag hosts running pre-patch versions referenced in the upstream commits 77c1489, 86534c9, 9ccce02, ebe560e, and f295fe8
  • Forward kernel ring buffer warnings to a centralized log platform for long-term retention and anomaly detection

How to Mitigate CVE-2026-43080

Immediate Actions Required

  • Apply the upstream Linux kernel patches that introduce the overflow check in l2tp_xmit_core and rebuild or update affected kernels
  • Restrict the ability to create L2TP sockets to trusted system services where feasible by using namespaces or seccomp filters
  • Audit running systems for active L2TP tunnels and confirm whether the host runs a patched kernel build

Patch Information

The fix has been merged into the mainline and stable Linux kernel trees. Reference the following upstream commits: Kernel Git Commit 77c1489, Kernel Git Commit 86534c9, Kernel Git Commit 9ccce02, Kernel Git Commit ebe560e, and Kernel Git Commit f295fe8. Distribution maintainers ship these fixes through standard kernel package updates.

Workarounds

  • Disable the l2tp_ppp and l2tp_core kernel modules on hosts that do not require L2TP functionality using modprobe -r and a blacklist entry in /etc/modprobe.d/
  • Apply seccomp or AppArmor profiles that prevent untrusted processes from invoking the socket syscall with AF_PPPOX
  • Limit the maximum write size on L2TP sockets at the application layer where the kernel cannot yet be patched
bash
# Configuration example
# Blacklist L2TP modules until the kernel is patched
echo 'blacklist l2tp_ppp' | sudo tee /etc/modprobe.d/disable-l2tp.conf
echo 'blacklist l2tp_core' | sudo tee -a /etc/modprobe.d/disable-l2tp.conf
sudo modprobe -r l2tp_ppp l2tp_core

# Verify modules are unloaded
lsmod | grep -E 'l2tp_(ppp|core)'

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 77c1489

  • Kernel Git Commit 86534c9

  • Kernel Git Commit 9ccce02

  • Kernel Git Commit ebe560e

  • Kernel Git Commit f295fe8
  • Related CVEs
  • CVE-2026-31739: Linux Kernel Tegra Crypto DoS Vulnerability

  • CVE-2026-43054: Linux Kernel tcm_loop DOS Vulnerability

  • CVE-2026-31736: Linux Kernel MTK PPE DoS Vulnerability

  • CVE-2026-31727: Linux Kernel USB Gadget DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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