CVE-2025-29786
Last modified
CVE-2025-29786 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. Expr is an expression language and expression evaluation for Go. Prior to version 1.17.0, if the Expr expression parser is given an unbounded input string, it will attempt to compile the entire string and generate an Abstract Syntax Tree (AST) node for each part of the expression. EPSS estimates a 0.58% chance of exploitation in the next 30 days.
Description
Expr is an expression language and expression evaluation for Go. Prior to version 1.17.0, if the Expr expression parser is given an unbounded input string, it will attempt to compile the entire string and generate an Abstract Syntax Tree (AST) node for each part of the expression. In scenarios where input size isn’t limited, a malicious or inadvertent extremely large expression can consume excessive memory as the parser builds a huge AST. This can ultimately lead to*excessive memory usage and an Out-Of-Memory (OOM) crash of the process. This issue is relatively uncommon and will only manifest when there are no restrictions on the input size, i.e. the expression length is allowed to grow arbitrarily large. In typical use cases where inputs are bounded or validated, this problem would not occur. The problem has been patched in the latest versions of the Expr library. The fix introduces compile-time limits on the number of AST nodes and memory usage during parsing, preventing any single expression from exhausting resources. Users should upgrade to Expr version 1.17.0 or later, as this release includes the new node budget and memory limit safeguards. Upgrading to v1.17.0 ensures that extremely deep or large expressions are detected and safely aborted during compilation, avoiding the OOM condition. For users who cannot immediately upgrade, the recommended workaround is to impose an input size restriction before parsing. In practice, this means validating or limiting the length of expression strings that your application will accept. For example, set a maximum allowable number of characters (or nodes) for any expression and reject or truncate inputs that exceed this limit. By ensuring no unbounded-length expression is ever fed into the parser, one can prevent the parser from constructing a pathologically large AST and avoid potential memory exhaustion. In short, pre-validate and cap input size as a safeguard in the absence of the patch.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
References
Timeline
- Published
- Last Modified
- Status
- Deferred
Frequently Asked Questions
What is CVE-2025-29786?
How severe is CVE-2025-29786?
How do I fix CVE-2025-29786?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2025
- CVE-2025-29780Post-Quantum Secure Feldman's Verifiable Secret Sharing prov…5.8
- CVE-2025-29781The Bare Metal Operator (BMO) implements a Kubernetes API fo…6.5
- CVE-2025-29782WeGIA is Web manager for charitable institutions A Stored Cr…5.4
- CVE-2025-29783vLLM is a high-throughput and memory-efficient inference and…9
- CVE-2025-29784NamelessMC is a free, easy to use & powerful website softwar…7.5
- CVE-2025-29785quic-go is an implementation of the QUIC protocol in Go. The…7.5
- CVE-2025-29787`zip` is a zip library for rust which supports reading and w…7.3
- CVE-2025-29788The Syliud PayPal Plugin is the Sylius Core Team’s plugin fo…6.5
- CVE-2025-29789OpenEMR is a free and open source electronic health records …7.5
- CVE-2025-2979A vulnerability classified as problematic has been found in …5.4
- CVE-2025-29790Contao is an Open Source CMS. Users can upload SVG files wit…5.4
- CVE-2025-29791Access of resource using incompatible type ('type confusion'…7.8
Are you affected by CVE-2025-29786?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
