GHSA-j6px-jwvv-vpwq

Suggest an improvement
Source
https://github.com/advisories/GHSA-j6px-jwvv-vpwq
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/02/GHSA-j6px-jwvv-vpwq/GHSA-j6px-jwvv-vpwq.json
JSON Data
https://api.test.osv.dev/v1/vulns/GHSA-j6px-jwvv-vpwq
Aliases
Related
Published
2021-02-01T15:01:26Z
Modified
2023-11-01T04:54:10.366814Z
Severity
  • 8.8 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
Angular Expressions - Remote Code Execution
Details

Impact

The vulnerability, reported by GoSecure Inc, allows Remote Code Execution, if you call expressions.compile(userControlledInput) where userControlledInput is text that comes from user input.

This time, the security of the package could be bypassed by using a more complex payload, using a .constructor.constructor technique.

  • If running angular-expressions in the browser, an attacker could run any browser script when the application code calls expressions.compile(userControlledInput).
  • If running angular-expressions on the server, an attacker could run any Javascript expression, thus gaining Remote Code Execution.

Patches

Users should upgrade to version 1.1.2 of angular-expressions

Workarounds

A temporary workaround might be either to :

  • disable user-controlled input that will be fed into angular-expressions in your application

OR

  • allow only following characters in the userControlledInput :
    if (/^[|a-zA-Z.0-9 :"'+-?]+$/.test(userControlledInput)) {
          var result = expressions.compile(userControlledInput);
    }
    else {
         result = undefined;
    }
    

References

Removal of angular-expression sandbox

For more information

If you have any questions or comments about this advisory: * Open an issue in angular-expressions * Email us

Credits

The issue was reported by Maxime Nadeau from GoSecure, Inc.

Database specific
{
    "nvd_published_at": "2021-02-01T15:15:00Z",
    "github_reviewed_at": "2021-02-01T15:00:53Z",
    "severity": "HIGH",
    "github_reviewed": true,
    "cwe_ids": [
        "CWE-74",
        "CWE-94"
    ]
}
References

Affected packages

npm / angular-expressions

Package

Name
angular-expressions
View open source insights on deps.dev
Purl
pkg:npm/angular-expressions

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
1.1.2