Find, fix and prevent vulnerabilities in your code.
high severity
new
- Vulnerable module: @angular/common
- Introduced through: @angular/common@14.2.0
Detailed paths
-
Introduced through: 21-points@mraible/21-points#29f5a77069bee0163e3cfebbb6fd5969f23160a1 › @angular/common@14.2.0Remediation: Upgrade to @angular/common@19.2.16.
Overview
Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data via the HttpClient which has a built-in XSRF protection mechanism. An attacker can obtain sensitive authentication tokens by crafting requests using protocol-relative URLs that cause the token to be sent to domains under the attacker's control.
Note: This is only exploitable if XSRF protection is enabled and the application allows requests to protocol-relative URLs.
Workaround
This vulnerability can be mitigated by avoiding the use of protocol-relative URLs (those starting with //) in requests and ensuring all backend communication URLs are either relative paths or fully qualified, trusted absolute URLs.
Remediation
Upgrade @angular/common to version 19.2.16, 20.3.14, 21.0.1 or higher.
References
medium severity
- Vulnerable module: inflight
- Introduced through: @angular/localize@14.2.0
Detailed paths
-
Introduced through: 21-points@mraible/21-points#29f5a77069bee0163e3cfebbb6fd5969f23160a1 › @angular/localize@14.2.0 › glob@8.0.3 › inflight@1.0.6
Overview
Affected versions of this package are vulnerable to Missing Release of Resource after Effective Lifetime via the makeres function due to improperly deleting keys from the reqs object after execution of callbacks. This behavior causes the keys to remain in the reqs object, which leads to resource exhaustion.
Exploiting this vulnerability results in crashing the node process or in the application crash.
Note: This library is not maintained, and currently, there is no fix for this issue. To overcome this vulnerability, several dependent packages have eliminated the use of this library.
To trigger the memory leak, an attacker would need to have the ability to execute or influence the asynchronous operations that use the inflight module within the application. This typically requires access to the internal workings of the server or application, which is not commonly exposed to remote users. Therefore, “Attack vector” is marked as “Local”.
PoC
const inflight = require('inflight');
function testInflight() {
let i = 0;
function scheduleNext() {
let key = `key-${i++}`;
const callback = () => {
};
for (let j = 0; j < 1000000; j++) {
inflight(key, callback);
}
setImmediate(scheduleNext);
}
if (i % 100 === 0) {
console.log(process.memoryUsage());
}
scheduleNext();
}
testInflight();
Remediation
There is no fixed version for inflight.