Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/27982?format=api",
    "vulnerability_id": "VCID-gdcf-9axf-1yaq",
    "summary": "Eclipse Jetty affected by MadeYouReset HTTP/2 vulnerability\n## Technical Details \nBelow is a technical explanation of a newly discovered vulnerability in HTTP/2, which we refer to as “MadeYouReset.”\n\n### MadeYouReset Vulnerability Summary\nThe MadeYouReset DDoS vulnerability is a logical vulnerability in the HTTP/2 protocol, that uses malformed HTTP/2 control frames in order to break the max concurrent streams limit - which results in resource exhaustion and distributed denial of service.\n\n### Mechanism\nThe vulnerability uses malformed HTTP/2 control frames, or malformed flow, in order to make the server reset streams created by the client (using the RST_STREAM frame). \nThe vulnerability could be triggered by several primitives, defined by the RFC of HTTP/2 (RFC 9113). The Primitives are:\n1. WINDOW_UPDATE frame with an increment of 0 or an increment that makes the window exceed 2^31 - 1. (section 6.9 + 6.9.1)\n2. HEADERS or DATA frames sent on a half-closed (remote) stream (which was closed using the END_STREAM flag). (note that for some implementations it's possible a CONTINUATION frame to trigger that as well - but it's very rare). (Section 5.1)\n3. PRIORITY frame with a length other than 5. (section 6.3)\nFrom our experience, the primitives are likely to exist in the decreasing order listed above.\nNote that based on the implementation of the library, other primitives (which are not defined by the RFC) might exist - meaning scenarios in which RST_STREAM is not supposed to be sent, but in the implementation it does. On the other hand - some RFC-defined primitives might not work, even though they are defined by the RFC (as some implementations are not fully complying with RFC). For example, some implementations we’ve seen discard the PRIORITY frame - and thus does not return RST_STREAM, and some implementations send GO_AWAY when receiving a WINDOW_UPDATE frame with increment of 0.\n\nThe vulnerability takes advantage of a design flaw in the HTTP/2 protocol - While HTTP/2 has a limit on the number of concurrently active streams per connection (which is usually 100, and is set by the parameter SETTINGS_MAX_CONCURRENT_STREAMS), the number of active streams is not counted correctly - when a stream is reset, it is immediately considered not active, and thus unaccounted for in the active streams counter. \nWhile the protocol does not count those streams as active, the server’s backend logic still processes and handles the requests that were canceled.\n\nThus, the attacker can exploit this vulnerability to cause the server to handle an unbounded number of concurrent streams from a client on the same connection. The exploitation is very simple: the client issues a request in a stream, and then sends the control frame that causes the server to send a RST_STREAM.\n\n### Attack Flow\nFor example, a possible attack scenario can be: \n1. Attacker opens an HTTP/2 connection to the server.\n2. Attacker sends HEADERS frame with END_STREAM flag on a new stream X.  \n3. Attacker sends WINDOW_UPDATE for stream X with flow-control window of 0.\n4. The server receives the WINDOW_UPDATE and immediately sends RST_STREAM for stream X to the client (+ decreases the active streams counter by 1).\n\nThe attacker can repeat steps 2+3 as rapidly as it is capable, since the active streams counter never exceeds 1 and the attacker does not need to wait for the response from the server.\nThis leads to resource exhaustion and distributed denial of service vulnerabilities with an impact of: CPU overload and/or memory exhaustion (implementation dependant)\n\n### Comparison to Rapid Reset\nThe vulnerability takes advantage of a design flow in the HTTP/2 protocol that was also used in the Rapid Reset vulnerability (CVE-2023-44487) which was exploited as a zero-day in the wild in August 2023 to October 2023, against multiple services and vendors.\nThe Rapid Reset vulnerability uses RST_STREAM frames sent from the client, in order to create an unbounded amount of concurrent streams - it was given a CVSS score of 7.5.\nRapid Reset was mostly mitigated by limiting the number/rate of RST_STREAM sent from the client, which does not mitigate the MadeYouReset attack - since it triggers the server to send a RST_STREAM.\n\n### Suggested Mitigations for MadeYouReset\nA quick and easy mitigation will be to limit the number/rate of RST_STREAMs sent from the server.\nIt is also possible to limit the number/rate of control frames sent by the client (e.g. WINDOW_UPDATE and PRIORITY), and treat protocol flow errors as a connection error.\n\nAs mentioned in our previous message, this is a protocol-level vulnerability that affects multiple vendors and implementations. Given its broad impact, it is the shared responsibility of all parties involved to handle the disclosure process carefully and coordinate mitigations effectively.\n\n\nIf you have any questions, we will be happy to clarify or schedule a Zoom call.\n\nGal, Anat and Yaniv.\n\n\n\n## Jetty's Team Notes\n\n### Impact\nA denial of service vulnerability similar to [Rapid Reset](https://github.com/jetty/jetty.project/security/advisories/GHSA-c745-7wm4-7738), but where the client triggers a reset from the server by sending a malformed or invalid frame.\nIn particular, this may be triggered by WINDOW_UPDATE frames that are invalid (e.g. with `delta==0` or when the delta makes the window exceed `2^31-1`).\n\n### Patches\nPatch has been merged into 12.0.x mainline via https://github.com/jetty/jetty.project/pull/13449.\n\n### Workarounds\nNo workarounds apart disabling HTTP/2.",
    "aliases": [
        {
            "alias": "CVE-2025-5115"
        },
        {
            "alias": "GHSA-mmxm-8w33-wc4h"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925869?format=api",
            "purl": "pkg:deb/debian/jetty12@12.0.17-3.1~deb13u1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-daws-9x98-vbbm"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty12@12.0.17-3.1~deb13u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925872?format=api",
            "purl": "pkg:deb/debian/jetty12@12.0.17-3.1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty12@12.0.17-3.1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925867?format=api",
            "purl": "pkg:deb/debian/jetty12@12.0.33-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty12@12.0.33-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925875?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.50-4%2Bdeb11u2?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.50-4%252Bdeb11u2%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925903?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-0%2Bdeb11u3?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-0%252Bdeb11u3%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925873?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-1.1~deb12u1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-1.1~deb12u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1049402?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-1.1~deb12u1",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-1.1~deb12u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925877?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-1.1~deb13u1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-1.1~deb13u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925904?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-1.1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-1.1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925876?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.58-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.58-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793068?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.58.v20250814",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.58.v20250814"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/69797?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.26",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.26"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/69798?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.26",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.26"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/69799?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.25",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.25"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/69800?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta3"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1036988?format=api",
            "purl": "pkg:deb/debian/jetty9@9.2.21-1~bpo8%2B1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.2.21-1~bpo8%252B1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1036989?format=api",
            "purl": "pkg:deb/debian/jetty9@9.2.21-1%2Bdeb9u1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.2.21-1%252Bdeb9u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1037903?format=api",
            "purl": "pkg:deb/debian/jetty9@9.2.23-1~bpo8%2B1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.2.23-1~bpo8%252B1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1037904?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.16-0%2Bdeb10u1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.16-0%252Bdeb10u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1049401?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.50-4%2Bdeb11u2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.50-4%252Bdeb11u2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60418?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626222?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.0.v20150612",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.0.v20150612"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626223?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.1.v20150714",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.1.v20150714"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626224?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.2.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.2.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626225?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.3.v20150827",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.3.v20150827"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626226?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.4.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.4.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626227?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.4.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.4.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626228?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.4.v20151007",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.4.v20151007"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626229?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.5.v20151012",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.5.v20151012"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626230?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.6.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.6.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626231?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626232?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.7.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.7.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626233?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.7.v20160115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.7.v20160115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626234?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.8.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.8.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626235?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.8.v20160314",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.8.v20160314"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626236?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.9.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.9.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626237?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.9.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.9.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626238?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.9.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.9.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626239?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.10.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.10.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626240?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.10.v20160621",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.10.v20160621"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626241?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626242?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.11.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.11.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626243?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.12.v20160915",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.12.v20160915"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626244?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.13.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.13.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626245?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.13.v20161014",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.13.v20161014"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626246?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.14.v20161028",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.14.v20161028"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626247?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.15.v20161220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.15.v20161220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626248?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.16.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.16.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626249?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.17.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.17.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626250?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.17.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.17.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626251?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.18.v20170406",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.18.v20170406"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626252?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.19.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.19.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626253?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.20.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.20.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626254?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.21.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.21.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626255?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.21.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.21.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626256?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.21.v20170918",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.21.v20170918"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626257?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.22.v20171030",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.22.v20171030"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626258?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.23.v20180228",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.23.v20180228"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626259?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.24.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.24.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626260?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.25.v20180904",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.25.v20180904"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626261?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.26.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.26.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626262?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.27.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.27.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626263?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.28.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.28.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626264?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.29.v20201019",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.29.v20201019"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626265?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.30.v20211001",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.3.30.v20211001"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626266?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626267?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626268?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626269?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626270?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626271?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626272?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.v20161208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.v20161208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626273?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.0.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626274?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.1.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.1.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626275?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.1.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.1.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626276?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.2.v20170220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.2.v20170220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626277?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.2.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.2.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626278?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.3.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.3.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626279?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.3.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.3.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626280?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.4.v20170414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.4.v20170414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626281?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.4.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.4.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626282?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.5.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.5.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626283?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.5.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.5.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626284?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.6.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.6.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626285?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.6.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.6.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626286?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626287?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.7.v20170914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.7.v20170914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626288?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.7.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.7.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626289?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.8.v20171121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.8.v20171121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626290?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.8.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.8.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626291?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.9.v20180320",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.9.v20180320"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626292?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.10.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.10.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626293?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.10.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.10.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626294?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.10.v20180503",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.10.v20180503"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626295?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.11.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.11.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626296?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626297?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626298?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626299?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.v20180830",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.12.v20180830"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626300?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.13.v20181111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.13.v20181111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626301?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.14.v20181114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.14.v20181114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626302?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.15.v20190215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.15.v20190215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626303?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.16.v20190411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.16.v20190411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626304?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.17.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.17.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626305?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.18.v20190429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.18.v20190429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626306?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.19.v20190610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.19.v20190610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626307?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.20.v20190813",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.20.v20190813"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626308?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.21.v20190926",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.21.v20190926"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626309?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.22.v20191022",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.22.v20191022"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626310?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.23.v20191118",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.23.v20191118"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626311?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.24.v20191120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.24.v20191120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626312?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.25.v20191220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.25.v20191220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626313?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.26.v20200117",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.26.v20200117"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626314?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.27.v20200227",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.27.v20200227"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626315?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.28.v20200408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.28.v20200408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626316?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.29.v20200521",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.29.v20200521"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626317?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.30.v20200611",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.30.v20200611"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626318?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.31.v20200723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.31.v20200723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626319?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.32.v20200930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.32.v20200930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626320?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.33.v20201020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.33.v20201020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626321?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.34.v20201102",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.34.v20201102"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626322?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.35.v20201120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.35.v20201120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626323?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.36.v20210114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.36.v20210114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626324?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.37.v20210219",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.37.v20210219"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626325?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.38.v20210224",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.38.v20210224"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626326?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.39.v20210325",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.39.v20210325"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626327?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.40.v20210413",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.40.v20210413"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626328?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.41.v20210516",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.41.v20210516"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626329?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.42.v20210604",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.42.v20210604"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626330?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.43.v20210629",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.43.v20210629"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626331?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.44.v20210927",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.44.v20210927"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626332?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.45.v20220203",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.45.v20220203"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626333?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.46.v20220331",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.46.v20220331"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626334?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.47.v20220610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.47.v20220610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626335?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.48.v20220622",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.48.v20220622"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626336?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.49.v20220914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.49.v20220914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626337?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.50.v20221201",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.50.v20221201"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626338?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.51.v20230217",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.51.v20230217"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626339?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.52.v20230823",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.52.v20230823"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626340?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.53.v20231009",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.53.v20231009"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/666016?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.54.v20240208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.54.v20240208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793065?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.55.v20240627",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.55.v20240627"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793066?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.56.v20240826",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.56.v20240826"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1026036?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.57",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.57"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793067?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.57.v20241219",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@9.4.57.v20241219"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60419?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626341?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626342?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626343?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626344?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626345?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626346?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626347?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626348?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626349?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626350?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.10"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626351?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.11",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.11"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626352?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.12",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.12"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626353?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.13",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.13"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626354?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.14",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.14"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626355?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.15",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.15"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626356?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.16",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.16"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60423?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.17",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.17"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/666017?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.18",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.18"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/145070?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.19",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.19"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/53087?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.20",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.20"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793069?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.21",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.21"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793070?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.22",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.22"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793071?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.23",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.23"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793072?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.24",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.24"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793073?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.25",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@10.0.25"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60420?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626357?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626358?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626359?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626360?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626361?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626362?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626363?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626364?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626365?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626366?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.10"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626367?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.11",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.11"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626368?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.12",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.12"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626369?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.13",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.13"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626370?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.14",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.14"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626371?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.15",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.15"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626372?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.16",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.16"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60424?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.17",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.17"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/666018?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.18",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.18"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/145068?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.19",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.19"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/53089?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.20",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.20"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793074?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.21",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.21"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793075?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.22",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.22"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793076?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.23",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.23"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793077?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.24",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.24"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/793078?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.25",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/http2-common@11.0.25"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60508?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/626751?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/60510?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/666203?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/666204?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/145069?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/53092?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763580?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763581?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763582?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763583?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.10"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763584?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.11",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.11"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763585?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.12",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.12"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763586?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.13",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.13"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763587?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.14",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.14"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763588?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.15",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.15"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/763589?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.16",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-sshg-yscz-afga"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.16"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/71043?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.17",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.17"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792514?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.18",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.18"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792515?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.19",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.19"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792516?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.20",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.20"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792517?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.21",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.21"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792518?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.22",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.22"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792519?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.23",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.23"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792520?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.24",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.0.24"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/570782?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.alpha0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.alpha0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792521?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792522?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.alpha2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.alpha2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792523?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792524?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/792525?format=api",
            "purl": "pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty.http2/jetty-http2-common@12.1.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89355?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758206866-3?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758206866-3%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89356?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758259817-3?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758259817-3%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89365?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758260563-3?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758260563-3%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89358?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758298953-3?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758298953-3%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89353?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758299374-3?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758299374-3%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89367?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758302106-3?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758302106-3%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89357?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758302665-3?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758302665-3%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89360?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.516.3.1758336945-3?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.516.3.1758336945-3%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89362?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.12.1758299735-1?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.12.1758299735-1%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89354?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.13.1758299004-1?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.13.1758299004-1%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89363?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.14.1758302383-1?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.14.1758302383-1%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89366?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.15.1758303157-1?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.15.1758303157-1%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89359?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.16.1758337173-1?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.16.1758337173-1%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89361?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.17.1758260106-1?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.17.1758260106-1%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89364?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.18.1758260849-1?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.18.1758260849-1%3Farch=el9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/89352?format=api",
            "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.19.1758207171-1?arch=el9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.19.1758207171-1%3Farch=el9"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2025-5115.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-2025-5115.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2025-5115",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31747",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31715",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.3175",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.3179",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31787",
                    "published_at": "2026-04-09T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31757",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31706",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31887",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00125",
                    "scoring_system": "epss",
                    "scoring_elements": "0.31843",
                    "published_at": "2026-04-02T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2025-5115"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-5115",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-5115"
        },
        {
            "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/jetty/jetty.project",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/jetty/jetty.project"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/commit/f9ee3904788b08203ed62c95a560d951da37bdb1",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/jetty/jetty.project/commit/f9ee3904788b08203ed62c95a560d951da37bdb1"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/pull/13449",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/pull/13449"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/releases/tag/jetty-10.0.26",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/releases/tag/jetty-10.0.26"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/releases/tag/jetty-11.0.26",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/releases/tag/jetty-11.0.26"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/releases/tag/jetty-12.0.25",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/releases/tag/jetty-12.0.25"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/releases/tag/jetty-12.1.0",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/releases/tag/jetty-12.1.0"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/releases/tag/jetty-9.4.58.v20250814",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/releases/tag/jetty-9.4.58.v20250814"
        },
        {
            "reference_url": "https://github.com/jetty/jetty.project/security/advisories/GHSA-mmxm-8w33-wc4h",
            "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": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-20T19:28:04Z/"
                }
            ],
            "url": "https://github.com/jetty/jetty.project/security/advisories/GHSA-mmxm-8w33-wc4h"
        },
        {
            "reference_url": "https://lists.debian.org/debian-lts-announce/2025/09/msg00014.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": "7.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.debian.org/debian-lts-announce/2025/09/msg00014.html"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2025-5115",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-5115"
        },
        {
            "reference_url": "https://www.kb.cert.org/vuls/id/767506",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.kb.cert.org/vuls/id/767506"
        },
        {
            "reference_url": "http://www.openwall.com/lists/oss-security/2025/08/20/4",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "http://www.openwall.com/lists/oss-security/2025/08/20/4"
        },
        {
            "reference_url": "http://www.openwall.com/lists/oss-security/2025/09/17/1",
            "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.7",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "http://www.openwall.com/lists/oss-security/2025/09/17/1"
        },
        {
            "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111765",
            "reference_id": "1111765",
            "reference_type": "",
            "scores": [],
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111765"
        },
        {
            "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111766",
            "reference_id": "1111766",
            "reference_type": "",
            "scores": [],
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111766"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2373310",
            "reference_id": "2373310",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2373310"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-mmxm-8w33-wc4h",
            "reference_id": "GHSA-mmxm-8w33-wc4h",
            "reference_type": "",
            "scores": [
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-mmxm-8w33-wc4h"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:14911",
            "reference_id": "RHSA-2025:14911",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:14911"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16454",
            "reference_id": "RHSA-2025:16454",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16454"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16455",
            "reference_id": "RHSA-2025:16455",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16455"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16456",
            "reference_id": "RHSA-2025:16456",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16456"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16457",
            "reference_id": "RHSA-2025:16457",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16457"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16459",
            "reference_id": "RHSA-2025:16459",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16459"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16460",
            "reference_id": "RHSA-2025:16460",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16460"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16461",
            "reference_id": "RHSA-2025:16461",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16461"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16462",
            "reference_id": "RHSA-2025:16462",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16462"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:16989",
            "reference_id": "RHSA-2025:16989",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:16989"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2025:17567",
            "reference_id": "RHSA-2025:17567",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2025:17567"
        }
    ],
    "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-gdcf-9axf-1yaq"
}