CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



GHSA-8RW6-P7M8-63JP

GHSA-8RW6-P7M8-63JP: Array Element-Level SELECT Permissions Leak in SurrealDB

Alon Barad
Alon Barad
Software Engineer

Aug 14, 2026·6 min read·5 visits

Executive Summary (TL;DR)

An index-shifting flaw during array reduction allows restricted database elements to bypass SELECT permissions, leading to unauthorized data disclosure.

SurrealDB versions supporting element-level SELECT permissions on arrays are vulnerable to a logical authorization bypass. Due to an index-shifting error during array filtration, restricted elements can skip permission checks and leak to unauthorized record users.

Vulnerability Overview

SurrealDB is a multi-model cloud-native database engine written in Rust. It supports fine-grained access control policies, allowing administrators to define table-level and field-level permissions. These permissions are evaluated dynamically during query execution to ensure that users only access authorized data structures.

This specific vulnerability involves an improper authorization mechanism (CWE-285) in SurrealDB's permission evaluation engine. When field-level or element-level SELECT permissions are evaluated on arrays, the database engine can fail to apply restrictions to certain array elements. This failure allows unauthorized authenticated record users to read restricted elements from records they otherwise have access to.

The attack surface is exposed through standard ad-hoc query interfaces, such as the SurrealDB HTTP API or WebSocket endpoints. An attacker authenticated with a low-privilege record account can exploit this flaw by issuing standard SELECT queries against tables with array elements protected by restricted permissions. The vulnerability resides within the document reduction and output pipelines of the database engine.

Root Cause Analysis

The underlying security flaw stems from a logical index-shifting discrepancy during array mutation. When evaluating element-level SELECT permissions (e.g., using field.* or wildcard mappings like items[*]), SurrealDB expands these rules into distinct paths for each array index. The expansion produces sequential index-based target paths such as items[0], items[1], and items[2] using the Value::each function.

When an array element fails its corresponding permission check, the query engine removes it immediately from the active collection. This removal is executed by calling the Value::cut function, which internally invokes Rust's standard vector manipulation function, Vec::remove(index). The removal of an element from a dynamic array causes all subsequent elements in the vector to shift left by one index position.

Because the database engine processed array elements in an ascending, forward-iterating loop, the leftward shift invalidates the alignment of remaining indices. For example, if the element at index 0 is removed, the element at index 1 is immediately shifted to index 0. On the subsequent iteration, the loop counter advances to index 1, completely skipping the evaluation of the element that was just shifted to index 0. Consequently, this skipped element bypasses its permission checks entirely and is returned to the user.

Code Analysis

The vulnerability was present in multiple files governing document processing: reduce.rs, output.rs, and pipeline.rs. In each of these modules, the permission evaluation loops iterated forward over paths generated by each(). The patch implements a simple yet critical change: reversing the iteration sequence (.rev()) so that elements are evaluated and removed from the highest index down to the lowest index.

By processing the vector in reverse order, any index-shifting side effects caused by Vec::remove only affect indices that have already been evaluated. Lower indices that are pending evaluation remain structurally undisturbed in their original positions. This ensures that every element is subject to the permission engine.

Additionally, in the output projection code (doc/output.rs), the patch introduces a lazy snapshot mechanism. It clones the projected output dynamically if element-level permissions are encountered. The engine then reads target values from this immutable snapshot while executing cuts on the active output value, preventing multi-pass alignment mismatches.

// Before the patch in doc/reduce.rs:
match &fd.select_permission {
    Permission::None => {
        for k in original.doc.as_ref().each(&fd.name).iter() {
            doc.doc.to_mut().cut(k);
        }
    }
}
 
// After the patch in doc/reduce.rs:
match &fd.select_permission {
    Permission::None => {
        // SECURITY: iterate in reverse so dynamic cuts do not shift indices
        for k in original.doc.as_ref().each(&fd.name).iter().rev() {
            doc.doc.to_mut().cut(k);
        }
    }
}

