CVE-2025-29914:
OWASP Coraza WAF has parser confusion which leads to wrong URI in `REQUEST_FILENAME`
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.12485%
CWE
Published
3/20/2025
Updated
3/20/2025
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/jptosso/coraza-waf | go | ||
github.com/corazawaf/coraza/v3 | go |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems directly from the use of url.Parse()
in the ProcessURI
function, as shown in the commit diff that specifically replaces it with url.ParseRequestURI
. The security advisory explicitly identifies this function as the root cause, and the provided PoC demonstrates how malformed URIs lead to incorrect path parsing. The added test cases in transaction_test.go
further validate()
that the vulnerability existed in this specific function's URI handling logic.