CVE-2026-33326: @keystone-6/core: `isFilterable` bypass via `cursor` parameter in findMany
Summary {field}.isFilterable access control can be bypassed in findMany queries by passing a cursor. This can be used to confirm the existence of records by protected field values.
The fix for CVE-2025-46720 (field-level isFilterable bypass for update and delete mutations) added checks to the where parameter in update and delete mutations however the cursor parameter in findMany was not patched and accepts the same UniqueWhere input type.
Impact This affects any project relying on isFilterable behaviour (at the list or field level) to prevent external users from using the filtering of fields as a discovery mechanism. isFilterable access control using a function can be bypassed by using the cursor input.
This has no impact on projects using isFilterable: false or defaultIsFilterable: false for sensitive fields, or if you have otherwise omitted filtering by these fields from your GraphQL schema. (See workarounds)
Patches This issue has been patched in @keystone-6/core version 6.5.2.
Workarounds To mitigate this issue in older versions where patching is not a viable pathway.
- Set {field}.isFilterable: false statically for relevant fields to prevent filtering by them earlier in the access control pipeline (that is, don't use functions) - Set {field}.graphql.omit.read: true for relevant fields, which implicitly removes filtering by these fields your GraphQL schema
Other sources
Keystone is a content management system for Node.js. Prior to version 6.5.2, {field}.isFilterable access control can be bypassed in findMany queries by passing a cursor. This can be used to confirm the existence of records by protected field values. The fix for CVE-2025-46720 (field-level isFilterable bypass for update and delete mutations) added checks to the where parameter in update and delete mutations however the cursor parameter in findMany was not patched and accepts the same UniqueWhere input type. This issue has been patched in version 6.5.2.
— MITRE
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-33326?
CVE-2026-33326 has been rated as a high severity vulnerability due to its impact on data confidentiality.
How do I fix CVE-2026-33326?
To fix CVE-2026-33326, upgrade the @keystone-6/core package to version 6.5.2 or higher.
What type of vulnerability is CVE-2026-33326?
CVE-2026-33326 is an access control vulnerability that can allow unauthorized confirmation of protected records.
What software is affected by CVE-2026-33326?
CVE-2026-33326 affects versions of @keystone-6/core up to and including 6.5.1.
Can CVE-2026-33326 affect production environments?
Yes, CVE-2026-33326 can impact production environments by potentially exposing sensitive data.