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
    • 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-2022-1353

CVE-2022-1353: Linux Kernel Information Disclosure Flaw

CVE-2022-1353 is an information disclosure vulnerability in the Linux Kernel's pfkey_register function that allows unprivileged local users to access kernel memory. This article covers technical details, impact, and mitigation.

Published: February 17, 2026

CVE-2022-1353 Overview

A vulnerability was found in the pfkey_register function in net/key/af_key.c in the Linux kernel. This flaw allows a local, unprivileged user to gain access to kernel memory, leading to a system crash or a leak of internal kernel information. The vulnerability stems from improper memory initialization when composing SADB (Security Association Database) supported messages.

Critical Impact

Local unprivileged users can exploit this vulnerability to access sensitive kernel memory contents or cause system denial of service through kernel crashes.

Affected Products

  • Linux Kernel (versions prior to the security patch, including 5.17 release candidates rc1-rc8)
  • Debian Linux 9.0, 10.0, and 11.0
  • Red Hat Enterprise Linux 8.0
  • NetApp H-Series firmware (H300S, H500S, H700S, H410S, H300E, H500E, H700E, H410C)

Discovery Timeline

  • April 29, 2022 - CVE-2022-1353 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-1353

Vulnerability Analysis

This vulnerability is classified as an Information Disclosure flaw (CWE-200) residing in the Linux kernel's PF_KEY socket implementation. The pfkey_register function, located in net/key/af_key.c, is responsible for registering security associations used by IPsec. When this function calls compose_sadb_supported() to build a response message, the allocated memory is not properly zero-initialized before use.

The lack of proper memory initialization means that the kernel may inadvertently include residual data from previously allocated memory in the SADB supported message structure. This uninitialized memory can contain sensitive kernel information that gets exposed to unprivileged local users who interact with the PF_KEY socket interface.

Root Cause

The root cause of this vulnerability is the missing __GFP_ZERO flag when allocating memory through the compose_sadb_supported() function. Without this flag, the GFP_KERNEL allocation does not guarantee zeroed memory, leaving potentially sensitive kernel data in the allocated buffer. This data can then be leaked to userspace through the SADB protocol message response.

Attack Vector

The vulnerability requires local access to the system. An unprivileged local user can exploit this flaw by:

  1. Opening a PF_KEY socket (which requires CAP_NET_ADMIN in some configurations, but not all)
  2. Sending a SADB_REGISTER message to the kernel
  3. Receiving the composed SADB_SUPPORTED response containing uninitialized memory
  4. Extracting leaked kernel memory information from the response

The attack can lead to information disclosure of kernel memory contents or potentially trigger a system crash depending on the memory state.

c
 
 	xfrm_probe_algs();
 
-	supp_skb = compose_sadb_supported(hdr, GFP_KERNEL);
+	supp_skb = compose_sadb_supported(hdr, GFP_KERNEL | __GFP_ZERO);
 	if (!supp_skb) {
 		if (hdr->sadb_msg_satype != SADB_SATYPE_UNSPEC)
 			pfk->registered &= ~(1<<hdr->sadb_msg_satype);

Source: GitHub Linux Commit 9a564b

Detection Methods for CVE-2022-1353

Indicators of Compromise

  • Unusual PF_KEY socket activity from unprivileged user processes
  • Unexpected SADB_REGISTER message calls in system logs
  • Processes attempting to access IPsec key management interfaces without legitimate purpose
  • Kernel oops or crash logs referencing pfkey_register or af_key.c

Detection Strategies

  • Monitor for processes opening PF_KEY sockets that are not part of legitimate IPsec or VPN configurations
  • Implement audit rules to track socket creation with protocol family PF_KEY (family 15)
  • Use kernel tracing tools to monitor calls to pfkey_register function
  • Deploy endpoint detection solutions that can identify anomalous kernel interface interactions

Monitoring Recommendations

  • Enable kernel audit logging for socket system calls with the PF_KEY protocol family
  • Configure SentinelOne agents to monitor for suspicious local privilege escalation patterns
  • Implement real-time monitoring of kernel crash events and correlate with user activity
  • Review system logs for repeated failed or unusual SADB protocol interactions

How to Mitigate CVE-2022-1353

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes commit 9a564bccb78a76740ea9d75a259942df8143d02c
  • Apply vendor-specific security patches from Debian, Red Hat, or NetApp as applicable
  • Restrict access to PF_KEY sockets by ensuring proper CAP_NET_ADMIN capability requirements
  • Consider disabling unused kernel modules related to IPsec if not required

Patch Information

The official fix has been merged into the Linux kernel via commit 9a564bccb78a76740ea9d75a259942df8143d02c. The patch adds the __GFP_ZERO flag to the memory allocation in compose_sadb_supported(), ensuring that the allocated buffer is zero-initialized before use.

Vendor-specific patches are available:

  • Debian Security Advisory DSA-5127
  • Debian Security Advisory DSA-5173
  • Red Hat Bug Report #2066819
  • NetApp Security Advisory ntap-20220629-0001

Workarounds

  • Restrict PF_KEY socket access through SELinux or AppArmor policies to limit exposure
  • Use network namespaces to isolate processes that require IPsec functionality
  • Implement strict user access controls to limit local user capabilities
  • Monitor and audit all IPsec-related kernel interactions until patching is complete
bash
# Configuration example
# Audit PF_KEY socket operations
auditctl -a always,exit -F arch=b64 -S socket -F a0=15 -k pfkey_monitor

# Verify kernel version includes the security fix
uname -r
# Check if the patched kernel is installed

# Review loaded IPsec-related kernel modules
lsmod | grep -E "af_key|xfrm"

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-200

  • NVD-CWE-noinfo
  • Technical References
  • Debian LTS Announcement July 2022

  • NetApp Security Advisory ntap-20220629-0001

  • Debian Security Advisory DSA-5127

  • Debian Security Advisory DSA-5173
  • Vendor Resources
  • Red Hat Bug Report #2066819

  • GitHub Linux Commit 9a564b
  • Related CVEs
  • CVE-2026-23430: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23465: Linux Kernel Btrfs Logging Vulnerability

  • CVE-2026-23421: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw
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