CVE-2026-33326
JavaScript vulnerability analysis and mitigation

Overview

CVE-2026-33326 is an incorrect authorization vulnerability in Keystone, a Node.js content management system, that allows low-privileged attackers to bypass isFilterable access controls via the cursor parameter in findMany GraphQL queries. This is an incomplete fix for CVE-2025-46720, which patched the where parameter in update and delete mutations but left the cursor parameter in findMany unaddressed. All versions of @keystone-6/core up to and including 6.5.1 are affected. It was disclosed on March 19, 2026, with a CVSS v3.1 base score of 4.3 (Medium) (GitHub Advisory).

Technical details

The root cause is CWE-863 (Incorrect Authorization): the cursor parameter in Keystone's findMany GraphQL query accepts the same UniqueWhere input type as the where parameter, but the access control check enforcing isFilterable restrictions was not applied to it. When the prior fix for CVE-2025-46720 was implemented, only the where parameter in update and delete mutations received the isFilterable check; the cursor parameter in findMany was overlooked. An authenticated, low-privileged attacker can craft GraphQL findMany queries using the cursor parameter with values of protected fields to probe for record existence — effectively using the cursor as a filter oracle. This bypass only affects projects using isFilterable as a function (dynamic access control); projects using static isFilterable: false or defaultIsFilterable: false are not impacted (GitHub Advisory).

Impact

Successful exploitation allows a low-privileged attacker to confirm the existence of records by probing protected field values through the cursor parameter, constituting a confidentiality breach limited to record existence disclosure. There is no impact on data integrity or availability. Projects relying on dynamic isFilterable functions to prevent field-based discovery are at risk of having sensitive data enumerated, such as confirming whether a user with a specific email or identifier exists in the database (GitHub Advisory).

Exploitability

No public exploit code or in-the-wild exploitation has been reported for this vulnerability. The EPSS score is approximately 0.008% (0.000080), indicating a very low probability of exploitation in the near term. The vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. Exploitation requires a valid (low-privileged) account on the target Keystone application, limiting the attacker pool (GitHub Advisory).

Exploitation steps

  1. Authenticate: Obtain a low-privileged account on the target Keystone application (e.g., a standard user account).
  2. Identify protected fields: Review the application's GraphQL schema to identify list types with fields that have isFilterable access control configured as a function.
  3. Craft a cursor-based probe query: Send a GraphQL findMany query using the cursor parameter with a UniqueWhere input targeting a protected field value. For example:
query {
  users(cursor: { email: "target@example.com" }) {
    id
  }
}
  1. Interpret the response: Observe whether the query returns results or an empty set. A non-empty result (or a specific error vs. empty response) confirms the existence of a record with the probed field value.
  2. Enumerate records: Repeat with different field values to systematically confirm the existence of records protected by isFilterable access controls (GitHub Advisory).

Indicators of compromise

  • Network: Repeated GraphQL findMany queries to the Keystone GraphQL endpoint containing cursor parameters with varying field values (especially fields expected to be protected), originating from a single authenticated user or IP address.
  • Logs: Application or web server logs showing high-frequency findMany GraphQL requests with cursor arguments targeting unique fields (e.g., email, username, or other sensitive identifiers) from the same session or token.
  • Behavior: Systematic enumeration patterns in GraphQL query logs — sequential or dictionary-based values passed to the cursor parameter across many requests in a short time window.

Mitigation and workarounds

Upgrade @keystone-6/core to version 6.5.2 or later, which patches the cursor parameter in findMany queries to enforce isFilterable access controls. For projects unable to upgrade immediately, two workarounds are available: (1) set {field}.isFilterable: false statically (not as a function) for sensitive fields to block filtering earlier in the access control pipeline, or (2) set {field}.graphql.omit.read: true for relevant fields, which removes them from the GraphQL schema entirely and prevents cursor-based filtering. Projects already using static isFilterable: false or defaultIsFilterable: false are not affected and require no action (GitHub Advisory).

Additional resources


SourceThis report was generated using AI

Related JavaScript vulnerabilities:

CVE ID

Severity

Score

Technologies

Component name

CISA KEV exploit

Has fix

Published date

CVE-2026-59160HIGH8.8
  • JavaScript logoJavaScript
  • @yeger/turbo-graph
NoYesSep 09, 2026
CVE-2026-59179HIGH8.3
  • JavaScript logoJavaScript
  • @openhop/server
NoYesSep 09, 2026
GHSA-x7m8-jrm8-hpvxHIGH8.1
  • JavaScript logoJavaScript
  • @eigenpal/docx-editor-core
NoYesSep 10, 2026
CVE-2026-59176HIGH7.8
  • JavaScript logoJavaScript
  • functype-mcp-server
NoYesSep 09, 2026
CVE-2026-59158HIGH7.5
  • JavaScript logoJavaScript
  • nuxt-ollama
NoYesSep 09, 2026

Free Vulnerability Assessment

Benchmark your Cloud Security Posture

Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.

Request assessment

Get a personalized demo

Ready to see Wiz in action?

"Best User Experience I have ever seen, provides full visibility to cloud workloads."
David EstlickCISO
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
Adam FletcherChief Security Officer
"We know that if Wiz identifies something as critical, it actually is."
Greg PoniatowskiHead of Threat and Vulnerability Management