Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-33326

CVE-2026-33326: Keystone CMS Auth Bypass Vulnerability

CVE-2026-33326 is an authentication bypass flaw in Keystone CMS that allows attackers to bypass access controls in findMany queries. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33326 Overview

CVE-2026-33326 is an Authorization Bypass vulnerability in Keystone, a popular content management system for Node.js. Prior to version 6.5.2, the {field}.isFilterable access control mechanism can be bypassed in findMany queries by passing a cursor parameter. This bypass allows attackers to confirm the existence of records by accessing protected field values, effectively circumventing the intended access control restrictions.

This vulnerability represents an incomplete fix for the previously disclosed CVE-2025-46720, which addressed field-level isFilterable bypass for update and delete mutations. While that patch added checks to the where parameter in update and delete mutations, the cursor parameter in findMany queries was overlooked and continues to accept the same UniqueWhere input type, creating an exploitable access control gap.

Critical Impact

Unauthorized information disclosure through access control bypass allows attackers to enumerate and confirm the existence of sensitive records protected by field-level access controls.

Affected Products

  • Keystone CMS for Node.js versions prior to 6.5.2

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-33326 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33326

Vulnerability Analysis

This vulnerability stems from an improper authorization check (CWE-863) in the Keystone CMS GraphQL API. The isFilterable access control is designed to prevent unauthorized users from filtering or querying records based on sensitive field values. However, due to incomplete patching of a related vulnerability, the cursor-based pagination mechanism bypasses these controls.

When a GraphQL findMany query is executed with a cursor parameter, the system accepts a UniqueWhere input type that allows specification of field values for record identification. Because the isFilterable check is not applied to the cursor parameter processing path, an attacker can craft queries that use protected field values in the cursor, effectively probing for the existence of records with specific field values.

The attack allows for information disclosure through boolean-based enumeration—by observing whether queries succeed or fail, an attacker can confirm whether records with specific protected field values exist in the database.

Root Cause

The root cause is an incomplete patch for CVE-2025-46720. While the original fix correctly implemented isFilterable checks for where parameters in update and delete mutations, the same validation was not extended to the cursor parameter in findMany queries. Since both parameters accept the same UniqueWhere input type, this oversight creates a parallel attack path that bypasses the intended access controls.

Attack Vector

The attack is network-based and requires low privileges (authenticated access to the GraphQL API). An attacker with valid API credentials can craft findMany GraphQL queries with malicious cursor parameters containing protected field values. By analyzing the response behavior, the attacker can enumerate records and confirm the existence of specific values in protected fields.

The attack flow involves:

  1. Identifying a protected field with isFilterable access control enabled
  2. Crafting a findMany GraphQL query with a cursor parameter containing a suspected field value
  3. Analyzing the API response to determine if a record matching that value exists
  4. Iterating through potential values to enumerate protected data

For technical implementation details and specific query structures, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33326

Indicators of Compromise

  • Unusual patterns of findMany GraphQL queries with cursor parameters targeting protected fields
  • High volume of sequential queries with varying cursor values from the same authenticated session
  • API error logs showing access control violations or unexpected cursor-based lookups
  • Authenticated users querying fields they should not have access to filter

Detection Strategies

  • Implement logging for all GraphQL queries that include cursor parameters with field-specific values
  • Create alerts for enumeration patterns (multiple rapid cursor queries from single sources)
  • Monitor for queries targeting known protected isFilterable fields via cursor parameters
  • Deploy Web Application Firewall (WAF) rules to detect suspicious cursor parameter patterns

Monitoring Recommendations

  • Enable detailed GraphQL query logging including full parameter inspection
  • Set up anomaly detection for cursor-based pagination abuse patterns
  • Review access logs for authenticated users making unusual data discovery attempts
  • Implement rate limiting on GraphQL endpoints to slow enumeration attacks

How to Mitigate CVE-2026-33326

Immediate Actions Required

  • Upgrade Keystone CMS to version 6.5.2 or later immediately
  • Audit access logs for potential exploitation attempts prior to patching
  • Review which fields have isFilterable access controls to assess exposure scope
  • Consider temporarily restricting GraphQL API access while patching is performed

Patch Information

The vulnerability has been patched in Keystone CMS version 6.5.2. Organizations should update their Keystone installations by running their standard package update procedures. The patch extends the isFilterable access control checks to cover the cursor parameter in findMany queries, closing the bypass vector.

For detailed patch information and upgrade instructions, refer to the GitHub Security Advisory.

Workarounds

  • If immediate patching is not possible, consider implementing additional access control layers at the API gateway level
  • Restrict GraphQL endpoint access to trusted networks or VPN-only access
  • Implement custom middleware to validate and sanitize cursor parameters before they reach Keystone
  • Audit and minimize the use of sensitive fields that rely solely on isFilterable for protection
bash
# Upgrade Keystone to patched version
npm update @keystone-6/core@6.5.2

# Or using yarn
yarn upgrade @keystone-6/core@6.5.2

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechKeystone

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync 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