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

CVE-2026-44224: Wiki.js Privilege Escalation Vulnerability

CVE-2026-44224 is a privilege escalation flaw in Requarks Wiki.js that allows moderators to grant themselves administrator access through a GraphQL mutation. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-44224 Overview

CVE-2026-44224 is a privilege escalation vulnerability in Wiki.js, an open source wiki application built on Node.js. The flaw exists in the users.update GraphQL mutation, which accepts an arbitrary groups array and writes it directly to the database without validating the supplied group IDs. Any user holding the manage:users permission — typically delegated to wiki moderators for account administration — can assign themselves to the Administrators group. After re-authentication, the newly issued JSON Web Token (JWT) carries the manage:system permission, granting full site administrator access. The vulnerability affects all versions prior to 2.5.313 and is fixed in that release.

Critical Impact

A moderator-level account can escalate to full Wiki.js administrator in a single GraphQL mutation, enabling complete takeover of wiki content, configuration, and user accounts.

Affected Products

  • Requarks Wiki.js versions prior to 2.5.313
  • Self-hosted Wiki.js deployments delegating manage:users to non-administrators
  • Multi-tenant Wiki.js instances with moderator roles

Discovery Timeline

  • 2026-05-12 - CVE-2026-44224 published to the National Vulnerability Database (NVD)
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-44224

Vulnerability Analysis

The vulnerability resides in the GraphQL resolver backing the users.update mutation. The resolver forwards the caller's arguments directly to the data model layer without enforcing an ownership check or a permission-based allowlist for the groups field. As a result, the input array becomes the authoritative group membership for the targeted user record.

Wiki.js relies on group membership to compute the permission set encoded in the JWT issued at authentication. The Administrators group is bound to the manage:system permission, which controls every administrative function in the application. Because the mutation accepts groups:[1] without verification, a caller can write the administrator group ID to their own profile. The weakness is classified under [CWE-269] Improper Privilege Management.

Root Cause

The resolver trusts client-supplied input for a security-sensitive field. There is no validation that the caller is permitted to assign the requested groups, no separation between profile-edit permissions and group-assignment permissions, and no constraint preventing assignment of higher-privileged groups than the caller already holds. The manage:users permission was intended for routine account management but transitively grants full administrative escalation through this missing check.

Attack Vector

An authenticated user with manage:users issues a GraphQL users.update mutation against their own account ID, supplying a groups array containing the Administrators group ID (commonly 1). The mutation persists the new membership to the database. The attacker logs out and re-authenticates, and the resulting JWT contains manage:system. The attacker now controls site configuration, authentication providers, page content, and all user accounts. Exploitation requires a single network request and no user interaction from any victim. No public proof-of-concept exploit or CISA KEV listing is associated with this CVE at publication.

Detection Methods for CVE-2026-44224

Indicators of Compromise

  • GraphQL requests to the users.update mutation where the groups argument includes the Administrators group ID (typically 1)
  • Unexpected membership changes to the Administrators group recorded in the userGroups join table
  • Re-authentication events from manage:users accounts immediately following a self-targeted users.update call
  • New administrative actions originating from accounts that previously held only moderator-level permissions

Detection Strategies

  • Audit Wiki.js application logs for users.update mutations where the caller's user ID equals the target user ID and the groups payload is modified
  • Compare current group membership against a known-good baseline and alert on additions to administrative groups
  • Correlate JWT-issuance events with recent group membership changes to surface escalation chains

Monitoring Recommendations

  • Forward Wiki.js access and GraphQL logs to a centralized SIEM or data lake for retention and correlation
  • Generate alerts on any membership change affecting the Administrators group, regardless of source account
  • Track the running Wiki.js version across hosts and flag instances below 2.5.313

How to Mitigate CVE-2026-44224

Immediate Actions Required

  • Upgrade all Wiki.js instances to version 2.5.313 or later without delay
  • Review the Administrators group membership and remove any accounts that should not hold manage:system
  • Revoke active sessions and force re-authentication after auditing group membership
  • Rotate API tokens and integration credentials issued from potentially compromised administrator accounts

Patch Information

The maintainers fixed the vulnerability in Wiki.js 2.5.313 by adding validation to the users.update resolver so that group assignment is restricted to authorized callers. Refer to the Wiki.js GitHub Security Advisory GHSA-cq3g-mwrg-v2rv for the official advisory and patch details.

Workarounds

  • Restrict the manage:users permission to fully trusted administrators until the upgrade is applied
  • Place Wiki.js behind a reverse proxy or web application firewall (WAF) rule that blocks users.update mutations containing a groups field for non-administrator sessions
  • Temporarily disable moderator-tier roles that include manage:users if upgrading is not immediately feasible
bash
# Upgrade Wiki.js to the patched release
docker pull ghcr.io/requarks/wiki:2.5.313
docker stop wiki && docker rm wiki
docker run -d --name wiki --restart unless-stopped \
  -e DB_TYPE=postgres -e DB_HOST=db -e DB_PORT=5432 \
  -e DB_USER=wiki -e DB_PASS=*** -e DB_NAME=wiki \
  -p 3000:3000 ghcr.io/requarks/wiki:2.5.313

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechRequarks Wiki.js

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/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-269

  • NVD-CWE-noinfo
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-56643: Requarks Wiki.js Auth Bypass 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