Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-shhe-tubm-f7f8
Summary
PyJWT accepts unknown `crit` header extensions
## Summary

PyJWT does not validate the `crit` (Critical) Header Parameter defined in
RFC 7515 §4.1.11. When a JWS token contains a `crit` array listing
extensions that PyJWT does not understand, the library accepts the token
instead of rejecting it. This violates the **MUST** requirement in the RFC.

This is the same class of vulnerability as CVE-2025-59420 (Authlib),
which received CVSS 7.5 (HIGH).

---

## RFC Requirement

RFC 7515 §4.1.11:

> The "crit" (Critical) Header Parameter indicates that extensions to this
> specification and/or [JWA] are being used that **MUST** be understood and
> processed. [...] If any of the listed extension Header Parameters are
> **not understood and supported** by the recipient, then the **JWS is invalid**.

---

## Proof of Concept

```python
import jwt  # PyJWT 2.8.0
import hmac, hashlib, base64, json

# Construct token with unknown critical extension
header = {"alg": "HS256", "crit": ["x-custom-policy"], "x-custom-policy": "require-mfa"}
payload = {"sub": "attacker", "role": "admin"}

def b64url(data):
    return base64.urlsafe_b64encode(data).rstrip(b"=").decode()

h = b64url(json.dumps(header, separators=(",", ":")).encode())
p = b64url(json.dumps(payload, separators=(",", ":")).encode())
sig = b64url(hmac.new(b"secret", f"{h}.{p}".encode(), hashlib.sha256).digest())
token = f"{h}.{p}.{sig}"

# Should REJECT — x-custom-policy is not understood by PyJWT
try:
    result = jwt.decode(token, "secret", algorithms=["HS256"])
    print(f"ACCEPTED: {result}")
    # Output: ACCEPTED: {'sub': 'attacker', 'role': 'admin'}
except Exception as e:
    print(f"REJECTED: {e}")
```

**Expected:** `jwt.exceptions.InvalidTokenError: Unsupported critical extension: x-custom-policy`
**Actual:** Token accepted, payload returned.

### Comparison with RFC-compliant library

```python
# jwcrypto — correctly rejects
from jwcrypto import jwt as jw_jwt, jwk
key = jwk.JWK(kty="oct", k=b64url(b"secret"))
jw_jwt.JWT(jwt=token, key=key, algs=["HS256"])
# raises: InvalidJWSObject('Unknown critical header: "x-custom-policy"')
```

---

## Impact

- **Split-brain verification** in mixed-library deployments (e.g., API
  gateway using jwcrypto rejects, backend using PyJWT accepts)
- **Security policy bypass** when `crit` carries enforcement semantics
  (MFA, token binding, scope restrictions)
- **Token binding bypass** — RFC 7800 `cnf` (Proof-of-Possession) can be
  silently ignored
- See CVE-2025-59420 for full impact analysis

---

## Suggested Fix

In `jwt/api_jwt.py`, add validation in `_validate_headers()` or
`decode()`:

```python
_SUPPORTED_CRIT = {"b64"}  # Add extensions PyJWT actually supports

def _validate_crit(self, headers: dict) -> None:
    crit = headers.get("crit")
    if crit is None:
        return
    if not isinstance(crit, list) or len(crit) == 0:
        raise InvalidTokenError("crit must be a non-empty array")
    for ext in crit:
        if ext not in self._SUPPORTED_CRIT:
            raise InvalidTokenError(f"Unsupported critical extension: {ext}")
        if ext not in headers:
            raise InvalidTokenError(f"Critical extension {ext} not in header")
```

---

## CWE

- CWE-345: Insufficient Verification of Data Authenticity
- CWE-863: Incorrect Authorization

## References

