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-2024-24822

CVE-2024-24822: Pimcore Admin Classic Bundle Auth Bypass

CVE-2024-24822 is an authorization bypass vulnerability in Pimcore Admin Classic Bundle that allows attackers to create and delete tags without proper permissions. This article covers technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-24822 Overview

CVE-2024-24822 is a critical Missing Authorization vulnerability affecting Pimcore's Admin Classic Bundle, which provides a backend user interface for the Pimcore content management platform. Prior to version 1.3.3, an attacker can create, delete, and modify tags without having the required permission to do so. This vulnerability stems from missing permission checks in the TagsController, allowing unauthorized users to manipulate tag resources.

Critical Impact

Unauthenticated attackers can perform unauthorized tag operations including creation and deletion, potentially leading to data integrity issues and denial of service through resource manipulation.

Affected Products

  • Pimcore Admin Classic Bundle versions prior to 1.3.3
  • pimcore:admin_classic_bundle (all versions before the security patch)

Discovery Timeline

  • 2024-02-07 - CVE-2024-24822 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-24822

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization), which occurs when a web application does not perform access control checks to verify that a user is authorized to perform the requested action. In the context of Pimcore's Admin Classic Bundle, the TagsController.php file lacked proper permission verification before executing tag-related operations.

The vulnerability allows unauthenticated or low-privileged users to interact with the tag management functionality without possessing the tags_configuration permission. This represents a complete bypass of the intended access control mechanism, enabling attackers to create arbitrary tags, delete existing tags, and potentially disrupt content organization and workflow processes within the Pimcore CMS.

Root Cause

The root cause of CVE-2024-24822 is the absence of permission checks in the TagsController class. Specifically, the addAction method (and likely other tag manipulation methods) did not call the checkPermission() function to verify that the requesting user had the required tags_configuration permission before processing tag operations.

Attack Vector

The attack vector for this vulnerability is network-based, requiring no user interaction and no prior authentication. An attacker can exploit this vulnerability by directly sending HTTP requests to the Pimcore admin endpoints responsible for tag management. Since no permission verification is performed, the application processes these requests regardless of the attacker's authorization level.

php
// Security patch in src/Controller/Admin/TagsController.php
// Fix: Tag access rights (#412)
      */
     public function addAction(Request $request): JsonResponse
     {
+        $this->checkPermission('tags_configuration');
+
         try {
             $tag = new Tag();
             $tag->setName(strip_tags($request->get('text', '')));

Source: GitHub Commit 24660b6d

Detection Methods for CVE-2024-24822

Indicators of Compromise

  • Unexpected creation or deletion of tags in the Pimcore admin interface
  • Unusual HTTP requests to /admin/tags/add, /admin/tags/delete, or similar tag management endpoints
  • Log entries showing tag operations from unauthorized or unauthenticated sessions
  • Anomalous patterns in tag-related database tables indicating bulk manipulation

Detection Strategies

  • Monitor web application logs for requests to tag controller endpoints from sessions lacking appropriate permissions
  • Implement web application firewall (WAF) rules to detect and alert on unusual tag management activity patterns
  • Audit Pimcore access logs for tag operations performed by users without tags_configuration permissions
  • Deploy runtime application self-protection (RASP) to detect authorization bypass attempts

Monitoring Recommendations

  • Enable detailed logging for all Pimcore admin controller actions
  • Configure alerting for tag creation or deletion events outside normal business operations
  • Implement database-level auditing on tag-related tables to track unauthorized modifications
  • Review access control configurations regularly to ensure proper permission assignments

How to Mitigate CVE-2024-24822

Immediate Actions Required

  • Upgrade Pimcore Admin Classic Bundle to version 1.3.3 or later immediately
  • Audit existing tags for unauthorized modifications or suspicious entries
  • Review application logs for evidence of exploitation prior to patching
  • Temporarily restrict network access to the Pimcore admin interface if immediate patching is not possible

Patch Information

The fix for CVE-2024-24822 is available in Pimcore Admin Classic Bundle version 1.3.3. The security patch adds the missing $this->checkPermission('tags_configuration') call to tag manipulation methods in TagsController.php, ensuring proper authorization verification before processing requests.

For detailed information about the fix, refer to:

  • GitHub Security Advisory GHSA-3rfr-mpfj-2jwq
  • GitHub Pull Request #412
  • Security Patch Commit

Workarounds

  • Apply the patch manually by adding the $this->checkPermission('tags_configuration') check to the TagsController.php file
  • Implement network-level access controls to restrict access to the Pimcore admin interface to trusted IP addresses only
  • Deploy a reverse proxy or WAF rule to block unauthorized requests to tag management endpoints
  • Disable or restrict access to tag functionality at the application level until the official patch can be applied
bash
# Update Pimcore Admin Classic Bundle to patched version
composer update pimcore/admin-ui-classic-bundle --with-dependencies

# Verify the installed version
composer show pimcore/admin-ui-classic-bundle | grep version
# Expected output: version >= 1.3.3

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPimcore

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.00%

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

  • GitHub Pull Request #412

  • GitHub Security Advisory GHSA-3rfr-mpfj-2jwq
  • Related CVEs
  • CVE-2026-23494: Pimcore Auth Bypass Vulnerability

  • CVE-2026-23495: Pimcore Auth Bypass Vulnerability

  • CVE-2026-23496: Pimcore Web2Print Auth Bypass Flaw

  • CVE-2026-27461: Pimcore SQL Injection 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