Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-w2jr-m4eg-27fk
Summary
Underscore has unlimited recursion in _.flatten and _.isEqual, potential for DoS attack
### Impact

In simple words, some programs that use `_.flatten` or `_.isEqual` could be made to crash. Someone who wants to do harm may be able to do this on purpose. This can only be done if the program has special properties. It only works in Underscore versions up to 1.13.7. A more detailed explanation follows.

In affected versions of Underscore, the `_.flatten` and `_.isEqual` functions use recursion without a depth limit. Under very specific conditions, detailed below, an attacker could exploit this in a Denial of Service (DoS) attack by triggering a stack overflow.

A proof of concept (PoC) for this type of attack with `_.isEqual`:

```js
const _ = require('underscore');

// build JSON string for nested object ~4500 levels deep
// (for this to be an attack, the JSON would have to come from
// a request or other untrusted input)
let json = '';
for (let i = 0; i < 4500; i++) json += '{"n":';
json += '"x"';
for (let i = 0; i < 4500; i++) json += '}';

// construct two distinct objects with equal shape from the above JSON
const a = JSON.parse(json);
const b = JSON.parse(json);

_.isEqual(a, b); // RangeError: Maximum call stack size exceeded
```

A proof of concept (PoC) for this type of attack with `_.flatten`:

```js
const _ = require('underscore');

// build nested array ~4500 levels deep
// (like with _.isEqual, this nested array would have to be sourced
// from an untrusted external source for it to be an attack)
let nested = [];
for (let i = 0; i < 4500; i++) nested = [nested];

_.flatten(nested); // RangeError: Maximum call stack size exceeded
```

An application that crashes because of this can be restarted, so the bug is most relevant to applications for which continued operation is important, such as server applications. Furthermore, an application is only vulnerable to this type of attack if ALL of the following conditions are met:

- Untrusted input must be used to create a recursive datastructure, for example using `JSON.parse`, with no enforced depth limit.
- The datastructure thus created must be passed to `_.flatten` or `_.isEqual`.
- In the case of `_.flatten`, the vulnerability can only be exploited if it is possible for a remote client to prepare a datastructure that consists of arrays at all levels AND if no finite depth limit is passed as the second argument to `_.flatten`.
- In the case of `_.isEqual`, the vulnerability can only be exploited if there exists a code path in which two distinct datastructures that were submitted by the same remote client are compared using `_.isEqual`. For example, if a client submits data that are stored in a database, and the same client can later submit another datastructure that is then compared to the data that were saved in the database previously, OR if a client submits a single request, but its data are parsed twice, creating two non-identical but equivalent datastructures that are then compared.
- Exceptions originating from the call to `_.flatten` or `_.isEqual`, as a result of a stack overflow, are not being caught.

All versions of Underscore up to and including 1.13.7 are affected by this weakness.

### Patches

The problem has been patched in version 1.13.8. Upgrading to 1.13.8 or later completely prevents exploitation.

**Note:** historically, there have been breaking changes in minor releases of Underscore, especially between versions 1.6 and 1.9. However, upgrading from version 1.9 or later to any later 1.x version should be feasible with little or no effort for all users.

### Workarounds

A workaround that works for both functions is to enforce a depth limit on the datastructure that is created from untrusted input. A limit of 1000 levels should prevent attacks from being successful on most systems. In systems with highly constrained hardware, we recommend lower limits, for example 100 levels.

Another possible workaround that only works for `_.flatten`, is to pass a second argument that limits the flattening depth to 1000 or less.

### References