- [RFC 7515 §4.1.11](https://www.rfc-editor.org/rfc/rfc7515.html#section-4.1.11)
- [CVE-2025-59420 — Authlib crit bypass (CVSS 7.5)](https://osv.dev/vulnerability/GHSA-9ggr-2464-2j32)
- [RFC 7800 — Proof-of-Possession Key Semantics](https://www.rfc-editor.org/rfc/rfc7800)
Aliases
0
alias CVE-2026-32597
1
alias GHSA-752w-5fwx-jx9f
Fixed_packages
0
url pkg:deb/debian/pyjwt@2.12.1-1
purl pkg:deb/debian/pyjwt@2.12.1-1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.12.1-1
1
url pkg:deb/debian/pyjwt@2.12.1-1?distro=trixie
purl pkg:deb/debian/pyjwt@2.12.1-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.12.1-1%3Fdistro=trixie
2
url pkg:pypi/pyjwt@2.12.0
purl pkg:pypi/pyjwt@2.12.0
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.12.0
Affected_packages
0
url pkg:deb/debian/pyjwt@1.7.1-2?distro=trixie
purl pkg:deb/debian/pyjwt@1.7.1-2?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@1.7.1-2%3Fdistro=trixie
1
url pkg:deb/debian/pyjwt@1.7.1-2
purl pkg:deb/debian/pyjwt@1.7.1-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@1.7.1-2
2
url pkg:deb/debian/pyjwt@2.6.0-1?distro=trixie
purl pkg:deb/debian/pyjwt@2.6.0-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.6.0-1%3Fdistro=trixie
3
url pkg:deb/debian/pyjwt@2.6.0-1
purl pkg:deb/debian/pyjwt@2.6.0-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.6.0-1
4
url pkg:deb/debian/pyjwt@2.10.1-2?distro=trixie
purl pkg:deb/debian/pyjwt@2.10.1-2?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.10.1-2%3Fdistro=trixie
5
url pkg:deb/debian/pyjwt@2.10.1-2
purl pkg:deb/debian/pyjwt@2.10.1-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.10.1-2
6
url pkg:deb/debian/pyjwt@2.11.0-2
purl pkg:deb/debian/pyjwt@2.11.0-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.11.0-2
7
url pkg:deb/debian/pyjwt@2.11.0-2?distro=trixie
purl pkg:deb/debian/pyjwt@2.11.0-2?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyjwt@2.11.0-2%3Fdistro=trixie
8
url pkg:pypi/pyjwt@0.1.1
purl pkg:pypi/pyjwt@0.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.1
9
url pkg:pypi/pyjwt@0.1.2
purl pkg:pypi/pyjwt@0.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.2
10
url pkg:pypi/pyjwt@0.1.3
purl pkg:pypi/pyjwt@0.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.3
11
url pkg:pypi/pyjwt@0.1.4
purl pkg:pypi/pyjwt@0.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.4
12
url pkg:pypi/pyjwt@0.1.5
purl pkg:pypi/pyjwt@0.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.5
13
url pkg:pypi/pyjwt@0.1.6
purl pkg:pypi/pyjwt@0.1.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.6
14
url pkg:pypi/pyjwt@0.1.7
purl pkg:pypi/pyjwt@0.1.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.7
15
url pkg:pypi/pyjwt@0.1.8
purl pkg:pypi/pyjwt@0.1.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.8
16
url pkg:pypi/pyjwt@0.1.9
purl pkg:pypi/pyjwt@0.1.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.1.9
17
url pkg:pypi/pyjwt@0.2.0
purl pkg:pypi/pyjwt@0.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.2.0
18
url pkg:pypi/pyjwt@0.2.1
purl pkg:pypi/pyjwt@0.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.2.1
19
url pkg:pypi/pyjwt@0.2.3
purl pkg:pypi/pyjwt@0.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.2.3
20
url pkg:pypi/pyjwt@0.3.0
purl pkg:pypi/pyjwt@0.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.3.0
21
url pkg:pypi/pyjwt@0.3.1
purl pkg:pypi/pyjwt@0.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.3.1
22
url pkg:pypi/pyjwt@0.3.2
purl pkg:pypi/pyjwt@0.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.3.2
23
url pkg:pypi/pyjwt@0.4.0
purl pkg:pypi/pyjwt@0.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.4.0
24
url pkg:pypi/pyjwt@0.4.1
purl pkg:pypi/pyjwt@0.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.4.1
25
url pkg:pypi/pyjwt@0.4.2
purl pkg:pypi/pyjwt@0.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.4.2
26
url pkg:pypi/pyjwt@0.4.3
purl pkg:pypi/pyjwt@0.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
2
vulnerability VCID-up5n-d12g-u3g6
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@0.4.3
27
url pkg:pypi/pyjwt@1.0.0
purl pkg:pypi/pyjwt@1.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.0.0
28
url pkg:pypi/pyjwt@1.0.1
purl pkg:pypi/pyjwt@1.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.0.1
29
url pkg:pypi/pyjwt@1.1.0
purl pkg:pypi/pyjwt@1.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.1.0
30
url pkg:pypi/pyjwt@1.3.0
purl pkg:pypi/pyjwt@1.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.3.0
31
url pkg:pypi/pyjwt@1.4.0
purl pkg:pypi/pyjwt@1.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.4.0
32
url pkg:pypi/pyjwt@1.4.1
purl pkg:pypi/pyjwt@1.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.4.1
33
url pkg:pypi/pyjwt@1.4.2
purl pkg:pypi/pyjwt@1.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.4.2
34
url pkg:pypi/pyjwt@1.5.0
purl pkg:pypi/pyjwt@1.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-42yf-7k7m-dkf6
1
vulnerability VCID-dq17-gzkv-1bdb
2
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.5.0
35
url pkg:pypi/pyjwt@1.5.1
purl pkg:pypi/pyjwt@1.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.5.1
36
url pkg:pypi/pyjwt@1.5.2
purl pkg:pypi/pyjwt@1.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.5.2
37
url pkg:pypi/pyjwt@1.5.3
purl pkg:pypi/pyjwt@1.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.5.3
38
url pkg:pypi/pyjwt@1.6.0
purl pkg:pypi/pyjwt@1.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.6.0
39
url pkg:pypi/pyjwt@1.6.1
purl pkg:pypi/pyjwt@1.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.6.1
40
url pkg:pypi/pyjwt@1.6.3
purl pkg:pypi/pyjwt@1.6.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.6.3
41
url pkg:pypi/pyjwt@1.6.4
purl pkg:pypi/pyjwt@1.6.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.6.4
42
url pkg:pypi/pyjwt@1.7.0
purl pkg:pypi/pyjwt@1.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.7.0
43
url pkg:pypi/pyjwt@1.7.1
purl pkg:pypi/pyjwt@1.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@1.7.1
44
url pkg:pypi/pyjwt@2.0.0a1
purl pkg:pypi/pyjwt@2.0.0a1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.0.0a1
45
url pkg:pypi/pyjwt@2.0.0a2
purl pkg:pypi/pyjwt@2.0.0a2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.0.0a2
46
url pkg:pypi/pyjwt@2.0.0
purl pkg:pypi/pyjwt@2.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.0.0
47
url pkg:pypi/pyjwt@2.0.1
purl pkg:pypi/pyjwt@2.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.0.1
48
url pkg:pypi/pyjwt@2.1.0
purl pkg:pypi/pyjwt@2.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.1.0
49
url pkg:pypi/pyjwt@2.2.0
purl pkg:pypi/pyjwt@2.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.2.0
50
url pkg:pypi/pyjwt@2.3.0
purl pkg:pypi/pyjwt@2.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-dq17-gzkv-1bdb
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.3.0
51
url pkg:pypi/pyjwt@2.4.0
purl pkg:pypi/pyjwt@2.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.4.0
52
url pkg:pypi/pyjwt@2.5.0
purl pkg:pypi/pyjwt@2.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.5.0
53
url pkg:pypi/pyjwt@2.6.0
purl pkg:pypi/pyjwt@2.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.6.0
54
url pkg:pypi/pyjwt@2.7.0
purl pkg:pypi/pyjwt@2.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.7.0
55
url pkg:pypi/pyjwt@2.8.0
purl pkg:pypi/pyjwt@2.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.8.0
56
url pkg:pypi/pyjwt@2.9.0
purl pkg:pypi/pyjwt@2.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.9.0
57
url pkg:pypi/pyjwt@2.10.0
purl pkg:pypi/pyjwt@2.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-5zts-netw-syay
1
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.10.0
58
url pkg:pypi/pyjwt@2.10.1
purl pkg:pypi/pyjwt@2.10.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.10.1
59
url pkg:pypi/pyjwt@2.11.0
purl pkg:pypi/pyjwt@2.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:pypi/pyjwt@2.11.0
60
url pkg:rpm/redhat/fence-agents@4.2.1-129.el8_10?arch=25
purl pkg:rpm/redhat/fence-agents@4.2.1-129.el8_10?arch=25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-f44c-ygbw-bufn
1
vulnerability VCID-kth3-bvbt-gbgk
2
vulnerability VCID-shhe-tubm-f7f8
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.2.1-129.el8_10%3Farch=25
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-32597.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:H/A:N
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-32597.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2026-32597
reference_id
reference_type
scores
0
value 0.0001
scoring_system epss
scoring_elements 0.01053
published_at 2026-04-16T12:55:00Z
1
value 0.0001
scoring_system epss
scoring_elements 0.01126
published_at 2026-04-21T12:55:00Z
2
value 0.0001
scoring_system epss
scoring_elements 0.01061
published_at 2026-04-18T12:55:00Z
3
value 0.0001
scoring_system epss
scoring_elements 0.01058
published_at 2026-04-13T12:55:00Z
4
value 0.00013
scoring_system epss
scoring_elements 0.02299
published_at 2026-04-26T12:55:00Z
5
value 0.00013
scoring_system epss
scoring_elements 0.02306
published_at 2026-04-24T12:55:00Z
6
value 0.00013
scoring_system epss
scoring_elements 0.02343
published_at 2026-04-29T12:55:00Z
7
value 9e-05
scoring_system epss
scoring_elements 0.00914
published_at 2026-04-04T12:55:00Z
8
value 9e-05
scoring_system epss
scoring_elements 0.00913
published_at 2026-04-02T12:55:00Z
9
value 9e-05
scoring_system epss
scoring_elements 0.00917
published_at 2026-04-09T12:55:00Z
10
value 9e-05
scoring_system epss
scoring_elements 0.0092
published_at 2026-04-08T12:55:00Z
11
value 9e-05
scoring_system epss
scoring_elements 0.00906
published_at 2026-04-11T12:55:00Z
12
value 9e-05
scoring_system epss
scoring_elements 0.00901
published_at 2026-04-12T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2026-32597
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-32597
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-32597
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
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:H/A:N
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/jpadilla/pyjwt
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:H/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/jpadilla/pyjwt
5
reference_url https://github.com/jpadilla/pyjwt/security/advisories/GHSA-752w-5fwx-jx9f
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:H/A:N
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:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-03-13T14:48:42Z/
url https://github.com/jpadilla/pyjwt/security/advisories/GHSA-752w-5fwx-jx9f
6
reference_url https://nvd.nist.gov/vuln/detail/CVE-2026-32597
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:H/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2026-32597
7
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1130662
reference_id 1130662
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1130662
8
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2447194
reference_id 2447194
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2447194
9
reference_url https://github.com/advisories/GHSA-752w-5fwx-jx9f
reference_id GHSA-752w-5fwx-jx9f
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-752w-5fwx-jx9f
10
reference_url https://access.redhat.com/errata/RHSA-2026:10140
reference_id RHSA-2026:10140
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:10140
11
reference_url https://access.redhat.com/errata/RHSA-2026:10141
reference_id RHSA-2026:10141
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:10141
12
reference_url https://access.redhat.com/errata/RHSA-2026:10184
reference_id RHSA-2026:10184
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:10184
13
reference_url https://access.redhat.com/errata/RHSA-2026:12176
reference_id RHSA-2026:12176
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:12176
14
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
15
reference_url https://access.redhat.com/errata/RHSA-2026:6720
reference_id RHSA-2026:6720
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6720
16
reference_url https://access.redhat.com/errata/RHSA-2026:6912
reference_id RHSA-2026:6912
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6912
17
reference_url https://access.redhat.com/errata/RHSA-2026:6926
reference_id RHSA-2026:6926
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:6926
18
reference_url https://access.redhat.com/errata/RHSA-2026:8437
reference_id RHSA-2026:8437
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8437
19
reference_url https://access.redhat.com/errata/RHSA-2026:8746
reference_id RHSA-2026:8746
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8746
20
reference_url https://access.redhat.com/errata/RHSA-2026:8747
reference_id RHSA-2026:8747
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8747
21
reference_url https://access.redhat.com/errata/RHSA-2026:8748
reference_id RHSA-2026:8748
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:8748
22
reference_url https://usn.ubuntu.com/8133-1/
reference_id USN-8133-1
reference_type
scores
url https://usn.ubuntu.com/8133-1/
Weaknesses
0
cwe_id 345
name Insufficient Verification of Data Authenticity
description The product does not sufficiently verify the origin or authenticity of data, in a way that causes it to accept invalid data.
1
cwe_id 863
name Incorrect Authorization
description The product performs an authorization check when an actor attempts to access a resource or perform an action, but it does not correctly perform the check. This allows attackers to bypass intended access restrictions.
2
cwe_id 347
name Improper Verification of Cryptographic Signature
description The product does not verify, or incorrectly verifies, the cryptographic signature for data.
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_score7.0 - 8.9
Exploitability0.5
Weighted_severity8.0
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-shhe-tubm-f7f8