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

CVE-2026-34241: CtrlPanel Stored XSS Vulnerability

CVE-2026-34241 is a stored XSS vulnerability in CtrlPanel's ticket notification system that enables session hijacking and privilege escalation. This article covers technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-34241 Overview

CtrlPanel is open-source billing software used by hosting providers to manage customers, servers, and support tickets. CVE-2026-34241 is a Stored Cross-Site Scripting (XSS) vulnerability in the ticket reply notification system affecting versions 1.1.1 and prior. Unsanitized ticket reply content is persisted in database notification payloads and later rendered unescaped in the recipient's browser. A low-privileged user can inject arbitrary JavaScript that executes in an administrator's session when the admin views the notification. The flaw is also exploitable in the reverse direction, allowing a malicious admin to target regular users. The issue is fixed in version 1.2.0.

Critical Impact

A low-privileged attacker can execute JavaScript in an admin's session, hijack the session, harvest credentials, and perform privileged actions on the victim's behalf.

Affected Products

  • CtrlPanel (Ctrlpanel-gg/panel) versions 1.1.1 and prior
  • App\Notifications\Ticket\Admin\AdminReplyNotification component
  • App\Notifications\Ticket\User\ReplyNotification component

Discovery Timeline

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

Technical Details for CVE-2026-34241

Vulnerability Analysis

The vulnerability is a Stored Cross-Site Scripting flaw [CWE-79] in the ticket reply notification path. When a user submits a ticket reply, the $newmessage value is captured and persisted directly into the notification payload stored in the database. The recipient's notifications view renders this payload using Blade's raw output directive {!! !!}, which bypasses HTML escaping. As a result, any HTML or JavaScript embedded in a reply executes in the browser of the recipient when they view the notification.

Two notification classes implement this unsafe pattern. AdminReplyNotification is triggered when a regular user replies to a ticket and is delivered to administrators. ReplyNotification is triggered when an administrator replies and is delivered to the ticket owner. Both branches share the same unescaped rendering behavior.

Root Cause

The root cause is missing output encoding combined with the use of Blade's raw rendering syntax. User-controlled reply content is trusted as safe HTML at render time rather than treated as untrusted input. Sanitization is not applied at write time, and escaping is explicitly disabled at read time, removing both layers of defense against script injection.

Attack Vector

Exploitation requires an authenticated low-privileged account and user interaction by the recipient. The attacker opens or replies to a support ticket and includes a JavaScript payload such as a script tag or an event handler attribute within the reply body. The payload is stored verbatim and dispatched as a notification to administrators. When an administrator opens the notification list, the script executes in the administrator's authenticated session, enabling session cookie theft, fake login overlays, keylogging, and forged administrative requests. The same flow applies in reverse from a compromised admin account to a targeted user.

No verified public exploit code is currently available for this issue. Refer to the GitHub Security Advisory GHSA-cmrr-q3hw-3vqh for vendor technical details.

Detection Methods for CVE-2026-34241

Indicators of Compromise

  • Ticket reply records containing <script>, onerror=, onload=, or javascript: substrings in the message body.
  • Notification payload rows in the database with raw HTML tags in fields rendered by AdminReplyNotification or ReplyNotification.
  • Unexpected outbound requests from admin browsers to attacker-controlled hosts immediately after viewing the notifications panel.
  • New or modified admin accounts, password changes, or privilege grants shortly after a low-privileged user submits a ticket reply.

Detection Strategies

  • Inspect the notifications table and ticket reply storage for HTML or JavaScript syntax in user-supplied fields.
  • Review web server access logs for admin sessions issuing unusual POST requests immediately after loading the notifications view.
  • Audit Blade templates referencing {!! !!} against user-controlled notification fields to identify the unsafe rendering site.

Monitoring Recommendations

  • Alert on creation of administrative users or role changes correlated with recent ticket reply activity from non-privileged accounts.
  • Monitor browser-side Content Security Policy (CSP) violation reports for inline script execution on CtrlPanel admin routes.
  • Track repeated ticket replies from a single low-privileged account that contain encoded HTML entities or unusual special-character density.

How to Mitigate CVE-2026-34241

Immediate Actions Required

  • Upgrade CtrlPanel to version 1.2.0 or later, which contains the official fix.
  • Rotate administrator session cookies, API tokens, and passwords if the panel has been exposed to untrusted users prior to patching.
  • Review recent ticket replies and notifications for injected HTML or JavaScript and purge affected rows.
  • Audit administrative actions performed since the vulnerable version was deployed to identify unauthorized changes.

Patch Information

The maintainers released the fix in CtrlPanel version 1.2.0. The patched release sanitizes notification content and removes unsafe raw Blade rendering of user-supplied reply text. Release notes are available at the GitHub Release v1.2.0 page, and the coordinated disclosure details are in the GitHub Security Advisory GHSA-cmrr-q3hw-3vqh.

Workarounds

  • Restrict ticket submission to vetted accounts until the upgrade to 1.2.0 is complete.
  • Apply a Content Security Policy that disallows inline scripts on administrative routes to limit payload execution.
  • Manually patch the affected Blade templates to replace {!! $message !!} with the escaped {{ $message }} directive as an interim fix, then redeploy.
bash
# Upgrade CtrlPanel to the patched release
git fetch --tags
git checkout 1.2.0
composer install --no-dev --optimize-autoloader
php artisan migrate --force
php artisan config:cache
php artisan view:clear

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechCtrlpanel

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Release v1.2.0

  • GitHub Security Advisory GHSA-cmrr-q3hw-3vqh
  • Related CVEs
  • CVE-2026-34246: CtrlPanel Stored XSS Vulnerability

  • CVE-2026-34234: CtrlPanel Billing Software RCE Vulnerability

  • CVE-2026-34358: CtrlPanel Privilege Escalation Flaw

  • CVE-2026-34216: CtrlPanel Billing Software 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