{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/24801?format=json","vulnerability_id":"VCID-kth3-bvbt-gbgk","summary":"Denial of Service in pyasn1 via Unbounded Recursion\n### Summary\nThe `pyasn1` library is vulnerable to a Denial of Service (DoS) attack caused by uncontrolled recursion when decoding ASN.1 data with deeply nested structures. An attacker can supply a crafted payload containing nested `SEQUENCE` (`0x30`) or `SET` (`0x31`) tags with Indefinite Length (`0x80`) markers. This forces the decoder to recursively call itself until the Python interpreter crashes with a `RecursionError` or consumes all available memory (OOM), crashing the host application.\n\n### Details\nThe vulnerability exists because the decoder iterates through the input stream and recursively calls `decodeFun` (the decoding callback) for every nested component found, without tracking or limiting the recursion depth.\nVulnerable Code Locations:\n1. `indefLenValueDecoder` (Line 998):\n```for component in decodeFun(substrate, asn1Spec, allowEoo=True, **options):```\nThis method handles indefinite-length constructed types. It sits inside a `while True` loop and recursively calls the decoder for every nested tag.\n\n2. `valueDecoder` (Lines 786 and 907):\n```for component in decodeFun(substrate, componentType, **options):```\nThis method handles standard decoding when a schema is present. It contains two distinct recursive calls that lack depth checks: Line 786: Recursively decodes components of `SEQUENCE` or `SET` types. Line 907: Recursively decodes elements of `SEQUENCE OF` or `SET OF` types.\n\n4. `_decodeComponentsSchemaless` (Line 661):\n```for component in decodeFun(substrate, **options):```\nThis method handles decoding when no schema is provided.\n\nIn all three cases, `decodeFun` is invoked without passing a `depth` parameter or checking against a global `MAX_ASN1_NESTING` limit.\n\n### PoC\n```\nimport sys\nfrom pyasn1.codec.ber import decoder\n\nsys.setrecursionlimit(100000)\n\nprint(\"[*] Generating Recursion Bomb Payload...\")\ndepth = 50_000\nchunk = b'\\x30\\x80' \npayload = chunk * depth\n\nprint(f\"[*] Payload size: {len(payload) / 1024:.2f} KB\")\nprint(\"[*] Triggering Decoder...\")\n\ntry:\n    decoder.decode(payload)\nexcept RecursionError:\n    print(\"[!] Crashed: Recursion Limit Hit\")\nexcept MemoryError:\n    print(\"[!] Crashed: Out of Memory\")\nexcept Exception as e:\n    print(f\"[!] Crashed: {e}\")\n```\n\n```\n[*] Payload size: 9.77 KB\n[*] Triggering Decoder...\n[!] Crashed: Recursion Limit Hit\n```\n\n### Impact\n- This is an unhandled runtime exception that typically terminates the worker process or thread handling the request. This allows a remote attacker to trivially kill service workers with a small payload (<100KB), resulting in a Denial of Service. Furthermore, in environments where recursion limits are increased, this leads to server-wide memory exhaustion.\n- Service Crash: Any service using `pyasn1` to parse untrusted ASN.1 data (e.g., LDAP, SNMP, Kerberos, X.509 parsers) can be crashed remotely.\n- Resource Exhaustion: The attack consumes RAM linearly with the nesting depth. A small payload (<200KB) can consume hundreds of megabytes of RAM or exhaust the stack.\n\n### Credits\nVulnerability discovered by Kevin Tu of TMIR at ByteDance.","aliases":[{"alias":"CVE-2026-30922"},{"alias":"GHSA-jr27-m4p2-rc6r"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/936079?format=json","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=json","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/1000471?format=json","purl":"pkg:deb/debian/pyasn1@0.4.8-3%2Bdeb12u2?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-3%252Bdeb12u2%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1056866?format=json","purl":"pkg:deb/debian/pyasn1@0.4.8-3%2Bdeb12u2","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.4.8-3%252Bdeb12u2"},{"url":"http://public2.vulnerablecode.io/api/packages/936085?format=json","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/1000472?format=json","purl":"pkg:deb/debian/pyasn1@0.6.1-1%2Bdeb13u2?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.6.1-1%252Bdeb13u2%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1056868?format=json","purl":"pkg:deb/debian/pyasn1@0.6.1-1%2Bdeb13u2","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/pyasn1@0.6.1-1%252Bdeb13u2"},{"url":"http://public2.vulnerablecode.io/api/packages/936083?format=json","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/68031?format=json","purl":"pkg:pypi/pyasn1@0.6.3","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.6.3"}],"affected_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/1054530?format=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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/936081?format=json","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/936079?format=json","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=json","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/936085?format=json","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/1056867?format=json","purl":"pkg:deb/debian/pyasn1@0.6.1-1%2Bdeb13u1","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"},{"url":"http://public2.vulnerablecode.io/api/packages/1069038?format=json","purl":"pkg:pypi/pyasn1@0.0.6a","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.6a"},{"url":"http://public2.vulnerablecode.io/api/packages/1069039?format=json","purl":"pkg:pypi/pyasn1@0.0.9a","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.9a"},{"url":"http://public2.vulnerablecode.io/api/packages/1069040?format=json","purl":"pkg:pypi/pyasn1@0.0.10a","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.10a"},{"url":"http://public2.vulnerablecode.io/api/packages/1069041?format=json","purl":"pkg:pypi/pyasn1@0.0.11a","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.11a"},{"url":"http://public2.vulnerablecode.io/api/packages/1069042?format=json","purl":"pkg:pypi/pyasn1@0.0.12a","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.12a"},{"url":"http://public2.vulnerablecode.io/api/packages/1069043?format=json","purl":"pkg:pypi/pyasn1@0.0.13a","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.13a"},{"url":"http://public2.vulnerablecode.io/api/packages/1069044?format=json","purl":"pkg:pypi/pyasn1@0.0.13b","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.13b"},{"url":"http://public2.vulnerablecode.io/api/packages/1069045?format=json","purl":"pkg:pypi/pyasn1@0.0.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.0.13"},{"url":"http://public2.vulnerablecode.io/api/packages/1069046?format=json","purl":"pkg:pypi/pyasn1@0.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/1069047?format=json","purl":"pkg:pypi/pyasn1@0.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/1069048?format=json","purl":"pkg:pypi/pyasn1@0.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/1069049?format=json","purl":"pkg:pypi/pyasn1@0.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/1069050?format=json","purl":"pkg:pypi/pyasn1@0.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/1069051?format=json","purl":"pkg:pypi/pyasn1@0.1.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.6"},{"url":"http://public2.vulnerablecode.io/api/packages/1069052?format=json","purl":"pkg:pypi/pyasn1@0.1.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.7"},{"url":"http://public2.vulnerablecode.io/api/packages/1069053?format=json","purl":"pkg:pypi/pyasn1@0.1.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.8"},{"url":"http://public2.vulnerablecode.io/api/packages/1069054?format=json","purl":"pkg:pypi/pyasn1@0.1.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.1.9"},{"url":"http://public2.vulnerablecode.io/api/packages/1069055?format=json","purl":"pkg:pypi/pyasn1@0.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/1069056?format=json","purl":"pkg:pypi/pyasn1@0.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/1069057?format=json","purl":"pkg:pypi/pyasn1@0.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/1069058?format=json","purl":"pkg:pypi/pyasn1@0.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/1069059?format=json","purl":"pkg:pypi/pyasn1@0.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/1069060?format=json","purl":"pkg:pypi/pyasn1@0.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/1069061?format=json","purl":"pkg:pypi/pyasn1@0.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/1069062?format=json","purl":"pkg:pypi/pyasn1@0.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/1069063?format=json","purl":"pkg:pypi/pyasn1@0.3.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.6"},{"url":"http://public2.vulnerablecode.io/api/packages/1069064?format=json","purl":"pkg:pypi/pyasn1@0.3.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.3.7"},{"url":"http://public2.vulnerablecode.io/api/packages/1069065?format=json","purl":"pkg:pypi/pyasn1@0.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/1069066?format=json","purl":"pkg:pypi/pyasn1@0.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/1069067?format=json","purl":"pkg:pypi/pyasn1@0.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/1069068?format=json","purl":"pkg:pypi/pyasn1@0.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/1069069?format=json","purl":"pkg:pypi/pyasn1@0.4.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.5"},{"url":"http://public2.vulnerablecode.io/api/packages/1069070?format=json","purl":"pkg:pypi/pyasn1@0.4.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.6"},{"url":"http://public2.vulnerablecode.io/api/packages/1069071?format=json","purl":"pkg:pypi/pyasn1@0.4.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.7"},{"url":"http://public2.vulnerablecode.io/api/packages/1069072?format=json","purl":"pkg:pypi/pyasn1@0.4.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.4.8"},{"url":"http://public2.vulnerablecode.io/api/packages/1069073?format=json","purl":"pkg:pypi/pyasn1@0.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/1069074?format=json","purl":"pkg:pypi/pyasn1@0.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/1069075?format=json","purl":"pkg:pypi/pyasn1@0.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-kth3-bvbt-gbgk"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:pypi/pyasn1@0.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/61751?format=json","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/61752?format=json","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"},{"url":"http://public2.vulnerablecode.io/api/packages/1089094?format=json","purl":"pkg:rpm/redhat/fence-agents@4.2.1-129.el8_10?arch=25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-f44c-ygbw-bufn"},{"vulnerability":"VCID-kth3-bvbt-gbgk"},{"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":[{"reference_url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-30922.json","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3","scoring_elements":"CVSS:3.0/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-30922.json"},{"reference_url":"https://api.first.org/data/v1/epss?cve=CVE-2026-30922","reference_id":"","reference_type":"","scores":[{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15359","published_at":"2026-04-02T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15321","published_at":"2026-04-08T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15233","published_at":"2026-04-07T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15429","published_at":"2026-04-04T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.1515","published_at":"2026-04-18T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15142","published_at":"2026-04-16T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15227","published_at":"2026-04-13T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15293","published_at":"2026-04-12T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15332","published_at":"2026-04-11T12:55:00Z"},{"value":"0.00049","scoring_system":"epss","scoring_elements":"0.15371","published_at":"2026-04-09T12:55:00Z"},{"value":"0.00054","scoring_system":"epss","scoring_elements":"0.16702","published_at":"2026-04-24T12:55:00Z"},{"value":"0.00054","scoring_system":"epss","scoring_elements":"0.16797","published_at":"2026-04-21T12:55:00Z"},{"value":"0.00054","scoring_system":"epss","scoring_elements":"0.16687","published_at":"2026-04-26T12:55:00Z"},{"value":"0.00073","scoring_system":"epss","scoring_elements":"0.21914","published_at":"2026-04-29T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2026-30922"},{"reference_url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-30922","reference_id":"","reference_type":"","scores":[],"url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-30922"},{"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.0/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/commit/25ad481c19fdb006e20485ef3fc2e5b3eff30ef0","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"},{"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-03-18T20:16:18Z/"}],"url":"https://github.com/pyasn1/pyasn1/commit/25ad481c19fdb006e20485ef3fc2e5b3eff30ef0"},{"reference_url":"https://github.com/pyasn1/pyasn1/commit/5a49bd1fe93b5b866a1210f6bf0a3924f21572c8","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.0/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/5a49bd1fe93b5b866a1210f6bf0a3924f21572c8"},{"reference_url":"https://github.com/pyasn1/pyasn1/releases/tag/v0.6.3","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.0/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/releases/tag/v0.6.3"},{"reference_url":"https://github.com/pyasn1/pyasn1/security/advisories/GHSA-jr27-m4p2-rc6r","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":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.0/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-03-18T20:16:18Z/"}],"url":"https://github.com/pyasn1/pyasn1/security/advisories/GHSA-jr27-m4p2-rc6r"},{"reference_url":"https://lists.debian.org/debian-lts-announce/2026/05/msg00001.html","reference_id":"","reference_type":"","scores":[],"url":"https://lists.debian.org/debian-lts-announce/2026/05/msg00001.html"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2026-30922","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.0/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-30922"},{"reference_url":"http://www.openwall.com/lists/oss-security/2026/03/20/4","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.0/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":"http://www.openwall.com/lists/oss-security/2026/03/20/4"},{"reference_url":"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1131371","reference_id":"1131371","reference_type":"","scores":[],"url":"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1131371"},{"reference_url":"https://bugzilla.redhat.com/show_bug.cgi?id=2448553","reference_id":"2448553","reference_type":"","scores":[],"url":"https://bugzilla.redhat.com/show_bug.cgi?id=2448553"},{"reference_url":"https://github.com/advisories/GHSA-jr27-m4p2-rc6r","reference_id":"GHSA-jr27-m4p2-rc6r","reference_type":"","scores":[{"value":"HIGH","scoring_system":"cvssv3.1_qr","scoring_elements":""}],"url":"https://github.com/advisories/GHSA-jr27-m4p2-rc6r"},{"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"},{"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"},{"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"},{"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"},{"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"},{"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"},{"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"},{"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"},{"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"},{"reference_url":"https://usn.ubuntu.com/8129-1/","reference_id":"USN-8129-1","reference_type":"","scores":[],"url":"https://usn.ubuntu.com/8129-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":674,"name":"Uncontrolled Recursion","description":"The product does not properly control the amount of recursion that takes place, consuming excessive resources, such as allocated memory or the program stack."},{"cwe_id":835,"name":"Loop with Unreachable Exit Condition ('Infinite Loop')","description":"The product contains an iteration or loop with an exit condition that cannot be reached, i.e., an infinite loop."},{"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-kth3-bvbt-gbgk"}