Skip to content

Angular Expressions - Remote Code Execution

High severity GitHub Reviewed Published Jan 29, 2021 in peerigon/angular-expressions • Updated Feb 1, 2023

Package

npm angular-expressions (npm)

Affected versions

< 1.1.2

Patched versions

1.1.2

Description

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:

Credits

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

References

@edi9999 edi9999 published to peerigon/angular-expressions Jan 29, 2021
Reviewed Feb 1, 2021
Published to the GitHub Advisory Database Feb 1, 2021
Published by the National Vulnerability Database Feb 1, 2021
Last updated Feb 1, 2023

Severity

High
8.8
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
Low
User interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

CVE ID

CVE-2021-21277

GHSA ID

GHSA-j6px-jwvv-vpwq

Source code

No known source code
Checking history
See something to contribute? Suggest improvements for this vulnerability.