- https://github.com/jashkenas/underscore/issues/3011
- https://underscorejs.org/#1.13.8
- https://underscorejs.org/#flatten
- https://underscorejs.org/#isEqual
Aliases
0
alias CVE-2026-27601
1
alias GHSA-qpx9-hpmf-5gmw
Fixed_packages
0
url pkg:deb/debian/underscore@1.13.8~dfsg%2B~1.13.0-1?distro=trixie
purl pkg:deb/debian/underscore@1.13.8~dfsg%2B~1.13.0-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/underscore@1.13.8~dfsg%252B~1.13.0-1%3Fdistro=trixie
1
url pkg:deb/debian/underscore@1.13.8~dfsg%2B~1.13.0-1
purl pkg:deb/debian/underscore@1.13.8~dfsg%2B~1.13.0-1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/underscore@1.13.8~dfsg%252B~1.13.0-1
2
url pkg:npm/underscore@1.13.8
purl pkg:npm/underscore@1.13.8
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.8
Affected_packages
0
url pkg:deb/debian/underscore@1.9.1~dfsg-3?distro=trixie
purl pkg:deb/debian/underscore@1.9.1~dfsg-3?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/underscore@1.9.1~dfsg-3%3Fdistro=trixie
1
url pkg:deb/debian/underscore@1.9.1~dfsg-3
purl pkg:deb/debian/underscore@1.9.1~dfsg-3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/underscore@1.9.1~dfsg-3
2
url pkg:deb/debian/underscore@1.13.4~dfsg%2B~1.11.4-3
purl pkg:deb/debian/underscore@1.13.4~dfsg%2B~1.11.4-3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/underscore@1.13.4~dfsg%252B~1.11.4-3
3
url pkg:deb/debian/underscore@1.13.4~dfsg%2B~1.11.4-3?distro=trixie
purl pkg:deb/debian/underscore@1.13.4~dfsg%2B~1.11.4-3?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/underscore@1.13.4~dfsg%252B~1.11.4-3%3Fdistro=trixie
4
url pkg:npm/underscore@1.0.3
purl pkg:npm/underscore@1.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.0.3
5
url pkg:npm/underscore@1.0.4
purl pkg:npm/underscore@1.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.0.4
6
url pkg:npm/underscore@1.1.0
purl pkg:npm/underscore@1.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.0
7
url pkg:npm/underscore@1.1.1
purl pkg:npm/underscore@1.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.1
8
url pkg:npm/underscore@1.1.2
purl pkg:npm/underscore@1.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.2
9
url pkg:npm/underscore@1.1.3
purl pkg:npm/underscore@1.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.3
10
url pkg:npm/underscore@1.1.4
purl pkg:npm/underscore@1.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.4
11
url pkg:npm/underscore@1.1.5
purl pkg:npm/underscore@1.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.5
12
url pkg:npm/underscore@1.1.6
purl pkg:npm/underscore@1.1.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.6
13
url pkg:npm/underscore@1.1.7
purl pkg:npm/underscore@1.1.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.1.7
14
url pkg:npm/underscore@1.2.0
purl pkg:npm/underscore@1.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.2.0
15
url pkg:npm/underscore@1.2.1
purl pkg:npm/underscore@1.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.2.1
16
url pkg:npm/underscore@1.2.2
purl pkg:npm/underscore@1.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.2.2
17
url pkg:npm/underscore@1.2.3
purl pkg:npm/underscore@1.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.2.3
18
url pkg:npm/underscore@1.2.4
purl pkg:npm/underscore@1.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.2.4
19
url pkg:npm/underscore@1.3.0
purl pkg:npm/underscore@1.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.3.0
20
url pkg:npm/underscore@1.3.1
purl pkg:npm/underscore@1.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.3.1
21
url pkg:npm/underscore@1.3.2
purl pkg:npm/underscore@1.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.3.2
22
url pkg:npm/underscore@1.3.3
purl pkg:npm/underscore@1.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.3.3
23
url pkg:npm/underscore@1.4.0
purl pkg:npm/underscore@1.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.4.0
24
url pkg:npm/underscore@1.4.1
purl pkg:npm/underscore@1.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.4.1
25
url pkg:npm/underscore@1.4.2
purl pkg:npm/underscore@1.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.4.2
26
url pkg:npm/underscore@1.4.3
purl pkg:npm/underscore@1.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.4.3
27
url pkg:npm/underscore@1.4.4
purl pkg:npm/underscore@1.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.4.4
28
url pkg:npm/underscore@1.5.0
purl pkg:npm/underscore@1.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.5.0
29
url pkg:npm/underscore@1.5.1
purl pkg:npm/underscore@1.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.5.1
30
url pkg:npm/underscore@1.5.2
purl pkg:npm/underscore@1.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.5.2
31
url pkg:npm/underscore@1.6.0
purl pkg:npm/underscore@1.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.6.0
32
url pkg:npm/underscore@1.7.0
purl pkg:npm/underscore@1.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.7.0
33
url pkg:npm/underscore@1.8.0
purl pkg:npm/underscore@1.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.8.0
34
url pkg:npm/underscore@1.8.1
purl pkg:npm/underscore@1.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.8.1
35
url pkg:npm/underscore@1.8.2
purl pkg:npm/underscore@1.8.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.8.2
36
url pkg:npm/underscore@1.8.3
purl pkg:npm/underscore@1.8.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.8.3
37
url pkg:npm/underscore@1.9.0
purl pkg:npm/underscore@1.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.9.0
38
url pkg:npm/underscore@1.9.1
purl pkg:npm/underscore@1.9.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.9.1
39
url pkg:npm/underscore@1.9.2
purl pkg:npm/underscore@1.9.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.9.2
40
url pkg:npm/underscore@1.10.0
purl pkg:npm/underscore@1.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.10.0
41
url pkg:npm/underscore@1.10.1
purl pkg:npm/underscore@1.10.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.10.1
42
url pkg:npm/underscore@1.10.2
purl pkg:npm/underscore@1.10.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.10.2
43
url pkg:npm/underscore@1.11.0
purl pkg:npm/underscore@1.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.11.0
44
url pkg:npm/underscore@1.12.0
purl pkg:npm/underscore@1.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-864e-hkby-qfh6
1
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.12.0
45
url pkg:npm/underscore@1.12.1
purl pkg:npm/underscore@1.12.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.12.1
46
url pkg:npm/underscore@1.13.0-0
purl pkg:npm/underscore@1.13.0-0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.0-0
47
url pkg:npm/underscore@1.13.0-1
purl pkg:npm/underscore@1.13.0-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.0-1
48
url pkg:npm/underscore@1.13.0-2
purl pkg:npm/underscore@1.13.0-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.0-2
49
url pkg:npm/underscore@1.13.0-3
purl pkg:npm/underscore@1.13.0-3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.0-3
50
url pkg:npm/underscore@1.13.0
purl pkg:npm/underscore@1.13.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.0
51
url pkg:npm/underscore@1.13.1
purl pkg:npm/underscore@1.13.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.1
52
url pkg:npm/underscore@1.13.2
purl pkg:npm/underscore@1.13.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.2
53
url pkg:npm/underscore@1.13.3
purl pkg:npm/underscore@1.13.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.3
54
url pkg:npm/underscore@1.13.4
purl pkg:npm/underscore@1.13.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.4
55
url pkg:npm/underscore@1.13.5
purl pkg:npm/underscore@1.13.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.5
56
url pkg:npm/underscore@1.13.6
purl pkg:npm/underscore@1.13.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.6
57
url pkg:npm/underscore@1.13.7
purl pkg:npm/underscore@1.13.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-w2jr-m4eg-27fk
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/underscore@1.13.7
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-27601.json
reference_id
reference_type
scores
0
value 5.9
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-27601.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2026-27601
reference_id
reference_type
scores
0
value 0.00014
scoring_system epss
scoring_elements 0.02659
published_at 2026-04-02T12:55:00Z
1
value 0.00016
scoring_system epss
scoring_elements 0.03376
published_at 2026-04-11T12:55:00Z
2
value 0.00016
scoring_system epss
scoring_elements 0.03325
published_at 2026-04-13T12:55:00Z
3
value 0.00016
scoring_system epss
scoring_elements 0.03348
published_at 2026-04-12T12:55:00Z
4
value 0.00016
scoring_system epss
scoring_elements 0.03418
published_at 2026-04-09T12:55:00Z
5
value 0.00016
scoring_system epss
scoring_elements 0.03396
published_at 2026-04-08T12:55:00Z
6
value 0.00016
scoring_system epss
scoring_elements 0.03393
published_at 2026-04-07T12:55:00Z
7
value 0.00021
scoring_system epss
scoring_elements 0.05595
published_at 2026-04-16T12:55:00Z
8
value 0.00021
scoring_system epss
scoring_elements 0.05764
published_at 2026-04-21T12:55:00Z
9
value 0.00021
scoring_system epss
scoring_elements 0.05608
published_at 2026-04-18T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2026-27601
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-27601
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-27601
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 5.3
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/jashkenas/underscore
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/jashkenas/underscore
5
reference_url https://github.com/jashkenas/underscore/commit/411e222eb0ca5d570cc4f6315c02c05b830ed2b4
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2026-03-04T16:44:25Z/
url https://github.com/jashkenas/underscore/commit/411e222eb0ca5d570cc4f6315c02c05b830ed2b4
6
reference_url https://github.com/jashkenas/underscore/commit/a6e23ae9647461ec33ad9f92a2ecfc220eea0a84
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2026-03-04T16:44:25Z/
url https://github.com/jashkenas/underscore/commit/a6e23ae9647461ec33ad9f92a2ecfc220eea0a84
7
reference_url https://github.com/jashkenas/underscore/issues/3011
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/jashkenas/underscore/issues/3011
8
reference_url https://github.com/jashkenas/underscore/security/advisories/GHSA-qpx9-hpmf-5gmw
reference_id
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:P/P:M/B:A/M:M/D:T/2026-03-04T16:44:25Z/
url https://github.com/jashkenas/underscore/security/advisories/GHSA-qpx9-hpmf-5gmw
9
reference_url https://nvd.nist.gov/vuln/detail/CVE-2026-27601
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2026-27601
10
reference_url https://underscorejs.org/#1.13.8
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://underscorejs.org/#1.13.8
11
reference_url https://underscorejs.org/#flatten
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://underscorejs.org/#flatten
12
reference_url https://underscorejs.org/#isEqual
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://underscorejs.org/#isEqual
13
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2444247
reference_id 2444247
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2444247
14
reference_url https://github.com/advisories/GHSA-qpx9-hpmf-5gmw
reference_id GHSA-qpx9-hpmf-5gmw
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-qpx9-hpmf-5gmw
Weaknesses
0
cwe_id 674
name Uncontrolled Recursion
description The product does not properly control the amount of recursion that takes place, consuming excessive resources, such as allocated memory or the program stack.
1
cwe_id 770
name Allocation of Resources Without Limits or Throttling
description The product allocates a reusable resource or group of resources on behalf of an actor without imposing any restrictions on the size or number of resources that can be allocated, in violation of the intended security policy for that actor.
2
cwe_id 606
name Unchecked Input for Loop Condition
description The product does not properly check inputs that are used for loop conditions, potentially leading to a denial of service or other consequences because of excessive looping.
3
cwe_id 937
name OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013.
4
cwe_id 1035
name OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017.
Exploits
Severity_range_score5.3 - 8.9
Exploitability0.5
Weighted_severity8.0
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-w2jr-m4eg-27fk