chore(deps): update dependency joi to v18.2.5 [security] - #135
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency joi to v18.2.5 [security]#135renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
18.0.2→18.2.5joi: Prototype pollution via a
__proto__language key in custom messagesCVE-2026-84368 / GHSA-6w3j-5fw6-r9vr
More information
Details
Impact
An application that passes attacker-controlled data into joi's custom message configuration (
messages(),message(),prefs({ messages }),Joi.extend({ messages })orrule({ message })) lets the attacker write properties ontoObject.prototype, where every object in the process then inherits them. A key named__proto__was treated as a language name, and the code reused the object it found at that key, which resolves to the prototype rather than to a new own property; a key namedconstructordid the same to theObjectfunction's statics. A consuming application that gates on the mere presence of a property (if (user.isAdmin)) can be made to take the wrong branch for every object it inspects.This is not reachable from data that joi validates. Custom messages are schema-construction configuration, normally written by the application developer. Exploitation therefore requires an application that feeds untrusted input straight into schema construction.
Patches
Upgrade to version 18.2.5 or 17.13.6.
Workarounds
Do not pass untrusted input into
messages(),message(),prefs({ messages }),Joi.extend({ messages })orrule({ message }). Or validate that they don't contain any__proto__orconstructorproperty.Severity
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
joi: object().rename() with a template target can set the validated object's prototype
CVE-2026-84367 / GHSA-gg4h-3hg2-grpc
More information
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 sendx-__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 globalObject.prototypeis not modified, so the effect is confined to the object returned by that onevalidate()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
__proto__, using a negative lookahead:.rename(/^x-(?!__proto__$)(.+)$/, Joi.x('{#​1}'), { multiple: true })Severity
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
hapijs/joi (joi)
v18.2.5Compare Source
v18.2.4Compare Source
v18.2.3Compare Source
v18.2.2Compare Source
v18.2.1Compare Source
v18.2.0Compare Source
v18.1.2Compare Source
v18.1.1Compare Source
v18.1.0Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.