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-2023-32269

CVE-2023-32269: Linux Kernel Use-After-Free Vulnerability

CVE-2023-32269 is a use-after-free vulnerability in the Linux Kernel's netrom module that can be exploited with netrom routing or CAP_NET_ADMIN privileges. This post covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-32269 Overview

CVE-2023-32269 is a Use-After-Free vulnerability discovered in the Linux kernel's NET/ROM amateur radio protocol implementation. The flaw exists in net/netrom/af_netrom.c where accept() is incorrectly allowed on an already successfully connected AF_NETROM socket, leading to a use-after-free condition that could allow an attacker with local access and elevated privileges to impact system confidentiality, integrity, and availability.

Critical Impact

Local attackers with CAP_NET_ADMIN capability or access to systems with netrom routing configured can exploit this use-after-free vulnerability to potentially execute arbitrary code or cause system instability.

Affected Products

  • Linux Kernel versions prior to 6.1.11
  • Systems with NET/ROM (netrom) routing configured
  • Systems where users have CAP_NET_ADMIN capability

Discovery Timeline

  • 2023-05-05 - CVE-2023-32269 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2023-32269

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption issue that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of CVE-2023-32269, the flaw resides in the NET/ROM protocol handler within the Linux kernel's networking subsystem.

The vulnerability allows the accept() system call to be invoked on an AF_NETROM socket that has already been successfully connected. Under normal operation, accept() should only be valid on listening sockets. When called on a connected socket, the kernel may reference memory structures that are in an inconsistent state, leading to a use-after-free condition.

Exploitation requires either the CAP_NET_ADMIN capability (typically held by root or privileged containers) or a system where netrom routing has been explicitly configured. This limits the attack surface but still presents significant risk in environments where amateur radio networking protocols are in use or where container escapes are a concern.

Root Cause

The root cause is improper state validation in the nr_listen() function within net/netrom/af_netrom.c. The code failed to check whether the socket was already in a connected state before allowing it to transition to a listening state. This oversight allowed the accept() call to proceed on sockets where it should have been rejected, resulting in memory being accessed after it had been freed or reallocated for other purposes.

Attack Vector

The attack vector is local, requiring an attacker to have:

  1. Local access to the vulnerable system
  2. Either the CAP_NET_ADMIN capability OR access to a system with netrom routing already configured
  3. The ability to create and manipulate AF_NETROM sockets

An attacker would create an AF_NETROM socket, establish a connection, then call accept() on the connected socket to trigger the use-after-free condition. This could lead to arbitrary code execution in kernel context, privilege escalation, or denial of service.

c
 	struct sock *sk = sock->sk;
 
 	lock_sock(sk);
+	if (sock->state != SS_UNCONNECTED) {
+		release_sock(sk);
+		return -EINVAL;
+	}
+
 	if (sk->sk_state != TCP_LISTEN) {
 		memset(&nr_sk(sk)->user_addr, 0, AX25_ADDR_LEN);
 		sk->sk_max_ack_backlog = backlog;

Source: GitHub Linux Commit Update

Detection Methods for CVE-2023-32269

Indicators of Compromise

  • Unusual activity involving AF_NETROM socket operations on systems without legitimate amateur radio networking requirements
  • Kernel oops or panic messages referencing net/netrom/af_netrom.c or related NET/ROM functions
  • Processes with CAP_NET_ADMIN capability making unexpected socket system calls

Detection Strategies

  • Monitor for processes attempting to load the netrom kernel module on systems where it is not required
  • Implement system call monitoring to detect unusual patterns of socket(), connect(), and accept() calls on AF_NETROM sockets
  • Deploy kernel-level monitoring to detect use-after-free exploitation attempts targeting networking subsystems

Monitoring Recommendations

  • Enable kernel auditing for socket operations involving the AF_NETROM address family
  • Configure SentinelOne agents to monitor for kernel memory corruption indicators
  • Review system logs for kernel warnings related to NET/ROM protocol handling
  • Monitor for unauthorized loading of amateur radio networking modules

How to Mitigate CVE-2023-32269

Immediate Actions Required

  • Update Linux kernel to version 6.1.11 or later which contains the fix
  • If patching is not immediately possible, disable the netrom kernel module using modprobe -r netrom and blacklist it
  • Review and restrict CAP_NET_ADMIN capability assignments to only essential processes
  • Audit systems for unauthorized netrom routing configurations

Patch Information

The vulnerability has been addressed in Linux kernel version 6.1.11 and later releases. The fix adds a state check at the beginning of the nr_listen() function to ensure the socket is in an unconnected state before allowing it to transition to listening mode. If the socket is already connected, the function now returns -EINVAL instead of proceeding.

For detailed patch information, refer to the Linux Kernel ChangeLog 6.1.11 and the kernel commit 6117929209.

Workarounds

  • Blacklist the netrom module by adding blacklist netrom to /etc/modprobe.d/blacklist.conf if NET/ROM functionality is not required
  • Remove CAP_NET_ADMIN capability from non-essential processes and containers
  • Use seccomp filters to restrict access to AF_NETROM socket operations
bash
# Blacklist the netrom module to prevent loading
echo "blacklist netrom" | sudo tee /etc/modprobe.d/netrom-blacklist.conf

# Unload the module if currently loaded
sudo modprobe -r netrom

# Verify the module is not loaded
lsmod | grep netrom

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score6.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Linux Change Log 6.1.11
  • Vendor Resources
  • GitHub Linux Commit Update
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43048: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43049: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43056: Linux Kernel Use-After-Free 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