security(eval): validateur 100 % whitelist + raw-eval éliminé (SB-RCE-2026-01) - #502
Merged
Merged
Conversation
…-2026-01)
Hardening complet suite à la review v0.11.2 du chercheur (Maxim Yakovlev) :
- constant-folding des clés computed statiquement résolubles
('con'+'structor' -> bloqué) ;
- whitelist étendue à toutes les libs du scope eval (dotProp, cheerio,
sanitizeHtml, removeMarkdown, decodeUnicode) ;
- LIB_FORBIDDEN_METHODS (blacklist) supprimé -> modèle 100 % whitelist ;
- objets produits whitelistés (PRODUCED_WHITELISTS + inférence de type
d'appel exprType) : dayjs/moment/cheerio/crypto-hash/Buffer.from ;
- JS intrinsics en whitelist stricte : Reflect, Proxy, Object.getPrototypeOf,
getOwnPropertyDescriptor, defineProperty, setPrototypeOf bloqués
(vecteur introspection argument-string fermé) ;
- sanitizeValue dans runEvalInRemote (avant sérialisation) + contrat
documenté dans evalWorker.js/secureContext.js ;
- raw-eval ÉLIMINÉ : evalWorker.js/runEvalInWorker/workerGlobals.js engine
supprimés -> l'engine n'a plus aucune évaluation interne, seul chemin =
runEvalInRemote (HTTP signé -> eval-service). Tests unitaires = logique du
container (secureContext.js de l'eval-service) ;
- code mort retiré : escapeString/resolveString/parseAndResolveString +
unicode-encode (engine + eval-service) ;
- advisory SB-RCE-2026-01 mise à jour (correctifs + résiduel documenté
comme non-vulnérabilité).
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.
Correctif de sécurité — SB-RCE-2026-01 (review chercheur v0.11.2)
Hardening complet du moteur d'évaluation JS suite à la review du chercheur (Maxim Yakovlev, 2026-08-24) et au vecteur introspection découvert.
Changements
Vérifié