Exploitation & Proof-of-Concept Analysis

Exploitation of this vulnerability requires the attacker to hold valid, low-privilege credentials capable of executing SELECT queries on a target table. The target table must have element-level permissions configured on an array field. The attack is executed purely through standard SQL queries, making it highly reliable and independent of memory layout or operating system specifics.

Consider an array containing elements [{n: 0}, {n: 1}, {n: 2}, {n: 3}] where select permission is denied on all elements (WHERE false). In a vulnerable database version, the engine first processes index 0 ({n: 0}). Since it fails, index 0 is cut, shifting {n: 1} to index 0, {n: 2} to index 1, and {n: 3} to index 2.

The loop then advances to index 1, which now contains {n: 2}. It evaluates and cuts {n: 2}, shifting {n: 3} to index 1. The loop then advances to index 2, but the vector length is now 2, terminating the loop. The returned array contains [{n: 1}, {n: 3}]. These odd-indexed elements have completely bypassed the WHERE false restriction, leaking restricted data to the client.

Impact Assessment

The primary security consequence of this vulnerability is unauthorized data disclosure. Attackers with restricted table access can bypass element-level filters to read sensitive fields within records, violating confidentiality guarantees. In multi-tenant environments where shared tables use element-level filters to partition sensitive tenant data, this bypass can lead to cross-tenant data leaks.

The CVSS v3.1 score is evaluated as 6.5 (Medium severity) with the vector CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N. Confidentiality impact is high because unauthorized database record elements can be systematically extracted. There is no impact on integrity or availability, as the logical error is confined to the read path and does not permit unauthorized data modification or denial-of-service states.

While this vulnerability does not allow remote code execution or full system compromise directly, it acts as a significant privilege escalation vector within the database's internal authorization framework. It can be chained with other application-level vulnerabilities to extract critical application state or configuration secrets stored in database tables.

Remediation & Mitigation

The definitive remediation for this vulnerability is upgrading SurrealDB to a patched version that incorporates the reversed iteration logic. The official fix is applied in the codebase via commit 8f89b260bb9692e5b0d58930793d482a8207eedc. Database administrators must deploy this patch to all production and staging instances containing sensitive array configurations.

If an immediate upgrade is not feasible, administrators should modify their schema definitions to avoid element-level permission rules on arrays. Instead of using nested array structures with wildcard permissions (items[*]), developers can normalize the data schema by separating array elements into distinct tables. Standard row-level permissions can then be applied to these separate tables safely.

Another temporary workaround is to enforce filtering within the application layer. The database can be configured with strict table-level restrictions, and the application backend can query the database using administrative privileges and perform element-level filtering manually before delivering responses to end-users. This approach completely bypasses the vulnerable database output pipeline.

Fix Analysis (1)

Technical Appendix

CVSS Score
6.5/ 10
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N

Affected Systems

SurrealDB Core Database Engine

Affected Versions Detail

Product
Affected Versions
Fixed Version
SurrealDB
SurrealDB
Prior to fix commit 8f89b260bb9692e5b0d58930793d482a8207eedcCommit 8f89b260bb9692e5b0d58930793d482a8207eedc
AttributeDetail
CWE IDCWE-285 / CWE-670
Attack VectorNetwork
CVSS v3.16.5 (Medium)
Exploit StatusPoC Available
ImpactPartial Confidentiality Bypass
Remediation StatusOfficial Patch Available

MITRE ATT&CK Mapping

T1078Valid Accounts
Privilege Escalation
T1119Automated Collection
Collection
CWE-285
Improper Authorization

The database engine fails to properly restrict read access to specific array elements despite explicitly defined element-level SELECT rules.

Vulnerability Timeline

Official patch commit 8f89b260bb9692e5b0d58930793d482a8207eedc published
2026-06-08
GHSA-8RW6-P7M8-63JP disclosed on GitHub
2026-06-08

