Resolve Proxy-backed JS file variable addresses#396
Merged
Conversation
This was referenced Jun 12, 2026
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.
Since the prototype pollution hardening in #165, the file variable source has gated every address segment on
Object.prototype.hasOwnProperty, which does not consult a Proxy'shasorgettraps. Variables that read virtual properties from Proxy-backed objects returned by JS files, such as${file(./vars.js):cfg.settings}wherecfgis a Proxy, therefore began resolving to null. This change restores those lookups by deferring to the proxy's own traps: when a value is a Proxy and does not claim the segment as an own property, the segment is now resolved through ordinary property access, which invokes thegettrap. Proxies can only originate from JS files, which are already executed as trusted code, so consulting their traps introduces no new attack surface, and the own-property check itself already invokes the proxy'sgetOwnPropertyDescriptortrap today. The behaviour for every non-Proxy value is unchanged, including the guarantees that inherited properties are not traversable and that own__proto__data properties parsed from JSON files still resolve. To keep the hardening posture uniform, the__proto__,prototypeandconstructorkeys remain blocked on proxies unless they are claimed as own properties. The variables guide now documents these semantics.Fixes #384.