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
    • 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-2021-27363

CVE-2021-27363: Linux Kernel Information Disclosure Flaw

CVE-2021-27363 is an information disclosure vulnerability in Linux Kernel that leaks kernel pointers through the iSCSI transport sysfs interface. This article covers technical details, affected versions, and mitigations.

Published: February 25, 2026

CVE-2021-27363 Overview

CVE-2021-27363 is a kernel pointer leak vulnerability discovered in the Linux kernel through version 5.11.3. The vulnerability exists in the iSCSI subsystem where the transport's handle is exposed to unprivileged users via the sysfs file system. When an iSCSI transport is registered with the iSCSI subsystem, the transport's handle becomes accessible at /sys/class/iscsi_transport/$TRANSPORT_NAME/handle. Reading this file triggers the show_transport_handle function in drivers/scsi/scsi_transport_iscsi.c, which leaks the handle—a direct pointer to an iscsi_transport struct in the kernel module's global variables.

Critical Impact

This kernel pointer leak enables unprivileged local users to determine the address of the iscsi_transport structure, potentially facilitating address space layout randomization (ASLR) bypasses and assisting in further kernel exploitation chains.

Affected Products

  • Linux Kernel (versions through 5.11.3)
  • Debian Linux 9.0
  • NetApp Cloud Backup
  • NetApp SolidFire Baseboard Management Controller Firmware

Discovery Timeline

  • 2021-03-07 - CVE-2021-27363 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-27363

Vulnerability Analysis

This Information Disclosure vulnerability affects the Linux kernel's iSCSI transport subsystem. The root issue lies in how the kernel exposes internal data structures through the sysfs interface. When an iSCSI transport driver registers itself with the kernel's iSCSI subsystem, a sysfs entry is automatically created that includes a handle attribute file. This file is world-readable by default, allowing any local user to read its contents.

The vulnerability occurs because the show_transport_handle function directly outputs the pointer value of the iscsi_transport structure without any sanitization or access control checks. This pointer leak defeats kernel ASLR protections by revealing the exact memory location of kernel data structures, which attackers can leverage to construct more sophisticated exploits targeting other kernel vulnerabilities.

Root Cause

The root cause is improper information exposure in the show_transport_handle function within drivers/scsi/scsi_transport_iscsi.c. The function returns the raw kernel pointer value of the iscsi_transport structure to userspace without validating caller privileges or masking the pointer. This design flaw allows unprivileged users to obtain sensitive kernel memory addresses by simply reading the sysfs file at /sys/class/iscsi_transport/$TRANSPORT_NAME/handle.

Attack Vector

The attack vector is local, requiring the attacker to have unprivileged user access to the target system. Exploitation is straightforward:

  1. The attacker identifies available iSCSI transports by listing /sys/class/iscsi_transport/
  2. For each transport, the attacker reads the handle file (e.g., /sys/class/iscsi_transport/tcp/handle)
  3. The kernel returns the raw pointer value of the iscsi_transport structure
  4. The attacker uses this leaked address to calculate the base address of kernel modules or defeat ASLR protections

The leaked pointer can then be used as part of a multi-stage attack where the attacker chains this information disclosure with other kernel vulnerabilities to achieve privilege escalation or arbitrary code execution.

Detection Methods for CVE-2021-27363

Indicators of Compromise

  • Unexpected read operations on /sys/class/iscsi_transport/*/handle files by non-root users
  • Suspicious processes accessing iSCSI sysfs entries without legitimate storage administration purposes
  • Unusual kernel exploitation attempts following pointer leak activity

Detection Strategies

  • Monitor sysfs access patterns using auditd rules targeting /sys/class/iscsi_transport/ paths
  • Implement file access monitoring for the handle attribute files under iSCSI transport entries
  • Deploy kernel-level monitoring to detect suspicious patterns of kernel address leakage attempts

Monitoring Recommendations

  • Configure audit rules to log all access to /sys/class/iscsi_transport/*/handle files
  • Review system logs for unauthorized users attempting to enumerate iSCSI transport information
  • Correlate pointer leak attempts with other suspicious kernel-related activity that may indicate exploitation chains

How to Mitigate CVE-2021-27363

Immediate Actions Required

  • Update the Linux kernel to a patched version that addresses commit 688e8128b7a92df982709a4137ea4588d16f24aa
  • Apply vendor-specific patches from Debian, NetApp, or your Linux distribution's security updates
  • Restrict access to systems running vulnerable kernel versions to trusted users only

Patch Information

The Linux kernel maintainers have addressed this vulnerability in commit 688e8128b7a92df982709a4137ea4588d16f24aa. This commit modifies the show_transport_handle function to prevent the kernel pointer from being exposed to unprivileged users. Distribution-specific patches are available through:

  • Debian LTS Security Announcement
  • NetApp Security Advisory
  • Kernel Live Patch from Packet Storm

Workarounds

  • Restrict read permissions on /sys/class/iscsi_transport/*/handle files using file system ACLs where kernel updates cannot be immediately applied
  • Unload unnecessary iSCSI transport modules if they are not required for system operation
  • Implement mandatory access control policies (SELinux/AppArmor) to restrict sysfs access to authorized processes only
bash
# Configuration example - Restrict access to iSCSI transport handle files
# Add audit rule to monitor access attempts
auditctl -w /sys/class/iscsi_transport/ -p r -k iscsi_handle_access

# If iSCSI is not needed, prevent module loading
echo "install iscsi_tcp /bin/false" >> /etc/modprobe.d/disable-iscsi.conf
echo "install libiscsi /bin/false" >> /etc/modprobe.d/disable-iscsi.conf

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

  • SeverityMEDIUM

  • CVSS Score4.4

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • Packet Storm Security Notice

  • Grimm Blog Linux Kernel Analysis

  • SUSE Bugzilla Report

  • Debian LTS Announcement

  • Debian LTS Security Notice

  • NetApp Security Advisory
  • Vendor Resources
  • OpenWall OSS-Security Mailing List

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw

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

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

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