References & Sources

  • [1]GitHub Security Advisory GHSA-8RW6-P7M8-63JP
  • [2]SurrealDB Fix Commit

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•about 1 hour ago•CVE-2026-53653
8.7

CVE-2026-53653: Unauthenticated Denial of Service via Unbounded Image Derivative Dimensions in Grav CMS

Grav CMS prior to version 1.7.53 and 2.0.0-rc.8 is vulnerable to an unauthenticated remote denial of service (DoS) vulnerability. By supplying crafted query parameters with extremely large dimensions to image assets, remote unauthenticated attackers can force the server to allocate massive amounts of system memory, leading to kernel Out-Of-Memory (OOM) termination of web worker processes.

Amit Schendel
Amit Schendel
3 views•7 min read
•about 2 hours ago•CVE-2026-53657
8.2

CVE-2026-53657: Privilege Escalation via Overly Permissive Unix Domain Socket in Lima Guest Agent

CVE-2026-53657 is a local privilege escalation vulnerability in Lima (lima-vm/lima) affecting versions prior to 2.1.3 when configured with the QEMU driver. The guest agent daemon, running as root, creates its communication socket `/run/lima-guestagent.sock` with world-writable permissions (0777). This allows unprivileged local users to command the agent to establish arbitrary tunnels, including to privileged local UNIX sockets (like D-Bus). Because the target daemon authenticates the incoming connection using the credentials of the root-owned guest agent (via SO_PEERCRED), unprivileged users can perform root operations, resulting in complete guest VM compromise.

Amit Schendel
Amit Schendel
3 views•9 min read
•about 3 hours ago•CVE-2026-10740
5.3

CVE-2026-10740: Denial of Service in s2n-quic CryptoStream Reassembly

An unauthenticated Denial of Service vulnerability exists in the s2n-quic library's CryptoStream reassembler due to a lack of buffer limits on out-of-order cryptographic frames. An attacker can transmit a crafted CRYPTO frame with an extremely high offset and nominal payload, forcing the receiver to execute unbounded memory allocations and causing service crashes.

Amit Schendel
Amit Schendel
3 views•7 min read
•about 4 hours ago•CVE-2026-55153
7.1

CVE-2026-55153: JNDI Injection and Deserialization Gadget Abuse in mchange-commons-java

A JNDI Injection and Deserialization Gadget vulnerability exists in mchange-commons-java prior to version 0.6.0. The com.mchange.v2.naming.JavaBeanObjectFactory component permits arbitrary class instantiation and setter invocation, allowing attackers to perform Server-Side Request Forgery (SSRF) and remote class loading.

Alon Barad
Alon Barad
6 views•5 min read
•1 day ago•CVE-2026-12243
7.5

CVE-2026-12243: Incomplete Path Traversal Validation and Percent-Encoding Bypass in NLTK

CVE-2026-12243 is a path traversal vulnerability in the Natural Language Toolkit (NLTK) version 3.9.4. The flaw exists because the input validation routine fails to account for percent-encoded directory traversal sequences like '..%2f' before passing them to urllib.request.url2pathname(), which decodes them into active traversal sequences.

Amit Schendel
Amit Schendel
5 views•8 min read
•1 day ago•CVE-2026-73654
8.5

CVE-2026-73654: Prototype Pollution in Trigger.dev leading to Cascading Denial of Service

CVE-2026-73654 is a high-severity prototype pollution vulnerability in Trigger.dev. The flaw occurs during the handling of run-metadata updates through the PUT /api/v1/runs/:runId/metadata endpoint. Because user-supplied keys are parsed directly by the @jsonhero/path library without sanitization, an authenticated attacker with low privileges can pollute the global Object.prototype. This causes database queries via Prisma ORM to fail validation and induces unhandled exceptions in the Prometheus metrics client, resulting in a process-wide denial of service.

Alon Barad
Alon Barad
11 views•6 min read