A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46723

CVE-2026-46723: TYPO3 Information Disclosure Vulnerability

CVE-2026-46723 is an information disclosure flaw in TYPO3 that allows backend users to copy sensitive data from internal tables into the search index. This article covers technical details, affected systems, and mitigation.

Published: May 21, 2026

CVE-2026-46723 Overview

CVE-2026-46723 is an information disclosure vulnerability in TYPO3 affecting the page and tt_content indexers. The additional_tables configuration accepts arbitrary table and field names without validation. A backend user with permission to edit indexer configurations can copy sensitive data from internal TYPO3 tables into the search index. This exposes credentials, password hashes, and other restricted data through standard search queries. The flaw is classified as [CWE-668] Exposure of Resource to Wrong Sphere.

Critical Impact

Authenticated backend users with high privileges can exfiltrate sensitive data from internal TYPO3 tables by injecting arbitrary table and field references into indexer configurations.

Affected Products

  • TYPO3 CMS page indexer extension
  • TYPO3 CMS tt_content indexer extension
  • TYPO3 installations exposing indexer configuration to backend editors

Discovery Timeline

  • 2026-05-19 - CVE-2026-46723 published to NVD
  • 2026-05-19 - Last updated in NVD database

Technical Details for CVE-2026-46723

Vulnerability Analysis

The vulnerability resides in how the page and tt_content indexers process the additional_tables configuration parameter. The indexer accepts table and field identifiers supplied by backend users and incorporates them into index-building queries without enforcing an allow-list. Attackers with backend access can reference any table in the TYPO3 database, including be_users, fe_users, or other tables holding password hashes, session data, and personally identifiable information. The indexer then writes the referenced field values into the public search index, where they become discoverable through standard query interfaces. The issue is tracked under CWE-668, which covers improper resource exposure across security boundaries.

Root Cause

The root cause is missing input validation on the additional_tables configuration field. The indexer treats user-supplied identifiers as trusted and does not restrict access to tables outside the indexer's intended scope. No authorization check confirms that the configured tables fall within the data classification appropriate for full-text indexing.

Attack Vector

Exploitation requires an authenticated backend account with permission to edit indexer configurations. The attacker modifies the additional_tables parameter to point at internal tables and fields containing sensitive data. After the next indexing run, the data appears in the search index and can be retrieved through normal search queries. No special tooling is required, and the exploitation pattern leaves traces only in indexer configuration history.

The vulnerability mechanism is described in the TYPO3 Security Advisory TYPO3-EXT-SA-2026-011. No public proof-of-concept code is available.

Detection Methods for CVE-2026-46723

Indicators of Compromise

  • Modifications to indexer configuration records referencing tables outside the typical content scope, such as be_users, fe_users, sys_log, or sys_registry.
  • Search index entries containing strings that match password hash formats, email addresses, or session tokens.
  • Backend audit log entries showing edits to indexer additional_tables settings by non-administrative accounts.

Detection Strategies

  • Audit current indexer configurations for any additional_tables values that reference internal TYPO3 system tables.
  • Run targeted search queries against the live index for known sensitive patterns (hash prefixes, internal usernames) to confirm exposure.
  • Review TYPO3 backend change logs for recent edits to indexer extension configurations correlated with anomalous user sessions.

Monitoring Recommendations

  • Alert on any change to indexer additional_tables configuration outside an approved change window.
  • Monitor search index size and content growth for sudden spikes following configuration changes.
  • Track backend user permission grants that include indexer configuration rights and review them quarterly.

How to Mitigate CVE-2026-46723

Immediate Actions Required

  • Apply the fixed indexer extension version referenced in the TYPO3 Security Advisory TYPO3-EXT-SA-2026-011.
  • Restrict the backend permission to edit indexer configurations to trusted administrators only.
  • Rebuild the search index after patching to remove any sensitive data already copied into it.
  • Rotate credentials and session tokens that may have been exposed through the index.

Patch Information

TYPO3 has released a fixed version of the affected indexer extension. Refer to the TYPO3 Security Advisory TYPO3-EXT-SA-2026-011 for the exact patched versions and upgrade instructions. Confirm the installed extension version after upgrade and verify the patched build matches vendor-published artifacts.

Workarounds

  • Remove the indexer configuration edit permission from all non-administrator backend groups until the patch is applied.
  • Manually review and clean the additional_tables setting on every indexer configuration record, restricting it to expected content tables.
  • Purge and rebuild the search index to eliminate any previously indexed sensitive fields.
bash
# Configuration example
# Review affected indexer configurations in the TYPO3 database
# Inspect additional_tables values for unexpected references
SELECT uid, title, additional_tables
  FROM tx_indexedsearch_config
  WHERE additional_tables IS NOT NULL
    AND additional_tables <> '';

# Restrict backend group permissions (TypoScript / backend user group config)
options.indexer.disableConfigEdit = 1

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechTypo3

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:N/VC:H/VI:N/VA:N/SC:L/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-668
  • Technical References
  • TYPO3 Security Advisory
  • Related CVEs
  • CVE-2026-6553: TYPO3 CMS Information Disclosure Flaw

  • CVE-2026-8726: Date Menu Plugin SQL Injection Vulnerability

  • CVE-2026-46725: TYPO3 Extension RCE Vulnerability

  • CVE-2026-8727: TYPO3 Crawler Extension RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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