The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-42843

CVE-2026-42843: Grav API Plugin Privilege Escalation

CVE-2026-42843 is a privilege escalation vulnerability in Grav API Plugin that allows authenticated users to escalate to Super Administrator access. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-42843 Overview

CVE-2026-42843 is a privilege escalation vulnerability in the Grav API Plugin, a RESTful API providing headless access to Grav CMS content, media, configuration, and system management. The flaw resides in the UsersController::update method and combines an insecure direct object reference with a logic flaw. Any authenticated user holding basic API access (api.access) can modify their own permission configuration. Attackers can elevate their account to Super Administrator by granting themselves admin.super and api.super permissions. This grants full administrative control over the CMS and can lead to remote code execution. The issue is fixed in version 1.0.0-beta.15.

Critical Impact

Authenticated low-privilege users can escalate to Super Administrator, resulting in full system compromise and potential RCE on Grav CMS instances.

Affected Products

  • Grav API Plugin versions prior to 1.0.0-beta.15
  • Grav CMS deployments with the API Plugin enabled
  • Headless Grav implementations exposing the REST API

Discovery Timeline

  • 2026-05-11 - CVE-2026-42843 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42843

Vulnerability Analysis

The vulnerability stems from improper authorization checks in the UsersController::update endpoint of the Grav API Plugin. The endpoint accepts user permission fields in the update payload without validating whether the requesting user has authority to modify those specific fields. An authenticated attacker holding the minimal api.access permission can submit an update request targeting their own user record and inject elevated permissions into the payload. The plugin processes the payload and persists the modified permissions, including administrative scopes like admin.super and api.super. This issue maps to [CWE-863]: Incorrect Authorization.

Root Cause

The root cause is a missing authorization boundary between user-modifiable profile fields and permission-controlling fields. The update handler treats all submitted fields equivalently, trusting client-supplied permission data. There is no role-based check confirming that the caller possesses administrative rights before applying permission changes.

Attack Vector

An attacker first obtains valid credentials for any account with api.access, which may be a standard API consumer or registered user. The attacker sends an authenticated HTTP request to the user update endpoint, targeting their own user identifier. The request body includes a permissions object granting admin.super and api.super privileges. Upon success, the attacker holds Super Administrator rights and can manage system configuration, install plugins, or execute code via Grav's administrative features.

See the GitHub Security Advisory for technical details.

Detection Methods for CVE-2026-42843

Indicators of Compromise

  • Unexpected API requests to the Grav user update endpoint that include admin.super or api.super permission fields in the JSON body.
  • User accounts whose permission set was modified outside of an administrator session or known provisioning workflow.
  • New or existing low-privilege users gaining administrative panel access shortly after authenticating to the API.

Detection Strategies

  • Audit the Grav user store and configuration files for accounts holding admin.super or api.super that were not provisioned by administrators.
  • Inspect web server access logs for PUT or PATCH requests to user update routes originating from non-admin sessions.
  • Correlate authentication events with subsequent permission changes to identify self-elevation patterns.

Monitoring Recommendations

  • Enable verbose API request logging on the Grav API Plugin and forward logs to a centralized analytics platform.
  • Alert on any modification to user permission fields, especially when the actor and the target user are identical.
  • Monitor for downstream administrative actions such as plugin installation, theme uploads, or scheduler edits performed by recently elevated accounts.

How to Mitigate CVE-2026-42843

Immediate Actions Required

  • Upgrade the Grav API Plugin to version 1.0.0-beta.15 or later on all affected instances.
  • Review every user account for unauthorized admin.super or api.super grants and revoke them.
  • Rotate API tokens and credentials for users who held api.access prior to patching.

Patch Information

The maintainers fixed CVE-2026-42843 in Grav API Plugin 1.0.0-beta.15. The patch enforces authorization checks in UsersController::update so that callers cannot modify permission fields without administrative rights. Refer to the GitHub Security Advisory GHSA-r945-h4vm-h736 for release notes.

Workarounds

  • Disable the Grav API Plugin until the patched version can be deployed if upgrade is not immediately possible.
  • Restrict network access to the API endpoints using a reverse proxy or web application firewall, allowing only trusted IP ranges.
  • Remove api.access from non-essential user accounts to reduce the attacker pool that can reach the vulnerable endpoint.

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechGrav

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42844: Grav CMS Privilege Escalation Vulnerability

  • CVE-2026-42842: Grav CMS Form Plugin XSS Vulnerability

  • CVE-2026-44737: Grav Admin Plugin XSS Vulnerability

  • CVE-2026-42841: Getgrav Grav 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