Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23983

CVE-2026-23983: Apache Superset Data Exposure Flaw

CVE-2026-23983 is an information disclosure vulnerability in Apache Superset that exposes sensitive user data including password hashes and email addresses. This article covers technical details, affected versions, and fixes.

Published: February 27, 2026

CVE-2026-23983 Overview

A Sensitive Data Exposure vulnerability exists in Apache Superset that allows authenticated users to retrieve sensitive user information through the Tag endpoint. When enabled (disabled by default), the Tag endpoint permits users to retrieve a list of objects associated with a specific tag. When these associated objects include Users, the API response improperly serializes and returns sensitive fields, including password hashes (pbkdf2), email addresses, and login statistics.

This vulnerability allows authenticated users with low privileges (e.g., Gamma role) to view sensitive authentication data, potentially leading to credential compromise and unauthorized access escalation.

Critical Impact

Authenticated users with minimal privileges can extract password hashes, email addresses, and login statistics from other users, enabling offline password cracking and targeted attacks.

Affected Products

  • Apache Superset versions prior to 6.0.0
  • Installations with TAGGING_SYSTEM configuration enabled
  • Deployments exposing the Tag endpoint API

Discovery Timeline

  • 2026-02-24 - CVE CVE-2026-23983 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2026-23983

Vulnerability Analysis

This vulnerability is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The flaw exists in how Apache Superset's Tag endpoint serializes User objects when returning tagged resources through the API.

When the TAGGING_SYSTEM feature is enabled and users query for objects associated with a specific tag, the API response includes User objects without proper field filtering. The serialization logic fails to exclude sensitive authentication-related fields, resulting in the exposure of:

  • Password hashes - PBKDF2-derived password hashes that can be subjected to offline cracking
  • Email addresses - User contact information enabling targeted phishing attacks
  • Login statistics - Information about user activity patterns and login behaviors

The vulnerability requires authentication but only minimal privileges (Gamma role), making it exploitable by any authenticated user on a vulnerable instance.

Root Cause

The root cause is improper data serialization in the Tag endpoint's response handler. When User objects are included in the tagged resources response, the API fails to apply appropriate field-level access controls or output filtering. The serializer exposes internal User model attributes that should be restricted to administrative users only, including cryptographic material (password hashes) that should never be exposed through any API endpoint.

Attack Vector

The attack is network-based and requires authentication with minimal privileges. An attacker would:

  1. Authenticate to Apache Superset with a low-privilege account (Gamma role is sufficient)
  2. Ensure the TAGGING_SYSTEM feature is enabled on the target instance
  3. Query the Tag endpoint API to retrieve objects associated with tags that include User objects
  4. Extract sensitive fields from the API response, including password hashes
  5. Perform offline password cracking against the extracted PBKDF2 hashes
  6. Use compromised credentials for privilege escalation or lateral movement

The attack does not require user interaction and can be performed remotely. However, the feature must be explicitly enabled as it is disabled by default in Apache Superset.

Detection Methods for CVE-2026-23983

Indicators of Compromise

  • Unusual API requests to Tag endpoints from low-privilege user accounts
  • High volume of Tag endpoint queries attempting to enumerate tagged resources
  • API responses containing serialized User objects with sensitive fields
  • Evidence of offline password cracking attempts using harvested hashes

Detection Strategies

  • Monitor Apache Superset access logs for excessive Tag endpoint queries from individual users
  • Implement API request rate limiting and anomaly detection for the Tag endpoint
  • Review authentication logs for successful logins following potential credential exposure
  • Deploy application-level monitoring to detect sensitive data in API responses

Monitoring Recommendations

  • Enable detailed logging for all Tag endpoint API requests
  • Configure alerts for bulk data retrieval patterns from the Tag API
  • Monitor for new or unusual login activity that may indicate compromised credentials
  • Audit user privilege levels and access patterns regularly

How to Mitigate CVE-2026-23983

Immediate Actions Required

  • Upgrade Apache Superset to version 6.0.0 or later immediately
  • If upgrade is not immediately possible, ensure TAGGING_SYSTEM is set to False in configuration
  • Rotate all user passwords as a precaution if the Tag endpoint was previously enabled
  • Audit access logs to identify any potential exploitation of this vulnerability

Patch Information

Users are recommended to upgrade to Apache Superset version 6.0.0, which addresses this vulnerability by properly filtering sensitive fields from User objects in API responses. The official Apache security advisory is available through the Apache Mailing List Discussion. Additional details can be found in the OpenWall OSS Security Notice.

Workarounds

  • Set TAGGING_SYSTEM = False in your Apache Superset configuration to disable the vulnerable endpoint
  • Implement network-level access controls to restrict API access to trusted sources
  • Deploy a Web Application Firewall (WAF) to filter and monitor Tag endpoint requests
  • Consider implementing additional authentication layers for sensitive API endpoints
bash
# Configuration example - Disable TAGGING_SYSTEM in superset_config.py
# Add or modify the following line in your superset_config.py file:
TAGGING_SYSTEM = False

# After configuration change, restart Apache Superset services:
# systemctl restart superset
# or
# docker-compose restart superset

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechApache Superset

  • SeverityLOW

  • CVSS Score2.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • OpenWall OSS Security Notice
  • Vendor Resources
  • Apache Mailing List Discussion
  • Related CVEs
  • CVE-2023-39265: Apache Superset Information Disclosure

  • CVE-2026-23969: Apache Superset SQLi Vulnerability

  • CVE-2026-23984: Apache Superset Auth Bypass Vulnerability

  • CVE-2026-23982: Apache Superset Auth Bypass 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