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-47350

CVE-2026-47350: TYPO3 CMS Auth Bypass Vulnerability

CVE-2026-47350 is an authentication bypass flaw in TYPO3 CMS allowing backend users to move records without proper edit permissions. This post covers the technical details, affected versions, and mitigation.

Published: June 11, 2026

CVE-2026-47350 Overview

CVE-2026-47350 is a missing authorization vulnerability [CWE-862] in the TYPO3 CMS content management system. Authenticated backend users can move records from a source page to a different target page without holding edit permissions on the source page. The flaw resides in the DataHandler component, which failed to verify update permissions on the source page record before processing a move operation. The issue affects TYPO3 CMS versions 13.0.0 through 13.4.31 and 14.0.0 through 14.3.3.

Critical Impact

Backend users with limited privileges can relocate records out of pages they are not authorized to modify, breaking the editorial permission model and enabling unauthorized data manipulation across the content tree.

Affected Products

  • TYPO3 CMS versions 13.0.0 through 13.4.31
  • TYPO3 CMS versions 14.0.0 through 14.3.3
  • TYPO3 Core DataHandler component in typo3/sysext/core

Discovery Timeline

  • 2026-06-09 - CVE-2026-47350 published to NVD
  • 2026-06-09 - Last updated in NVD database

Technical Details for CVE-2026-47350

Vulnerability Analysis

The vulnerability stems from an incomplete permission check inside the TYPO3 DataHandler class, which orchestrates all create, update, and move operations in the backend. When a record was moved to a different page identifier (pid), DataHandler verified insert permissions on the target page but did not verify update permissions on the source page. Backend users could therefore move records away from pages they were never authorized to edit, provided they could insert into a destination page they controlled.

This represents a broken access control failure mapped to [CWE-862] Missing Authorization. The impact is limited to integrity of records relative to the source page hierarchy. Confidentiality and availability are not directly affected, and the attacker must already hold an authenticated backend session.

Root Cause

The DataHandler::moveRecord flow contained a conditional branch handling the case where the source pid differs from the target pid. That branch only invoked hasPermissionToInsert() against the target page. It never called hasPermissionToUpdate() against the source page record, leaving the source page completely unchecked during move operations.

Attack Vector

An authenticated backend user with insert permissions on any destination page can issue a move request through the standard TYPO3 backend interface or DataHandler API. The request specifies a source record located on a page the user cannot edit. Because the source-side permission check was missing, the move succeeds and the record is relocated. No user interaction beyond the attacker's own action is required.

php
// Security patch in DataHandler.php (TYPO3 fix)
} else {
    if ($isMovingToDifferentPid) {
+       if (!$this->hasPermissionToUpdate($table, $sourcePageRecord)) {
+           // When record is moved to different target, update permissions on source page are needed
+           $this->log($table, $sourceUid, SystemLogDatabaseAction::MOVE, null,
+               SystemLogErrorClassification::USER_ERROR,
+               'Attempt to move record {table}:{uid} to pid "{targetPid}" without having permissions to update the source page (uid={sourcePid})',
+               null,
+               ['table' => $table, 'uid' => $sourceUid, 'targetPid' => $updateFields['pid'], 'sourcePid' => $sourcePid],
+               $sourcePid);
+           return;
+       }
        if (!$this->hasPermissionToInsert($table, $updateFields['pid'], $targetPageRecord)) {
            // When record is moved to different page, insert permissions on target are needed
            $this->log($table, $sourceUid, SystemLogDatabaseAction::MOVE, null,
                SystemLogErrorClassification::USER_ERROR,
                'Attempt to move record {table}:{uid} to pid "{targetPid}" without having permissions to insert',
                null,
                ['table' => $table, 'uid' => $sourceUid, 'targetPid' => $updateFields['pid']],
                $updateFields['pid']);

Source: TYPO3 commit 1953569

Detection Methods for CVE-2026-47350

Indicators of Compromise

  • TYPO3 sys_log entries with SystemLogDatabaseAction::MOVE referencing source pages the acting backend user does not own or normally edit.
  • Records appearing under pages where the most recent modifying user has no historical edit activity on the prior parent page.
  • Unexpected drops in record counts on protected pages without corresponding deletion log entries.

Detection Strategies

  • Audit the sys_log table for MOVE actions and correlate the userid against backend group permissions on the original pid.
  • Review record histories via the TYPO3 backend History/Undo module to identify moves that crossed permission boundaries.
  • Compare snapshots of pages and content tables against backup baselines to detect records that changed pid without a corresponding authorized workflow.

Monitoring Recommendations

  • Forward TYPO3 backend logs to a centralized logging or SIEM platform and alert on MOVE actions performed by non-administrative users.
  • Monitor for repeated move operations from a single backend user across multiple source pages within short time windows.
  • Track changes to backend group and user permission assignments to detect attempts to chain this flaw with permission tampering.

How to Mitigate CVE-2026-47350

Immediate Actions Required

  • Upgrade TYPO3 CMS to version 13.4.32 (or later in the 13.x branch) or version 14.3.4 (or later in the 14.x branch) as published in the TYPO3 security advisory.
  • Review backend user and group permissions to enforce least privilege on page-level edit rights.
  • Audit recent sys_logMOVE entries to identify any unauthorized relocations performed before patching.

Patch Information

The TYPO3 security team released fixes in commits 1953569 and c9898d2. The patch adds a hasPermissionToUpdate() check on the source page record inside DataHandler before allowing a move to a different pid. Move attempts without the required source-page update permission are now rejected and logged as a USER_ERROR. Full vendor details are available in the TYPO3 Core Security Advisory TYPO3-CORE-SA-2026-012.

Workarounds

  • If immediate patching is not feasible, restrict backend access so that only trusted editors hold insert permissions on any pages within the site tree.
  • Temporarily disable record move functionality for non-administrative backend groups via Backend User TSconfig until the patched version is deployed.
  • Increase logging verbosity for DataHandler operations and review move actions daily until the upgrade is applied.
bash
# Verify installed TYPO3 version against fixed releases
php vendor/bin/typo3 --version

# Update via Composer to a patched release
composer require typo3/cms-core:"^13.4.32 || ^14.3.4" -W

# Clear caches after upgrade
php vendor/bin/typo3 cache:flush

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechTypo3

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/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-862
  • Technical References
  • GitHub Commit Details

  • GitHub Commit Details

  • TYPO3 Security Advisory
  • Related CVEs
  • CVE-2026-49741: TYPO3 CMS Auth Bypass Vulnerability

  • CVE-2025-59020: TYPO3 CMS Auth Bypass Vulnerability

  • CVE-2026-47345: typo3/html-sanitizer XSS Vulnerability

  • CVE-2026-47344: TYPO3 HTML Sanitizer XSS 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