Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-x41s-g5mh-pkdq
Summary
Axios is Vulnerable to Denial of Service via __proto__ Key in mergeConfig
# Denial of Service via **proto** Key in mergeConfig

### Summary

The `mergeConfig` function in axios crashes with a TypeError when processing configuration objects containing `__proto__` as an own property. An attacker can trigger this by providing a malicious configuration object created via `JSON.parse()`, causing complete denial of service.

### Details

The vulnerability exists in `lib/core/mergeConfig.js` at lines 98-101:

```javascript
utils.forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
  const merge = mergeMap[prop] || mergeDeepProperties;
  const configValue = merge(config1[prop], config2[prop], prop);
  (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
});
```

When `prop` is `'__proto__'`:

1. `JSON.parse('{"__proto__": {...}}')` creates an object with `__proto__` as an own enumerable property
2. `Object.keys()` includes `'__proto__'` in the iteration
3. `mergeMap['__proto__']` performs prototype chain lookup, returning `Object.prototype` (truthy object)
4. The expression `mergeMap[prop] || mergeDeepProperties` evaluates to `Object.prototype`
5. `Object.prototype(...)` throws `TypeError: merge is not a function`

The `mergeConfig` function is called by:

- `Axios._request()` at `lib/core/Axios.js:75`
- `Axios.getUri()` at `lib/core/Axios.js:201`
- All HTTP method shortcuts (`get`, `post`, etc.) at `lib/core/Axios.js:211,224`

### PoC

```javascript
import axios from "axios";

const maliciousConfig = JSON.parse('{"__proto__": {"x": 1}}');
await axios.get("https://httpbin.org/get", maliciousConfig);
```

**Reproduction steps:**

1. Clone axios repository or `npm install axios`
2. Create file `poc.mjs` with the code above
3. Run: `node poc.mjs`
4. Observe the TypeError crash

**Verified output (axios 1.13.4):**

```
TypeError: merge is not a function
    at computeConfigValue (lib/core/mergeConfig.js:100:25)
    at Object.forEach (lib/utils.js:280:10)
    at mergeConfig (lib/core/mergeConfig.js:98:9)
```

**Control tests performed:**
| Test | Config | Result |
|------|--------|--------|
| Normal config | `{"timeout": 5000}` | SUCCESS |
| Malicious config | `JSON.parse('{"__proto__": {"x": 1}}')` | **CRASH** |
| Nested object | `{"headers": {"X-Test": "value"}}` | SUCCESS |

**Attack scenario:**
An application that accepts user input, parses it with `JSON.parse()`, and passes it to axios configuration will crash when receiving the payload `{"__proto__": {"x": 1}}`.

### Impact

**Denial of Service** - Any application using axios that processes user-controlled JSON and passes it to axios configuration methods is vulnerable. The application will crash when processing the malicious payload.

Affected environments:

- Node.js servers using axios for HTTP requests
- Any backend that passes parsed JSON to axios configuration

