GHSA-2gg5-7c4v-6xx2: Duplicate of GHSA-m77f-652q-wwp4
7.5
CVSS Score
3.1
Basic Information
CVE ID
-
GHSA ID
EPSS Score
-
CWE
Published
9/15/2022
Updated
1/28/2023
KEV Status
No
Technology
Rust
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
axum-core | rust | < 0.2.8 | 0.2.8 |
axum-core | rust | = 0.3.0-rc.1 | 0.3.0-rc.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability root cause is explicitly identified in multiple advisories as the FromRequest trait implementation for Bytes in axum-core
. This function
is directly responsible for processing raw request bodies without size validation in vulnerable versions. While higher-level extractors (Form
, Json
) are mentioned as affected, they reside in the axum
crate and delegate to the vulnerable axum-core
implementation. The function
signature follows Rust's fully qualified trait implementation syntax which would appear in stack traces.