org.webjars.npm:dojo@1.16.5 vulnerabilities

Direct Vulnerabilities

Known vulnerabilities in the org.webjars.npm:dojo package. This does not include vulnerabilities belonging to this package’s dependencies.

Automatically find and fix vulnerabilities affecting your projects. Snyk scans for vulnerabilities and provides fixes for free.
Fix for free
Vulnerability Vulnerable Version
  • H
Prototype Pollution

org.webjars.npm:dojo is a foundation package for the Dojo 1 Toolkit. While still being maintained, new development is primarily focused on modern Dojo.

Affected versions of this package are vulnerable to Prototype Pollution via the setObject function.

PoC

1. Install `dojo` by running `npm i dojo`.
2. Create the following HTML file in the directory where `dojo` is installed.
3. Access the HTML page via a browser - you should see the alert.

<!-- The HTML file -->
<!DOCTYPE html>
<html>
<head>
<script src="node_modules/dojo/dojo.s"></script>
</head>
<body>
<script>
        document.addEventListener("DOMContentLoaded", function() {
                const obj = {};
                dojo.setObject("__proto__.vuln", "polluted!", obj);
                alert("anything".vuln);
        })
</script>
</body>
</html>

How to fix Prototype Pollution?

Upgrade org.webjars.npm:dojo to version 1.17.2 or higher.

[,1.17.2)