This is NOT prototype pollution - the application crashes before any assignment occurs.
Aliases
0
alias CVE-2026-25639
1
alias GHSA-43fc-jf86-j433
Fixed_packages
0
url pkg:deb/debian/node-axios@1.14.0%2Bdfsg-1?distro=trixie
purl pkg:deb/debian/node-axios@1.14.0%2Bdfsg-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.14.0%252Bdfsg-1%3Fdistro=trixie
1
url pkg:deb/debian/node-axios@1.15.0-1
purl pkg:deb/debian/node-axios@1.15.0-1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.15.0-1
2
url pkg:deb/debian/node-axios@1.15.0-1?distro=trixie
purl pkg:deb/debian/node-axios@1.15.0-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.15.0-1%3Fdistro=trixie
3
url pkg:npm/axios@0.30.3
purl pkg:npm/axios@0.30.3
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.3
4
url pkg:npm/axios@1.0.0-alpha.1
purl pkg:npm/axios@1.0.0-alpha.1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.0.0-alpha.1
5
url pkg:npm/axios@1.13.5
purl pkg:npm/axios@1.13.5
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.5
Affected_packages
0
url pkg:deb/debian/node-axios@0.21.1%2Bdfsg-1%2Bdeb11u1
purl pkg:deb/debian/node-axios@0.21.1%2Bdfsg-1%2Bdeb11u1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-1vkx-cwua-rqe4
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-aq84-8cnz-byax
3
vulnerability VCID-axk7-6q4b-vuga
4
vulnerability VCID-ek49-tuj4-t3ap
5
vulnerability VCID-hq6f-86aj-8yav
6
vulnerability VCID-kgnf-z6ca-tqgp
7
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@0.21.1%252Bdfsg-1%252Bdeb11u1
1
url pkg:deb/debian/node-axios@0.21.1%2Bdfsg-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/node-axios@0.21.1%2Bdfsg-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-1vkx-cwua-rqe4
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-aq84-8cnz-byax
3
vulnerability VCID-axk7-6q4b-vuga
4
vulnerability VCID-ek49-tuj4-t3ap
5
vulnerability VCID-hq6f-86aj-8yav
6
vulnerability VCID-kgnf-z6ca-tqgp
7
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@0.21.1%252Bdfsg-1%252Bdeb11u1%3Fdistro=trixie
2
url pkg:deb/debian/node-axios@1.2.1%2Bdfsg-1%2Bdeb12u1
purl pkg:deb/debian/node-axios@1.2.1%2Bdfsg-1%2Bdeb12u1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-axk7-6q4b-vuga
2
vulnerability VCID-ek49-tuj4-t3ap
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-kgnf-z6ca-tqgp
5
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.2.1%252Bdfsg-1%252Bdeb12u1
3
url pkg:deb/debian/node-axios@1.2.1%2Bdfsg-1%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/node-axios@1.2.1%2Bdfsg-1%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-axk7-6q4b-vuga
2
vulnerability VCID-ek49-tuj4-t3ap
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-kgnf-z6ca-tqgp
5
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.2.1%252Bdfsg-1%252Bdeb12u1%3Fdistro=trixie
4
url pkg:deb/debian/node-axios@1.8.4%2Bdfsg-1?distro=trixie
purl pkg:deb/debian/node-axios@1.8.4%2Bdfsg-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-axk7-6q4b-vuga
2
vulnerability VCID-ek49-tuj4-t3ap
3
vulnerability VCID-kgnf-z6ca-tqgp
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.8.4%252Bdfsg-1%3Fdistro=trixie
5
url pkg:deb/debian/node-axios@1.8.4%2Bdfsg-1
purl pkg:deb/debian/node-axios@1.8.4%2Bdfsg-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-axk7-6q4b-vuga
2
vulnerability VCID-ek49-tuj4-t3ap
3
vulnerability VCID-kgnf-z6ca-tqgp
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.8.4%252Bdfsg-1
6
url pkg:npm/axios@0.1.0
purl pkg:npm/axios@0.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.1.0
7
url pkg:npm/axios@0.2.0
purl pkg:npm/axios@0.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.2.0
8
url pkg:npm/axios@0.2.1
purl pkg:npm/axios@0.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.2.1
9
url pkg:npm/axios@0.2.2
purl pkg:npm/axios@0.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.2.2
10
url pkg:npm/axios@0.3.0
purl pkg:npm/axios@0.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.3.0
11
url pkg:npm/axios@0.3.1
purl pkg:npm/axios@0.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.3.1
12
url pkg:npm/axios@0.4.0
purl pkg:npm/axios@0.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.4.0
13
url pkg:npm/axios@0.4.1
purl pkg:npm/axios@0.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.4.1
14
url pkg:npm/axios@0.4.2
purl pkg:npm/axios@0.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.4.2
15
url pkg:npm/axios@0.5.0
purl pkg:npm/axios@0.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.0
16
url pkg:npm/axios@0.5.1
purl pkg:npm/axios@0.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.1
17
url pkg:npm/axios@0.5.2
purl pkg:npm/axios@0.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.2
18
url pkg:npm/axios@0.5.3
purl pkg:npm/axios@0.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.3
19
url pkg:npm/axios@0.5.4
purl pkg:npm/axios@0.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.4
20
url pkg:npm/axios@0.6.0
purl pkg:npm/axios@0.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.6.0
21
url pkg:npm/axios@0.7.0
purl pkg:npm/axios@0.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.7.0
22
url pkg:npm/axios@0.8.0
purl pkg:npm/axios@0.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.8.0
23
url pkg:npm/axios@0.8.1
purl pkg:npm/axios@0.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.8.1
24
url pkg:npm/axios@0.9.0
purl pkg:npm/axios@0.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.9.0
25
url pkg:npm/axios@0.9.1
purl pkg:npm/axios@0.9.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.9.1
26
url pkg:npm/axios@0.10.0
purl pkg:npm/axios@0.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.10.0
27
url pkg:npm/axios@0.11.0
purl pkg:npm/axios@0.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.11.0
28
url pkg:npm/axios@0.11.1
purl pkg:npm/axios@0.11.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.11.1
29
url pkg:npm/axios@0.12.0
purl pkg:npm/axios@0.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.12.0
30
url pkg:npm/axios@0.13.0
purl pkg:npm/axios@0.13.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.13.0
31
url pkg:npm/axios@0.13.1
purl pkg:npm/axios@0.13.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.13.1
32
url pkg:npm/axios@0.14.0
purl pkg:npm/axios@0.14.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.14.0
33
url pkg:npm/axios@0.15.0
purl pkg:npm/axios@0.15.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.0
34
url pkg:npm/axios@0.15.1
purl pkg:npm/axios@0.15.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.1
35
url pkg:npm/axios@0.15.2
purl pkg:npm/axios@0.15.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.2
36
url pkg:npm/axios@0.15.3
purl pkg:npm/axios@0.15.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.3
37
url pkg:npm/axios@0.16.0
purl pkg:npm/axios@0.16.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.16.0
38
url pkg:npm/axios@0.16.1
purl pkg:npm/axios@0.16.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.16.1
39
url pkg:npm/axios@0.16.2
purl pkg:npm/axios@0.16.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.16.2
40
url pkg:npm/axios@0.17.0
purl pkg:npm/axios@0.17.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.17.0
41
url pkg:npm/axios@0.17.1
purl pkg:npm/axios@0.17.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.17.1
42
url pkg:npm/axios@0.18.0
purl pkg:npm/axios@0.18.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5b5u-3ngh-4fd9
1
vulnerability VCID-7rdk-mw2k-eqdx
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-n89f-3nkb-ebg3
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.18.0
43
url pkg:npm/axios@0.18.1
purl pkg:npm/axios@0.18.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.18.1
44
url pkg:npm/axios@0.19.0-beta.1
purl pkg:npm/axios@0.19.0-beta.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.0-beta.1
45
url pkg:npm/axios@0.19.0
purl pkg:npm/axios@0.19.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
4
vulnerability VCID-xtpz-6f5t-t3ev
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.0
46
url pkg:npm/axios@0.19.1
purl pkg:npm/axios@0.19.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
4
vulnerability VCID-xtpz-6f5t-t3ev
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.1
47
url pkg:npm/axios@0.19.2
purl pkg:npm/axios@0.19.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
4
vulnerability VCID-xtpz-6f5t-t3ev
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.2
48
url pkg:npm/axios@0.20.0-0
purl pkg:npm/axios@0.20.0-0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
4
vulnerability VCID-xtpz-6f5t-t3ev
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.20.0-0
49
url pkg:npm/axios@0.20.0
purl pkg:npm/axios@0.20.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
4
vulnerability VCID-xtpz-6f5t-t3ev
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.20.0
50
url pkg:npm/axios@0.21.0
purl pkg:npm/axios@0.21.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
4
vulnerability VCID-xtpz-6f5t-t3ev
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.0
51
url pkg:npm/axios@0.21.1
purl pkg:npm/axios@0.21.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-n89f-3nkb-ebg3
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.1
52
url pkg:npm/axios@0.21.2
purl pkg:npm/axios@0.21.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.2
53
url pkg:npm/axios@0.21.3
purl pkg:npm/axios@0.21.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.3
54
url pkg:npm/axios@0.21.4
purl pkg:npm/axios@0.21.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.4
55
url pkg:npm/axios@0.22.0
purl pkg:npm/axios@0.22.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.22.0
56
url pkg:npm/axios@0.23.0
purl pkg:npm/axios@0.23.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.23.0
57
url pkg:npm/axios@0.24.0
purl pkg:npm/axios@0.24.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.24.0
58
url pkg:npm/axios@0.25.0
purl pkg:npm/axios@0.25.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.25.0
59
url pkg:npm/axios@0.26.0
purl pkg:npm/axios@0.26.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.26.0
60
url pkg:npm/axios@0.26.1
purl pkg:npm/axios@0.26.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.26.1
61
url pkg:npm/axios@0.27.0
purl pkg:npm/axios@0.27.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.27.0
62
url pkg:npm/axios@0.27.1
purl pkg:npm/axios@0.27.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.27.1
63
url pkg:npm/axios@0.27.2
purl pkg:npm/axios@0.27.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.27.2
64
url pkg:npm/axios@0.28.0
purl pkg:npm/axios@0.28.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.28.0
65
url pkg:npm/axios@0.28.1
purl pkg:npm/axios@0.28.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.28.1
66
url pkg:npm/axios@0.29.0
purl pkg:npm/axios@0.29.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.29.0
67
url pkg:npm/axios@0.30.0
purl pkg:npm/axios@0.30.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.0
68
url pkg:npm/axios@0.30.1
purl pkg:npm/axios@0.30.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.1
69
url pkg:npm/axios@0.30.2
purl pkg:npm/axios@0.30.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.2
70
url pkg:npm/axios@1.0.0
purl pkg:npm/axios@1.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-axk7-6q4b-vuga
3
vulnerability VCID-ek49-tuj4-t3ap
4
vulnerability VCID-hq6f-86aj-8yav
5
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.0.0
71
url pkg:npm/axios@1.1.0
purl pkg:npm/axios@1.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.0
72
url pkg:npm/axios@1.1.1
purl pkg:npm/axios@1.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.1
73
url pkg:npm/axios@1.1.2
purl pkg:npm/axios@1.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.2
74
url pkg:npm/axios@1.1.3
purl pkg:npm/axios@1.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.3
75
url pkg:npm/axios@1.2.0-alpha.1
purl pkg:npm/axios@1.2.0-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.0-alpha.1
76
url pkg:npm/axios@1.2.0
purl pkg:npm/axios@1.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.0
77
url pkg:npm/axios@1.2.1
purl pkg:npm/axios@1.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.1
78
url pkg:npm/axios@1.2.2
purl pkg:npm/axios@1.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.2
79
url pkg:npm/axios@1.2.3
purl pkg:npm/axios@1.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.3
80
url pkg:npm/axios@1.2.4
purl pkg:npm/axios@1.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.4
81
url pkg:npm/axios@1.2.5
purl pkg:npm/axios@1.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.5
82
url pkg:npm/axios@1.2.6
purl pkg:npm/axios@1.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.6
83
url pkg:npm/axios@1.3.0
purl pkg:npm/axios@1.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.0
84
url pkg:npm/axios@1.3.1
purl pkg:npm/axios@1.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.1
85
url pkg:npm/axios@1.3.2
purl pkg:npm/axios@1.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.2
86
url pkg:npm/axios@1.3.3
purl pkg:npm/axios@1.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.3
87
url pkg:npm/axios@1.3.4
purl pkg:npm/axios@1.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.4
88
url pkg:npm/axios@1.3.5
purl pkg:npm/axios@1.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.5
89
url pkg:npm/axios@1.3.6
purl pkg:npm/axios@1.3.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.6
90
url pkg:npm/axios@1.4.0
purl pkg:npm/axios@1.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.4.0
91
url pkg:npm/axios@1.5.0
purl pkg:npm/axios@1.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.5.0
92
url pkg:npm/axios@1.5.1
purl pkg:npm/axios@1.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rdk-mw2k-eqdx
1
vulnerability VCID-aq84-8cnz-byax
2
vulnerability VCID-epu9-wdt3-kbay
3
vulnerability VCID-hq6f-86aj-8yav
4
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.5.1
93
url pkg:npm/axios@1.6.0
purl pkg:npm/axios@1.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.0
94
url pkg:npm/axios@1.6.1
purl pkg:npm/axios@1.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.1
95
url pkg:npm/axios@1.6.2
purl pkg:npm/axios@1.6.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.2
96
url pkg:npm/axios@1.6.3
purl pkg:npm/axios@1.6.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.3
97
url pkg:npm/axios@1.6.4
purl pkg:npm/axios@1.6.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.4
98
url pkg:npm/axios@1.6.5
purl pkg:npm/axios@1.6.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.5
99
url pkg:npm/axios@1.6.6
purl pkg:npm/axios@1.6.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.6
100
url pkg:npm/axios@1.6.7
purl pkg:npm/axios@1.6.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.7
101
url pkg:npm/axios@1.6.8
purl pkg:npm/axios@1.6.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.8
102
url pkg:npm/axios@1.7.0-beta.0
purl pkg:npm/axios@1.7.0-beta.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0-beta.0
103
url pkg:npm/axios@1.7.0-beta.1
purl pkg:npm/axios@1.7.0-beta.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0-beta.1
104
url pkg:npm/axios@1.7.0-beta.2
purl pkg:npm/axios@1.7.0-beta.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0-beta.2
105
url pkg:npm/axios@1.7.0
purl pkg:npm/axios@1.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0
106
url pkg:npm/axios@1.7.1
purl pkg:npm/axios@1.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.1
107
url pkg:npm/axios@1.7.2
purl pkg:npm/axios@1.7.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.2
108
url pkg:npm/axios@1.7.3
purl pkg:npm/axios@1.7.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-epu9-wdt3-kbay
2
vulnerability VCID-hq6f-86aj-8yav
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.3
109
url pkg:npm/axios@1.7.4
purl pkg:npm/axios@1.7.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.4
110
url pkg:npm/axios@1.7.5
purl pkg:npm/axios@1.7.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.5
111
url pkg:npm/axios@1.7.6
purl pkg:npm/axios@1.7.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.6
112
url pkg:npm/axios@1.7.7
purl pkg:npm/axios@1.7.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.7
113
url pkg:npm/axios@1.7.8
purl pkg:npm/axios@1.7.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.8
114
url pkg:npm/axios@1.7.9
purl pkg:npm/axios@1.7.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.9
115
url pkg:npm/axios@1.8.0
purl pkg:npm/axios@1.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.0
116
url pkg:npm/axios@1.8.1
purl pkg:npm/axios@1.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-hq6f-86aj-8yav
2
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.1
117
url pkg:npm/axios@1.8.2
purl pkg:npm/axios@1.8.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.2
118
url pkg:npm/axios@1.8.3
purl pkg:npm/axios@1.8.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.3
119
url pkg:npm/axios@1.8.4
purl pkg:npm/axios@1.8.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.4
120
url pkg:npm/axios@1.9.0
purl pkg:npm/axios@1.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.9.0
121
url pkg:npm/axios@1.10.0
purl pkg:npm/axios@1.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
2
vulnerability VCID-xkyu-r89g-ckec
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.10.0
122
url pkg:npm/axios@1.11.0
purl pkg:npm/axios@1.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-aq84-8cnz-byax
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.11.0
123
url pkg:npm/axios@1.12.0
purl pkg:npm/axios@1.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.12.0
124
url pkg:npm/axios@1.12.1
purl pkg:npm/axios@1.12.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.12.1
125
url pkg:npm/axios@1.12.2
purl pkg:npm/axios@1.12.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.12.2
126
url pkg:npm/axios@1.13.0
purl pkg:npm/axios@1.13.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-kgnf-z6ca-tqgp
1
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.0
127
url pkg:npm/axios@1.13.1
purl pkg:npm/axios@1.13.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.1
128
url pkg:npm/axios@1.13.2
purl pkg:npm/axios@1.13.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.2
129
url pkg:npm/axios@1.13.3
purl pkg:npm/axios@1.13.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.3
130
url pkg:npm/axios@1.13.4
purl pkg:npm/axios@1.13.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.4
131
url pkg:rpm/redhat/automation-platform-ui@2.6.7-1?arch=el9ap
purl pkg:rpm/redhat/automation-platform-ui@2.6.7-1?arch=el9ap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-1znw-5dwm-7ydy
1
vulnerability VCID-d6bq-bvvm-33f4
2
vulnerability VCID-kq3k-xr3z-z3c4
3
vulnerability VCID-x41s-g5mh-pkdq
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-platform-ui@2.6.7-1%3Farch=el9ap
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-25639.json
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-25639.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2026-25639
reference_id
reference_type
scores
0
value 0.00051
scoring_system epss
scoring_elements 0.15744
published_at 2026-04-16T12:55:00Z
1
value 0.00051
scoring_system epss
scoring_elements 0.1582
published_at 2026-04-13T12:55:00Z
2
value 0.00051
scoring_system epss
scoring_elements 0.15889
published_at 2026-04-12T12:55:00Z
3
value 0.00051
scoring_system epss
scoring_elements 0.15927
published_at 2026-04-11T12:55:00Z
4
value 0.00051
scoring_system epss
scoring_elements 0.1595
published_at 2026-04-09T12:55:00Z
5
value 0.00051
scoring_system epss
scoring_elements 0.15802
published_at 2026-04-07T12:55:00Z
6
value 0.00051
scoring_system epss
scoring_elements 0.16003
published_at 2026-04-04T12:55:00Z
7
value 0.00051
scoring_system epss
scoring_elements 0.1594
published_at 2026-04-02T12:55:00Z
8
value 0.00051
scoring_system epss
scoring_elements 0.15888
published_at 2026-04-08T12:55:00Z
9
value 0.00053
scoring_system epss
scoring_elements 0.16649
published_at 2026-04-18T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2026-25639
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-25639
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-25639
3
reference_url https://github.com/axios/axios
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/axios/axios
4
reference_url https://github.com/axios/axios/commit/28c721588c7a77e7503d0a434e016f852c597b57
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/commit/28c721588c7a77e7503d0a434e016f852c597b57
5
reference_url https://github.com/axios/axios/commit/d7ff1409c68168d3057fc3891f911b2b92616f9e
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/commit/d7ff1409c68168d3057fc3891f911b2b92616f9e
6
reference_url https://github.com/axios/axios/pull/7369
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/pull/7369
7
reference_url https://github.com/axios/axios/pull/7388
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/pull/7388
8
reference_url https://github.com/axios/axios/releases/tag/v0.30.0
reference_id
reference_type
scores
url https://github.com/axios/axios/releases/tag/v0.30.0
9
reference_url https://github.com/axios/axios/releases/tag/v0.30.3
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/releases/tag/v0.30.3
10
reference_url https://github.com/axios/axios/releases/tag/v1.13.5
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/releases/tag/v1.13.5
11
reference_url https://github.com/axios/axios/security/advisories/GHSA-43fc-jf86-j433
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-10T15:39:46Z/
url https://github.com/axios/axios/security/advisories/GHSA-43fc-jf86-j433
12
reference_url https://nvd.nist.gov/vuln/detail/CVE-2026-25639
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2026-25639
13
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127907
reference_id 1127907
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127907
14
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2438237
reference_id 2438237
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2438237
15
reference_url https://github.com/advisories/GHSA-43fc-jf86-j433
reference_id GHSA-43fc-jf86-j433
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-43fc-jf86-j433
16
reference_url https://access.redhat.com/errata/RHSA-2026:2694
reference_id RHSA-2026:2694
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:2694
17
reference_url https://access.redhat.com/errata/RHSA-2026:3087
reference_id RHSA-2026:3087
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:3087
18
reference_url https://access.redhat.com/errata/RHSA-2026:3105
reference_id RHSA-2026:3105
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:3105
19
reference_url https://access.redhat.com/errata/RHSA-2026:3106
reference_id RHSA-2026:3106
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:3106
20
reference_url https://access.redhat.com/errata/RHSA-2026:3107
reference_id RHSA-2026:3107
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:3107
21
reference_url https://access.redhat.com/errata/RHSA-2026:3109
reference_id RHSA-2026:3109
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:3109
22
reference_url https://access.redhat.com/errata/RHSA-2026:4942
reference_id RHSA-2026:4942
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:4942
23
reference_url https://access.redhat.com/errata/RHSA-2026:5142
reference_id RHSA-2026:5142
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:5142
24
reference_url https://access.redhat.com/errata/RHSA-2026:5168
reference_id RHSA-2026:5168
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:5168
25
reference_url https://access.redhat.com/errata/RHSA-2026:5174
reference_id RHSA-2026:5174
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:5174
26
reference_url https://access.redhat.com/errata/RHSA-2026:5636
reference_id RHSA-2026:5636
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:5636
27
reference_url https://access.redhat.com/errata/RHSA-2026:5665
reference_id RHSA-2026:5665
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:5665
28
reference_url https://access.redhat.com/errata/RHSA-2026:5807
reference_id RHSA-2026:5807
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:5807
29
reference_url https://access.redhat.com/errata/RHSA-2026:6170
reference_id RHSA-2026:6170
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6170
30
reference_url https://access.redhat.com/errata/RHSA-2026:6174
reference_id RHSA-2026:6174
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6174
31
reference_url https://access.redhat.com/errata/RHSA-2026:6192
reference_id RHSA-2026:6192
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6192
32
reference_url https://access.redhat.com/errata/RHSA-2026:6277
reference_id RHSA-2026:6277
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6277
33
reference_url https://access.redhat.com/errata/RHSA-2026:6308
reference_id RHSA-2026:6308
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6308
34
reference_url https://access.redhat.com/errata/RHSA-2026:6309
reference_id RHSA-2026:6309
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6309
35
reference_url https://access.redhat.com/errata/RHSA-2026:6404
reference_id RHSA-2026:6404
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6404
36
reference_url https://access.redhat.com/errata/RHSA-2026:6428
reference_id RHSA-2026:6428
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6428
37
reference_url https://access.redhat.com/errata/RHSA-2026:6497
reference_id RHSA-2026:6497
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6497
38
reference_url https://access.redhat.com/errata/RHSA-2026:6567
reference_id RHSA-2026:6567
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6567
39
reference_url https://access.redhat.com/errata/RHSA-2026:6568
reference_id RHSA-2026:6568
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6568
40
reference_url https://access.redhat.com/errata/RHSA-2026:6802
reference_id RHSA-2026:6802
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6802
41
reference_url https://access.redhat.com/errata/RHSA-2026:7249
reference_id RHSA-2026:7249
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:7249
42
reference_url https://access.redhat.com/errata/RHSA-2026:8218
reference_id RHSA-2026:8218
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8218
43
reference_url https://access.redhat.com/errata/RHSA-2026:8229
reference_id RHSA-2026:8229
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8229
44
reference_url https://access.redhat.com/errata/RHSA-2026:8499
reference_id RHSA-2026:8499
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8499
45
reference_url https://access.redhat.com/errata/RHSA-2026:8500
reference_id RHSA-2026:8500
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8500
46
reference_url https://access.redhat.com/errata/RHSA-2026:8501
reference_id RHSA-2026:8501
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8501
Weaknesses
0
cwe_id 754
name Improper Check for Unusual or Exceptional Conditions
description The product does not check or incorrectly checks for unusual or exceptional conditions that are not expected to occur frequently during day to day operation of the product.
1
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.
2
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.
3
cwe_id 1287
name Improper Validation of Specified Type of Input
description The product receives input that is expected to be of a certain type, but it does not validate or incorrectly validates that the input is actually of the expected type.
Exploits
Severity_range_score7.0 - 8.9
Exploitability0.5
Weighted_severity8.0
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-x41s-g5mh-pkdq