GHSA-gg4h-3hg2-grpc

Suggest an improvement
Source
https://github.com/advisories/GHSA-gg4h-3hg2-grpc
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-gg4h-3hg2-grpc/GHSA-gg4h-3hg2-grpc.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-gg4h-3hg2-grpc
Aliases
Downstream
Published
2026-09-08T20:51:21Z
Modified
2026-09-08T21:00:05Z
Severity
  • 3.7 (Low) CVSS_V3 - CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N CVSS Calculator
Summary
joi: object().rename() with a template target can set the validated object's prototype
Details

Impact

Applications are affected only if a schema renames keys with a regular-expression source and a Joi.expression() / Joi.x() target that interpolates the pattern's own match data, combined with { multiple: true }, for example .rename(/^x-(.+)$/, Joi.x('{#1}'), { multiple: true }). Because the target is rendered from the matched input key, an attacker who controls input keys can send x-__proto__ with an object value and make the rename target render as __proto__, which sets the prototype of the object joi returns instead of creating a key on it. The global Object.prototype is not modified, so the effect is confined to the object returned by that one validate() call.

Schemas using a static string rename target are not affected, and neither are schemas left on the default { multiple: false }.

Patches

Versions 17.13.5 and 18.2.4 have been released to address the issue.

Workarounds

  1. Replace the template rename target with a static string target.
  2. Keep the template but make the capture unable to produce __proto__, using a negative lookahead: .rename(/^x-(?!__proto__$)(.+)$/, Joi.x('{#1}'), { multiple: true })
  3. Drop { multiple: true } from the rename, which stops the rename before the assignment.
Database specific
{
    "cwe_ids": [
        "CWE-1321"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-09-08T20:51:21Z",
    "nvd_published_at": "2026-09-01T21:18:47Z",
    "severity": "LOW"
}
References

Affected packages

npm / joi

Package

Affected ranges

Type
SEMVER
Events
Introduced
16.0.0
Fixed
17.13.5

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-gg4h-3hg2-grpc/GHSA-gg4h-3hg2-grpc.json"

npm / joi

Package

Affected ranges

Type
SEMVER
Events
Introduced
18.0.0
Fixed
18.2.4

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-gg4h-3hg2-grpc/GHSA-gg4h-3hg2-grpc.json"