GHSA-m3c3-78fh-w3w7 — SurrealDB
Fix: surrealdb/surrealdb#6101GHSA-m3c3-78fh-w3w7 is a CWE-863 vulnerability in SurrealDB. A fix is available for SurrealDB — see the affected versions and patch details below.
SurrealDB allows bypass of deny-net flags via DNS resolution
Exploitation Status
No confirmed exploitation observed yet
- CISA’s own triage has not observed active exploitation or public proof-of-concept code for this CVE as of its last assessment.
Exploitation and automatability from CISA’s SSVC triage for GHSA-m3c3-78fh-w3w7.
EPSS Exploitation Probability
Probability of exploitation in the next 30 days, from FIRST.org EPSS.
Real-World Exposure
SurrealDB🦀SurrealDB🦀SurrealDB🦀SurrealDBReal-time download stats are indexed for npm and PyPI packages. This vulnerability affects crates.io packages — download data is not available via public APIs for these ecosystems.
Description
SurrealDB offers http functions that can access external network endpoints. A typical, albeit not recommended configuration would be to start SurrealDB with all network connections allowed with the exception of a deny list. For example, surreal start --allow-net --deny-net 10.0.0.0/8 will allow all network connections except to the 10.0.0.0/8 block.
An authenticated user of SurrealDB can use bypass this restriction, using http::<fn>(<url>) functions where the hostname resolves to an IP within the --deny-net block. For example if a SurrealDB administrator wanted to restrict access to other services within a private network and thus set the --deny-net to a network IP range, this could be circumvented by an attacker leveraging DNS records and hostname resolution.
When sending SurrealDB statements containing the http::* functions, if the hostname resolves to a forbidden IP, the SurrealDB server will still issue the request and return the responses to the attacker.
Impact
The impact of this vulnerability is circumvention of the --deny-net capability and resulting impact on systems external to SurrealDB. The ultimate impact is dependent on the deployment scenario.
For example, if the SurrealDB server blocks requests to internal/private IP addresses because those services don’t require authentication, but an attacker can still use SurrealDBs ability to resolve their hostnames via DNS and invoke them directly using http::<fn>(<url>), the attacker can access these internal endpoints directly, and potentially retrieve or even alter sensitive information and credentials.
Patches
A patch has been created that checks resolved hostnames against allowed network targets, preventing http::* functions from connecting to disallowed IPs.
- Versions 2.2.6, 2.3.6 and later are not affected by this issue.
- The first release following 2.1.7 and 3.0.0-alpha.7 and later will not be affected by this issue
Workarounds
The possibility of this vulnerability being exploited can be reduced by following an allowlist approach to enabling the http capability surreal start --allow-net 10.0.0.0/8 or using the equivalent SURREAL_CAPS_ALLOW_NET environment variable, where endpoints allowed are fully trusted and are not controlled by regular users.
Alternatively, the network access capability can be disabled, using --deny-net or the equivalent SURREAL_CAPS_DENY_NET environment variable without specifying targets, which disables all outbound HTTP, with impact to SurrealDB functionality.
As the impact of this vulnerability depends on the security of the deployment environment of SurrealDB, best practices should be followed within that environment.
Affected Packages
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 🦀crates.io | SurrealDB | ≥ 2.1.0&&< 2.1.8 | 2.1.8cargo update -p SurrealDB --precise 2.1.8 |
| 🦀crates.io | SurrealDB | ≥ 2.2.0&&< 2.2.6 | 2.2.6cargo update -p SurrealDB --precise 2.2.6 |
| 🦀crates.io | SurrealDB | ≥ 3.0.0-alpha.1&&< 3.0.0-alpha.7 | 3.0.0-alpha.7cargo update -p SurrealDB --precise 3.0.0-alpha.7 |
| 🦀crates.io | SurrealDB | ≥ 2.3.0&&< 2.3.6 | 2.3.6cargo update -p SurrealDB --precise 2.3.6 |
Affected Products
surrealdbsurrealdbDetection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for SurrealDB, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.
Fix
Update SurrealDB to 2.1.8 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-m3c3-78fh-w3w7 is resolved across your whole dependency graph.
Workarounds
Put an independent control in front of the weakness: restrict the affected endpoint or interface to trusted networks, require an additional authentication factor or proxy-level check, and invalidate existing sessions and credentials in case the flaw has already been used.
Frequently Asked Questions
Is GHSA-m3c3-78fh-w3w7 in your dependencies?
Find it across crates.io, including transitive dependencies.