Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/53766?format=api",
    "vulnerability_id": "VCID-h3wz-rdkt-7ue6",
    "summary": "Jetty SslConnection does not release pooled ByteBuffers in case of errors\n### Impact\n`SslConnection` does not release `ByteBuffer`s in case of error code paths.\nFor example, TLS handshakes that require client-auth with clients that send expired certificates will trigger a TLS handshake errors and the `ByteBuffer`s used to process the TLS handshake will be leaked.\n\n### Workarounds\nConfigure explicitly a `RetainableByteBufferPool` with `max[Heap|Direct]Memory` to limit the amount of memory that is leaked.\nEventually the pool will be full of \"active\" entries (the leaked ones) and will provide `ByteBuffer`s that will be GCed normally.\n\n_With embedded-jetty_\n\n``` java\nint maxBucketSize = 1000;\nlong maxHeapMemory = 128 * 1024L * 1024L; // 128 MB\nlong maxDirectMemory = 128 * 1024L * 1024L; // 128 MB\nRetainableByteBufferPool rbbp = new ArrayRetainableByteBufferPool(0, -1, -1, maxBucketSize, maxHeapMemory, maxDirectMemory);\n\nserver.addBean(rbbp); // make sure the ArrayRetainableByteBufferPool is added before the server is started\nserver.start();\n```\n\n_With jetty-home/jetty-base_\n\nCreate a `${jetty.base}/etc/retainable-byte-buffer-config.xml`\n\n``` xml\n<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"https://www.eclipse.org/jetty/configure_10_0.dtd\">\n\n<Configure id=\"Server\" class=\"org.eclipse.jetty.server.Server\">\n  <Call name=\"addBean\">\n    <Arg>\n      <New class=\"org.eclipse.jetty.io.ArrayRetainableByteBufferPool\">\n        <Arg type=\"int\"><Property name=\"jetty.byteBufferPool.minCapacity\" default=\"0\"/></Arg>\n        <Arg type=\"int\"><Property name=\"jetty.byteBufferPool.factor\" default=\"-1\"/></Arg>\n        <Arg type=\"int\"><Property name=\"jetty.byteBufferPool.maxCapacity\" default=\"-1\"/></Arg>\n        <Arg type=\"int\"><Property name=\"jetty.byteBufferPool.maxBucketSize\" default=\"1000\"/></Arg>\n        <Arg type=\"long\"><Property name=\"jetty.byteBufferPool.maxHeapMemory\" default=\"128000000\"/></Arg>\n        <Arg type=\"long\"><Property name=\"jetty.byteBufferPool.maxDirectMemory\" default=\"128000000\"/></Arg>\n      </New>\n    </Arg>\n  </Call>\n</Configure>\n```\n\nAnd then reference it in `${jetty.base}/start.d/retainable-byte-buffer-config.ini`\n\n```\netc/retainable-byte-buffer-config.xml\n```\n\n\n### References\nhttps://github.com/eclipse/jetty.project/issues/8161\n\n### For more information\n* Email us at [security@webtide.com](mailto:security@webtide.com)",
    "aliases": [
        {
            "alias": "CVE-2022-2191"
        },
        {
            "alias": "GHSA-8mpp-f3f7-xc28"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925874?format=api",
            "purl": "pkg:deb/debian/jetty9@0?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@0%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/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/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/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/81317?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.10"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81318?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.10",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.10"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/57073?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/75883?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/73829?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/76405?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319664?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319665?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319666?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319667?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319668?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319669?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/57074?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/75892?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/73837?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/76406?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319670?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319671?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319672?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319673?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319674?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/319675?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-h3wz-rdkt-7ue6"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.9"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-2191.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-2022-2191.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2022-2191",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71111",
                    "published_at": "2026-04-18T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71104",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71057",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71074",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.7109",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71066",
                    "published_at": "2026-04-09T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71052",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71009",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71034",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00659",
                    "scoring_system": "epss",
                    "scoring_elements": "0.71017",
                    "published_at": "2026-04-02T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2022-2191"
        },
        {
            "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/eclipse/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": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project"
        },
        {
            "reference_url": "https://github.com/eclipse/jetty.project/issues/8161",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project/issues/8161"
        },
        {
            "reference_url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-8mpp-f3f7-xc28",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-8mpp-f3f7-xc28"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2022-2191",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-2191"
        },
        {
            "reference_url": "https://security.netapp.com/advisory/ntap-20220909-0003",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.5",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://security.netapp.com/advisory/ntap-20220909-0003"
        },
        {
            "reference_url": "https://security.netapp.com/advisory/ntap-20220909-0003/",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://security.netapp.com/advisory/ntap-20220909-0003/"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2116953",
            "reference_id": "2116953",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2116953"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-8mpp-f3f7-xc28",
            "reference_id": "GHSA-8mpp-f3f7-xc28",
            "reference_type": "",
            "scores": [
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-8mpp-f3f7-xc28"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2023:0189",
            "reference_id": "RHSA-2023:0189",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2023:0189"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 404,
            "name": "Improper Resource Shutdown or Release",
            "description": "The product does not release or incorrectly releases a resource before it is made available for re-use."
        },
        {
            "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."
        },
        {
            "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."
        }
    ],
    "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-h3wz-rdkt-7ue6"
}