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

CVE-2026-34358: CtrlPanel Privilege Escalation Flaw

CVE-2026-34358 is a privilege escalation vulnerability in CtrlPanel billing software that allows authenticated users to bypass access controls and gain admin privileges. This article covers technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-34358 Overview

CVE-2026-34358 is a broken access control vulnerability [CWE-284] in CtrlPanel, an open-source billing platform for hosting providers. Versions 1.1.1 and prior enforce role-based access control (RBAC) checks on form display methods in multiple admin controllers but omit those checks on the corresponding write methods. Any authenticated user can bypass RBAC by issuing direct POST or PATCH requests to the affected endpoints. Successful exploitation enables full privilege escalation, including modifying user roles, credits, and passwords. The issue is fixed in version 1.2.0.

Critical Impact

Authenticated users without admin write privileges can issue API credentials, manipulate billing data, reassign server ownership, and elevate their own accounts to administrator.

Affected Products

  • CtrlPanel versions 1.1.1 and prior
  • CtrlPanel admin controllers including ApplicationApiController, CouponController, PartnerController, ShopProductController, UsefulLinkController, and VoucherController
  • CtrlPanel ProductController, ServerController, UserController, and ActivityLogController write endpoints

Discovery Timeline

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

Technical Details for CVE-2026-34358

Vulnerability Analysis

The vulnerability stems from inconsistent RBAC enforcement across admin controllers. CtrlPanel applies permission middleware to methods that render forms but fails to apply equivalent middleware to the store() and update() methods that process submitted data. An attacker with any authenticated session can call these write endpoints directly through crafted HTTP requests.

Multiple controllers are missing checks on both store() and update(), including ApplicationApiController (admin.api.write), CouponController (admin.coupons.write), PartnerController (admin.partners.write), ShopProductController (admin.store.write), UsefulLinkController (admin.useful_links.write), and VoucherController (admin.voucher.write). Additional controllers, including ProductController, ServerController, and UserController, lack checks on update() only. ActivityLogController exposed empty stub store() and update() methods that silently accepted any request.

Root Cause

The root cause is a missing authorization control [CWE-284] pattern repeated across the admin namespace. Permission gates were attached only to read-side rendering routes. The write-side controller actions did not inherit or re-declare the corresponding gate, leaving the mutation endpoints unprotected.

Attack Vector

An attacker authenticates as any low-privilege user and submits direct POST or PATCH requests to admin write routes. The attacker can generate unlimited coupons and vouchers, assign arbitrary partner commission and discount rates, alter shop product pricing, reassign server ownership or identifiers, and modify user accounts including roles, credits, passwords, and linked Pterodactyl IDs. The attacker can also abuse logBackIn() without the login_as permission to interfere with admin impersonation sessions. See the GitHub Security Advisory GHSA-pxmw-gj52-9p68 for the full list of affected routes.

Detection Methods for CVE-2026-34358

Indicators of Compromise

  • Unexpected POST or PATCH requests from non-admin user sessions to routes such as /admin/api, /admin/coupons, /admin/vouchers, /admin/partners, /admin/store, /admin/users, and /admin/servers
  • New API credentials, coupons, or vouchers created by accounts lacking the corresponding admin.*.write permission
  • User records showing role changes, credit increases, password resets, or modified Pterodactyl IDs without a matching admin action audit entry
  • Server ownership or identifier reassignments performed by non-administrative accounts

Detection Strategies

  • Review web server and application logs for write requests to /admin/* endpoints initiated by sessions whose user role does not include the matching write permission
  • Correlate database change events on users, coupons, vouchers, partners, and products tables with the authenticated user ID responsible for the change
  • Alert on calls to logBackIn() from accounts that do not hold the login_as permission

Monitoring Recommendations

  • Enable verbose audit logging for all admin namespace routes and forward logs to a centralized SIEM for analysis
  • Baseline normal administrative write activity and alert on deviations such as bulk voucher creation or rapid role changes
  • Monitor authentication and impersonation events for sessions that switch between user contexts unexpectedly

How to Mitigate CVE-2026-34358

Immediate Actions Required

  • Upgrade CtrlPanel to version 1.2.0 or later without delay
  • Rotate all admin API credentials, user passwords, and session tokens after upgrading
  • Audit the users, coupons, vouchers, partners, products, and servers tables for unauthorized changes made while running affected versions
  • Review activity logs for unexpected impersonation events triggered through logBackIn()

Patch Information

The fix is available in CtrlPanel 1.2.0, which adds the missing permission checks to all affected store() and update() methods and removes the silent stub handlers in ActivityLogController. See the GitHub Release 1.2.0 for full release notes.

Workarounds

  • If patching cannot occur immediately, restrict access to the /admin/* route group at the reverse proxy or web server layer to known administrator IP addresses
  • Disable new user registration to limit the pool of authenticated accounts able to reach the vulnerable endpoints
  • Temporarily revoke non-essential user sessions and require re-authentication after the upgrade is complete
bash
# Example: restrict admin routes to a trusted IP range in nginx
location /admin/ {
    allow 203.0.113.0/24;
    deny all;
    proxy_pass http://ctrlpanel_backend;
}

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechCtrlpanel

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Release 1.2.0

  • GitHub Security Advisory GHSA-pxmw-gj52-9p68
  • Related CVEs
  • CVE-2026-34246: CtrlPanel Stored XSS Vulnerability

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

  • CVE-2026-34241: CtrlPanel Stored XSS Vulnerability

  • 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