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-2021-47812

CVE-2021-47812: GravCMS RCE Vulnerability via Scheduler

CVE-2021-47812 is an unauthenticated remote code execution vulnerability in GravCMS 1.10.7. Attackers can exploit the scheduler endpoint to inject malicious payloads and execute arbitrary PHP code. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: January 23, 2026

CVE-2021-47812 Overview

CVE-2021-47812 is a critical unauthenticated remote code execution vulnerability affecting GravCMS version 1.10.7. This vulnerability allows remote attackers to write arbitrary YAML configuration files and execute PHP code through the scheduler endpoint without authentication. Attackers can exploit the admin-nonce parameter to inject base64-encoded payloads and create malicious custom jobs that execute system commands on the target server.

Critical Impact

Unauthenticated attackers can achieve full remote code execution on vulnerable GravCMS installations, potentially leading to complete system compromise, data exfiltration, and lateral movement within the network.

Affected Products

  • GravCMS 1.10.7
  • Potentially earlier versions of GravCMS with the scheduler endpoint

Discovery Timeline

  • 2026-01-16 - CVE-2021-47812 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2021-47812

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization), indicating that the scheduler endpoint in GravCMS 1.10.7 fails to properly authenticate or authorize incoming requests before processing them. The absence of authentication checks on this critical administrative function allows any remote attacker to interact with the scheduler and inject malicious configurations.

The exploitation mechanism centers around the scheduler endpoint's handling of the admin-nonce parameter. When crafted requests containing base64-encoded payloads are submitted to this endpoint, the application processes them without verifying the legitimacy of the request source. This allows attackers to write arbitrary YAML configuration data, which GravCMS subsequently parses and executes as part of its job scheduling functionality.

Root Cause

The root cause of CVE-2021-47812 is the missing authorization checks on the GravCMS scheduler endpoint. The application fails to validate whether incoming requests originate from authenticated administrative users before processing scheduler-related operations. This design flaw enables unauthenticated users to access functionality that should be restricted to privileged administrators only.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can send specially crafted HTTP requests to the vulnerable scheduler endpoint, exploiting the admin-nonce parameter to inject base64-encoded payloads. These payloads create custom scheduler jobs containing malicious PHP code or system commands. When the scheduler processes these jobs, the injected code executes with the privileges of the web server process, granting the attacker arbitrary code execution capabilities.

The attack sequence involves:

  1. Identifying a vulnerable GravCMS 1.10.7 installation
  2. Crafting a malicious payload with system commands encoded in base64
  3. Sending the payload via the admin-nonce parameter to the scheduler endpoint
  4. The scheduler writes the malicious YAML configuration
  5. Upon job execution, the attacker's code runs on the server

For technical details on the exploitation methodology, refer to the Exploit-DB #49973 advisory and the VulnCheck Advisory on GravCMS.

Detection Methods for CVE-2021-47812

Indicators of Compromise

  • Unexpected HTTP requests to the GravCMS scheduler endpoint containing base64-encoded data in the admin-nonce parameter
  • Unauthorized modifications to YAML configuration files in the GravCMS installation directory
  • Creation of suspicious scheduler jobs that were not configured by administrators
  • Unusual process execution spawned from the web server process (e.g., www-data or apache)

Detection Strategies

  • Monitor web server access logs for POST requests to scheduler-related endpoints with suspicious admin-nonce parameters
  • Implement file integrity monitoring on GravCMS configuration directories to detect unauthorized YAML file modifications
  • Deploy web application firewalls (WAF) with rules to detect base64-encoded command injection attempts
  • Use endpoint detection and response (EDR) solutions to identify anomalous process trees originating from web server processes

Monitoring Recommendations

  • Enable detailed logging for the GravCMS application and review for scheduler-related activities
  • Configure alerts for any scheduler job creation or modification events
  • Monitor network traffic for outbound connections from web servers that may indicate successful exploitation and command-and-control communication
  • Implement behavioral analysis to detect unusual system command execution patterns

How to Mitigate CVE-2021-47812

Immediate Actions Required

  • Identify all GravCMS installations running version 1.10.7 or earlier in your environment
  • If upgrading is not immediately possible, restrict network access to the scheduler endpoint using firewall rules or web server configuration
  • Review existing scheduler jobs and YAML configurations for any unauthorized modifications
  • Monitor affected systems for signs of compromise while remediation is in progress

Patch Information

Organizations running vulnerable versions of GravCMS should upgrade to a patched version as soon as possible. Consult the Grav CMS Official Site for the latest security updates and version information. The VulnCheck Advisory on GravCMS provides additional details on the vulnerability and remediation guidance.

Workarounds

  • Disable the scheduler functionality if it is not required for your GravCMS deployment
  • Implement IP-based access controls to restrict access to administrative endpoints, including the scheduler
  • Use a reverse proxy or WAF to block requests to the vulnerable endpoint until patching is complete
  • Consider placing the GravCMS installation behind a VPN for additional access control
bash
# Example Apache configuration to restrict scheduler endpoint access
<Location "/admin/scheduler">
    Require ip 192.168.1.0/24
    # Only allow access from trusted internal network
</Location>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGravcms

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-862
  • Technical References
  • Grav CMS Official Site

  • Exploit-DB #49973

  • VulnCheck Advisory on GravCMS
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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