Vulnerability Instance
Lookup for vulnerabilities affecting packages.
GET /api/vulnerabilities/11847?format=api
{ "url": "http://public2.vulnerablecode.io/api/vulnerabilities/11847?format=api", "vulnerability_id": "VCID-2k3p-x56s-ffgr", "summary": "Eclipse Jetty URI parsing of invalid authority\n## Summary\n\nEclipse Jetty is a lightweight, highly scalable, Java-based web server and Servlet engine . It includes a utility class, `HttpURI`, for URI/URL parsing.\n\nThe `HttpURI` class does insufficient validation on the authority segment of a URI. However the behaviour of `HttpURI` differs from the common browsers in how it handles a URI that would be considered invalid if fully validated against the RRC. Specifically `HttpURI` and the browser may differ on the value of the host extracted from an invalid URI and thus a combination of Jetty and a vulnerable browser may be vulnerable to a open redirect attack or to a SSRF attack if the URI is used after passing validation checks.\n\n## Details\n\n### Affected components\n\nThe vulnerable component is the `HttpURI` class when used as a utility class in an application. The Jetty usage of the class is not vulnerable.\n\n### Attack overview\n\nThe `HttpURI` class does not well validate the authority section of a URI. When presented with an illegal authority that may contain user info (eg username:password#@hostname:port), then the parsing of the URI is not failed. Moreover, the interpretation of what part of the authority is the host name differs from a common browser in that they also do not fail, but they select a different host name from the illegal URI.\n\n### Attack scenario\n\nA typical attack scenario is illustrated in the diagram below. The Validator checks whether the attacker-supplied URL is on the blocklist. If not, the URI is passed to the Requester for redirection. The Requester is responsible for sending requests to the hostname specified by the URI.\n\nThis attack occurs when the Validator is the `org.eclipse.jetty.http.HttpURI` class and the Requester is the `Browser` (include chrome, firefox and Safari). An attacker can send a malformed URI to the Validator (e.g., `http://browser.check%23%40vulndetector.com/` ). After validation, the Validator finds that the hostname is not on the blocklist. However, the Requester can still send requests to the domain with the hostname `vulndetector.com`.\n\n## PoC\n\npayloads:\n\n```\nhttp://browser.check &@vulndetector.com/\nhttp://browser.check #@vulndetector.com/\nhttp://browser.check?@vulndetector.com/\nhttp://browser.check#@vulndetector.com/\nhttp://vulndetector.com\\\\/\n```\n\nThe problem of 302 redirect parsing in HTML tag scenarios. Below is a poc example. After clicking the button, the browser will open \"browser.check\", and jetty will parse this URL as \"vulndetector.com\".\n\n```\n<a href=\"http://browser.check#@vulndetector.com/\"></a>\n```\nA comparison of the parsing differences between Jetty and chrome is shown in the table below (note that neither should accept the URI as valid).\n\n| Invalid URI | Jetty | Chrome |\n| ---------------------------------------------- | ---------------- | ------------- |\n| http://browser.check &@vulndetector.com/ | vulndetector.com | browser.check |\n| http://browser.check #@vulndetector.com/ | vulndetector.com | browser.check |\n| http://browser.check?@vulndetector.com/ | vulndetector.com | browser.check |\n| http://browser.check#@vulndetector.com/ | vulndetector.com | browser.check |\n\nThe problem of 302 redirect parsing in HTTP 302 Location\n\n| Input | Jetty | Chrome |\n| ------------------------ | -------------- | ------------- |\n| http://browser.check%5c/ | browser.check\\ | browser.check |\n\nIt is noteworthy that Spring Web also faced similar security vulnerabilities, being affected by the aforementioned four types of payloads. These issues have since been resolved and have been assigned three CVE numbers [3-5].\n\n## Impact\n\nThe impact of this vulnerability is limited to developers that use the Jetty HttpURI directly. Example: your project implemented a blocklist to block on some hosts based on HttpURI's handling of authority section. The vulnerability will help attackers bypass the protections that developers have set up for hosts. The vulnerability will lead to **SSRF**[1] and **URL Redirection**[2] vulnerabilities in several cases. \n\n## Mitigation\n\nThe attacks outlined above rely on decoded user data being passed to the `HttpURI` class. Application should not pass decoded user data as an encoded URI to any URI class/method, including `HttpURI`. Such applications are likely to be vulnerable in other ways. \nThe immediate solution is to upgrade to a version of the class that will fully validate the characters of the URI authority. Ultimately, Jetty will deprecate and remove support for user info in the authority per [RFC9110 Section 4.2.4](https://datatracker.ietf.org/doc/html/rfc9110#section-4.2.4). \n\nNote that the Chrome (and other browsers) parse the invalid user info section improperly as well (due to flawed WhatWG URL parsing rules that do not apply outside of a Web Browser).\n\n## Reference\n\n[1] https://cwe.mitre.org/data/definitions/918.html\n[2] https://cwe.mitre.org/data/definitions/601.html", "aliases": [ { "alias": "CVE-2024-6763" }, { "alias": "GHSA-qh8g-58pp-2wxh" } ], "fixed_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/42420?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.12" } ], "affected_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/36198?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185520?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005" }, { "url": "http://public2.vulnerablecode.io/api/packages/185521?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125" }, { "url": "http://public2.vulnerablecode.io/api/packages/185522?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185523?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331" }, { "url": "http://public2.vulnerablecode.io/api/packages/185524?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185525?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185526?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505" }, { "url": "http://public2.vulnerablecode.io/api/packages/185527?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517" }, { "url": "http://public2.vulnerablecode.io/api/packages/185528?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523" }, { "url": "http://public2.vulnerablecode.io/api/packages/185529?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526" }, { "url": "http://public2.vulnerablecode.io/api/packages/185530?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610" }, { "url": "http://public2.vulnerablecode.io/api/packages/185531?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705" }, { "url": "http://public2.vulnerablecode.io/api/packages/185532?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715" }, { "url": "http://public2.vulnerablecode.io/api/packages/185533?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185534?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020" }, { "url": "http://public2.vulnerablecode.io/api/packages/185535?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111" }, { "url": "http://public2.vulnerablecode.io/api/packages/185536?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205" }, { "url": "http://public2.vulnerablecode.io/api/packages/185537?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203" }, { "url": "http://public2.vulnerablecode.io/api/packages/185538?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307" }, { "url": "http://public2.vulnerablecode.io/api/packages/185539?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185540?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414" }, { "url": "http://public2.vulnerablecode.io/api/packages/185541?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513" }, { "url": "http://public2.vulnerablecode.io/api/packages/185542?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526" }, { "url": "http://public2.vulnerablecode.io/api/packages/185543?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701" }, { "url": "http://public2.vulnerablecode.io/api/packages/185544?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707" }, { "url": "http://public2.vulnerablecode.io/api/packages/185545?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725" }, { "url": "http://public2.vulnerablecode.io/api/packages/185546?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185547?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185548?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185549?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901" }, { "url": "http://public2.vulnerablecode.io/api/packages/185550?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185551?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006" }, { "url": "http://public2.vulnerablecode.io/api/packages/185552?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011" }, { "url": "http://public2.vulnerablecode.io/api/packages/185553?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024" }, { "url": "http://public2.vulnerablecode.io/api/packages/185554?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185555?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185556?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185557?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185558?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4" }, { "url": "http://public2.vulnerablecode.io/api/packages/185559?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5" }, { "url": "http://public2.vulnerablecode.io/api/packages/185560?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127" }, { "url": "http://public2.vulnerablecode.io/api/packages/185561?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215" }, { "url": "http://public2.vulnerablecode.io/api/packages/185562?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308" }, { "url": "http://public2.vulnerablecode.io/api/packages/185563?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416" }, { "url": "http://public2.vulnerablecode.io/api/packages/185564?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524" }, { "url": "http://public2.vulnerablecode.io/api/packages/185565?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716" }, { "url": "http://public2.vulnerablecode.io/api/packages/185566?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185567?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910" }, { "url": "http://public2.vulnerablecode.io/api/packages/185568?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185569?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131" }, { "url": "http://public2.vulnerablecode.io/api/packages/185570?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312" }, { "url": "http://public2.vulnerablecode.io/api/packages/185571?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520" }, { "url": "http://public2.vulnerablecode.io/api/packages/185572?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726" }, { "url": "http://public2.vulnerablecode.io/api/packages/185573?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916" }, { "url": "http://public2.vulnerablecode.io/api/packages/185574?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031" }, { "url": "http://public2.vulnerablecode.io/api/packages/185575?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411" }, { "url": "http://public2.vulnerablecode.io/api/packages/185576?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185577?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415" }, { "url": "http://public2.vulnerablecode.io/api/packages/185578?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929" }, { "url": "http://public2.vulnerablecode.io/api/packages/185579?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209" }, { "url": "http://public2.vulnerablecode.io/api/packages/185580?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902" }, { "url": "http://public2.vulnerablecode.io/api/packages/185581?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185582?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185583?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185584?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185585?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185586?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185587?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901" }, { "url": "http://public2.vulnerablecode.io/api/packages/185588?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185589?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006" }, { "url": "http://public2.vulnerablecode.io/api/packages/185590?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011" }, { "url": "http://public2.vulnerablecode.io/api/packages/185591?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024" }, { "url": "http://public2.vulnerablecode.io/api/packages/185592?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185593?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185594?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185595?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4" }, { "url": "http://public2.vulnerablecode.io/api/packages/185596?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5" }, { "url": "http://public2.vulnerablecode.io/api/packages/185597?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127" }, { "url": "http://public2.vulnerablecode.io/api/packages/185598?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215" }, { "url": "http://public2.vulnerablecode.io/api/packages/185599?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308" }, { "url": "http://public2.vulnerablecode.io/api/packages/185600?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416" }, { "url": "http://public2.vulnerablecode.io/api/packages/185601?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524" }, { "url": "http://public2.vulnerablecode.io/api/packages/185602?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716" }, { "url": "http://public2.vulnerablecode.io/api/packages/185603?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185604?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910" }, { "url": "http://public2.vulnerablecode.io/api/packages/185605?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185606?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131" }, { "url": "http://public2.vulnerablecode.io/api/packages/185607?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312" }, { "url": "http://public2.vulnerablecode.io/api/packages/185608?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520" }, { "url": "http://public2.vulnerablecode.io/api/packages/185609?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726" }, { "url": "http://public2.vulnerablecode.io/api/packages/185610?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916" }, { "url": "http://public2.vulnerablecode.io/api/packages/185611?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031" }, { "url": "http://public2.vulnerablecode.io/api/packages/185612?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411" }, { "url": "http://public2.vulnerablecode.io/api/packages/185613?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185614?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415" }, { "url": "http://public2.vulnerablecode.io/api/packages/185615?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929" }, { "url": "http://public2.vulnerablecode.io/api/packages/185616?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209" }, { "url": "http://public2.vulnerablecode.io/api/packages/185617?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902" }, { "url": "http://public2.vulnerablecode.io/api/packages/185618?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185619?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922" }, { "url": "http://public2.vulnerablecode.io/api/packages/185620?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185621?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185622?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185623?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185624?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185625?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4" }, { "url": "http://public2.vulnerablecode.io/api/packages/185626?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5" }, { "url": "http://public2.vulnerablecode.io/api/packages/185627?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185628?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185629?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185630?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308" }, { "url": "http://public2.vulnerablecode.io/api/packages/185631?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408" }, { "url": "http://public2.vulnerablecode.io/api/packages/185632?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417" }, { "url": "http://public2.vulnerablecode.io/api/packages/185633?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506" }, { "url": "http://public2.vulnerablecode.io/api/packages/185634?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625" }, { "url": "http://public2.vulnerablecode.io/api/packages/185635?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815" }, { "url": "http://public2.vulnerablecode.io/api/packages/185636?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930" }, { "url": "http://public2.vulnerablecode.io/api/packages/185637?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107" }, { "url": "http://public2.vulnerablecode.io/api/packages/185638?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185639?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185640?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185641?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185642?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115" }, { "url": "http://public2.vulnerablecode.io/api/packages/185643?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108" }, { "url": "http://public2.vulnerablecode.io/api/packages/185644?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210" }, { "url": "http://public2.vulnerablecode.io/api/packages/185645?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225" }, { "url": "http://public2.vulnerablecode.io/api/packages/185646?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401" }, { "url": "http://public2.vulnerablecode.io/api/packages/185647?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505" }, { "url": "http://public2.vulnerablecode.io/api/packages/185648?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112" }, { "url": "http://public2.vulnerablecode.io/api/packages/36182?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185392?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185393?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185394?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526" }, { "url": "http://public2.vulnerablecode.io/api/packages/185395?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609" }, { "url": "http://public2.vulnerablecode.io/api/packages/185396?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723" }, { "url": "http://public2.vulnerablecode.io/api/packages/23204?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905" }, { "url": "http://public2.vulnerablecode.io/api/packages/156916?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103" }, { "url": "http://public2.vulnerablecode.io/api/packages/156917?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112" }, { "url": "http://public2.vulnerablecode.io/api/packages/156918?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205" }, { "url": "http://public2.vulnerablecode.io/api/packages/156919?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116" }, { "url": "http://public2.vulnerablecode.io/api/packages/23205?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217" }, { "url": "http://public2.vulnerablecode.io/api/packages/23208?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224" }, { "url": "http://public2.vulnerablecode.io/api/packages/185397?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310" }, { "url": "http://public2.vulnerablecode.io/api/packages/185398?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185399?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529" }, { "url": "http://public2.vulnerablecode.io/api/packages/185400?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185401?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709" }, { "url": "http://public2.vulnerablecode.io/api/packages/185402?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730" }, { "url": "http://public2.vulnerablecode.io/api/packages/185403?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185404?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210" }, { "url": "http://public2.vulnerablecode.io/api/packages/185405?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414" }, { "url": "http://public2.vulnerablecode.io/api/packages/185406?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517" }, { "url": "http://public2.vulnerablecode.io/api/packages/185407?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721" }, { "url": "http://public2.vulnerablecode.io/api/packages/185408?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185409?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216" }, { "url": "http://public2.vulnerablecode.io/api/packages/185410?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/185411?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606" }, { "url": "http://public2.vulnerablecode.io/api/packages/185412?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218" }, { "url": "http://public2.vulnerablecode.io/api/packages/185413?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105" }, { "url": "http://public2.vulnerablecode.io/api/packages/185414?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606" }, { "url": "http://public2.vulnerablecode.io/api/packages/36183?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806" }, { "url": "http://public2.vulnerablecode.io/api/packages/36187?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-6uhn-tn81-cyac" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403" }, { "url": "http://public2.vulnerablecode.io/api/packages/36194?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/185649?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105" }, { "url": "http://public2.vulnerablecode.io/api/packages/185650?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428" }, { "url": "http://public2.vulnerablecode.io/api/packages/23206?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/23207?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/156920?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185415?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185416?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185417?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612" }, { "url": "http://public2.vulnerablecode.io/api/packages/185418?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714" }, { "url": "http://public2.vulnerablecode.io/api/packages/185419?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730" }, { "url": "http://public2.vulnerablecode.io/api/packages/185420?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827" }, { "url": "http://public2.vulnerablecode.io/api/packages/185421?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185422?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185423?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007" }, { "url": "http://public2.vulnerablecode.io/api/packages/185424?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012" }, { "url": "http://public2.vulnerablecode.io/api/packages/185425?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185426?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185427?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185428?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115" }, { "url": "http://public2.vulnerablecode.io/api/packages/185429?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185430?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314" }, { "url": "http://public2.vulnerablecode.io/api/packages/185431?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185432?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185433?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517" }, { "url": "http://public2.vulnerablecode.io/api/packages/185434?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185435?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621" }, { "url": "http://public2.vulnerablecode.io/api/packages/185436?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185437?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721" }, { "url": "http://public2.vulnerablecode.io/api/packages/185438?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915" }, { "url": "http://public2.vulnerablecode.io/api/packages/185439?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185440?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014" }, { "url": "http://public2.vulnerablecode.io/api/packages/185441?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028" }, { "url": "http://public2.vulnerablecode.io/api/packages/185442?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220" }, { "url": "http://public2.vulnerablecode.io/api/packages/185443?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/185444?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185445?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317" }, { "url": "http://public2.vulnerablecode.io/api/packages/185446?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406" }, { "url": "http://public2.vulnerablecode.io/api/packages/185447?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502" }, { "url": "http://public2.vulnerablecode.io/api/packages/185448?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531" }, { "url": "http://public2.vulnerablecode.io/api/packages/185449?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185450?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185451?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918" }, { "url": "http://public2.vulnerablecode.io/api/packages/185452?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030" }, { "url": "http://public2.vulnerablecode.io/api/packages/185453?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228" }, { "url": "http://public2.vulnerablecode.io/api/packages/185454?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605" }, { "url": "http://public2.vulnerablecode.io/api/packages/36184?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904" }, { "url": "http://public2.vulnerablecode.io/api/packages/36188?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-6uhn-tn81-cyac" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403" }, { "url": "http://public2.vulnerablecode.io/api/packages/36195?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/185651?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105" }, { "url": "http://public2.vulnerablecode.io/api/packages/185652?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019" }, { "url": "http://public2.vulnerablecode.io/api/packages/185653?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001" }, { "url": "http://public2.vulnerablecode.io/api/packages/36185?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185455?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185456?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185457?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185458?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185459?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185460?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208" }, { "url": "http://public2.vulnerablecode.io/api/packages/185461?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185462?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/185463?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185464?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220" }, { "url": "http://public2.vulnerablecode.io/api/packages/185465?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185466?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317" }, { "url": "http://public2.vulnerablecode.io/api/packages/185467?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185468?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414" }, { "url": "http://public2.vulnerablecode.io/api/packages/185469?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185470?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502" }, { "url": "http://public2.vulnerablecode.io/api/packages/185471?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185472?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531" }, { "url": "http://public2.vulnerablecode.io/api/packages/185473?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185474?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185475?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914" }, { "url": "http://public2.vulnerablecode.io/api/packages/185476?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185477?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121" }, { "url": "http://public2.vulnerablecode.io/api/packages/185478?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185479?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320" }, { "url": "http://public2.vulnerablecode.io/api/packages/185480?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185481?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185482?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503" }, { "url": "http://public2.vulnerablecode.io/api/packages/185483?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605" }, { "url": "http://public2.vulnerablecode.io/api/packages/185484?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185485?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185486?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185487?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830" }, { "url": "http://public2.vulnerablecode.io/api/packages/185488?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111" }, { "url": "http://public2.vulnerablecode.io/api/packages/185489?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114" }, { "url": "http://public2.vulnerablecode.io/api/packages/36186?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215" }, { "url": "http://public2.vulnerablecode.io/api/packages/36189?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-6uhn-tn81-cyac" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411" }, { "url": "http://public2.vulnerablecode.io/api/packages/36199?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/217963?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429" }, { "url": "http://public2.vulnerablecode.io/api/packages/217964?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610" }, { "url": "http://public2.vulnerablecode.io/api/packages/217965?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813" }, { "url": "http://public2.vulnerablecode.io/api/packages/197474?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-zdt8-jrn2-m3ff" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926" }, { "url": "http://public2.vulnerablecode.io/api/packages/197475?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-zdt8-jrn2-m3ff" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022" }, { "url": "http://public2.vulnerablecode.io/api/packages/197476?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-zdt8-jrn2-m3ff" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118" }, { "url": "http://public2.vulnerablecode.io/api/packages/197477?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120" }, { "url": "http://public2.vulnerablecode.io/api/packages/217966?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220" }, { "url": "http://public2.vulnerablecode.io/api/packages/217967?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117" }, { "url": "http://public2.vulnerablecode.io/api/packages/217968?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227" }, { "url": "http://public2.vulnerablecode.io/api/packages/217969?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408" }, { "url": "http://public2.vulnerablecode.io/api/packages/217970?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521" }, { "url": "http://public2.vulnerablecode.io/api/packages/217971?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611" }, { "url": "http://public2.vulnerablecode.io/api/packages/217972?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723" }, { "url": "http://public2.vulnerablecode.io/api/packages/217973?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930" }, { "url": "http://public2.vulnerablecode.io/api/packages/217974?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020" }, { "url": "http://public2.vulnerablecode.io/api/packages/233431?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102" }, { "url": "http://public2.vulnerablecode.io/api/packages/233432?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120" }, { "url": "http://public2.vulnerablecode.io/api/packages/233433?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114" }, { "url": "http://public2.vulnerablecode.io/api/packages/233434?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-p7cu-h519-83hx" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219" }, { "url": "http://public2.vulnerablecode.io/api/packages/238135?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224" }, { "url": "http://public2.vulnerablecode.io/api/packages/238136?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325" }, { "url": "http://public2.vulnerablecode.io/api/packages/319677?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.40.v20210413", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.40.v20210413" }, { "url": "http://public2.vulnerablecode.io/api/packages/319678?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.41.v20210516", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.41.v20210516" }, { "url": "http://public2.vulnerablecode.io/api/packages/319679?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.42.v20210604", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.42.v20210604" }, { "url": "http://public2.vulnerablecode.io/api/packages/319680?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.43.v20210629", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.43.v20210629" }, { "url": "http://public2.vulnerablecode.io/api/packages/319681?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.44.v20210927", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.44.v20210927" }, { "url": "http://public2.vulnerablecode.io/api/packages/319682?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.45.v20220203", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.45.v20220203" }, { "url": "http://public2.vulnerablecode.io/api/packages/319683?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.46.v20220331", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.46.v20220331" }, { "url": "http://public2.vulnerablecode.io/api/packages/621930?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.47.v20220610", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.47.v20220610" }, { "url": "http://public2.vulnerablecode.io/api/packages/621931?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.48.v20220622", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.48.v20220622" }, { "url": "http://public2.vulnerablecode.io/api/packages/621932?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.49.v20220914", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.49.v20220914" }, { "url": "http://public2.vulnerablecode.io/api/packages/621933?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.50.v20221201", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.50.v20221201" }, { "url": "http://public2.vulnerablecode.io/api/packages/621934?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217" }, { "url": "http://public2.vulnerablecode.io/api/packages/719820?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.52.v20230823", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.52.v20230823" }, { "url": "http://public2.vulnerablecode.io/api/packages/719821?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.53.v20231009", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.53.v20231009" }, { "url": "http://public2.vulnerablecode.io/api/packages/719822?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.54.v20240208", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.54.v20240208" }, { "url": "http://public2.vulnerablecode.io/api/packages/719823?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.55.v20240627", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.55.v20240627" }, { "url": "http://public2.vulnerablecode.io/api/packages/719824?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.56.v20240826", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.56.v20240826" }, { "url": "http://public2.vulnerablecode.io/api/packages/719825?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.57.v20241219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.57.v20241219" }, { "url": "http://public2.vulnerablecode.io/api/packages/719826?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.58.v20250814", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.58.v20250814" }, { "url": "http://public2.vulnerablecode.io/api/packages/719827?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0-alpha0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0-alpha0" }, { "url": "http://public2.vulnerablecode.io/api/packages/217975?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1" }, { "url": "http://public2.vulnerablecode.io/api/packages/217976?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2" }, { "url": "http://public2.vulnerablecode.io/api/packages/217977?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0" }, { "url": "http://public2.vulnerablecode.io/api/packages/217978?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1" }, { "url": "http://public2.vulnerablecode.io/api/packages/217979?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2" }, { "url": "http://public2.vulnerablecode.io/api/packages/217980?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3" }, { "url": "http://public2.vulnerablecode.io/api/packages/60026?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-4g8e-zm2m-6yhv" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233435?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238137?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/319684?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/319685?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/319686?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/319687?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/319688?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/319689?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/319690?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/81375?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/621935?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/621936?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/621937?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/621938?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/60027?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/60033?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/719828?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/719829?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/719830?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/719831?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/719832?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/719833?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/719834?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/719835?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/719836?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/147507?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/719837?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0-alpha0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0-alpha0" }, { "url": "http://public2.vulnerablecode.io/api/packages/217981?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1" }, { "url": "http://public2.vulnerablecode.io/api/packages/217982?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2" }, { "url": "http://public2.vulnerablecode.io/api/packages/217983?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3" }, { "url": "http://public2.vulnerablecode.io/api/packages/60028?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-4g8e-zm2m-6yhv" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233436?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238138?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/319691?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/319692?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/319693?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/319694?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/319695?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/319696?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/319697?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/81376?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/621939?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/621940?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/621941?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/621942?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/60029?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/60034?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/719838?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/719839?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/719840?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/719841?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/719842?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/719843?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/719844?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/719845?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/719846?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/147510?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/719847?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha0" }, { "url": "http://public2.vulnerablecode.io/api/packages/719848?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha1" }, { "url": "http://public2.vulnerablecode.io/api/packages/719849?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha2" }, { "url": "http://public2.vulnerablecode.io/api/packages/719850?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha3" }, { "url": "http://public2.vulnerablecode.io/api/packages/719851?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta0" }, { "url": "http://public2.vulnerablecode.io/api/packages/719852?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta1" }, { "url": "http://public2.vulnerablecode.io/api/packages/719853?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta2" }, { "url": "http://public2.vulnerablecode.io/api/packages/719854?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta3" }, { "url": "http://public2.vulnerablecode.io/api/packages/719855?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta4" }, { "url": "http://public2.vulnerablecode.io/api/packages/60030?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-4g8e-zm2m-6yhv" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/60036?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/719856?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/719857?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/719858?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/719859?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/719860?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/719861?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/719862?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/719863?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/719864?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/146393?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.11" } ], "references": [ { "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-6763.json", "reference_id": "", "reference_type": "", "scores": [ { "value": "3.7", "scoring_system": "cvssv3", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-6763.json" }, { "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2024-6763", "reference_id": "", "reference_type": "", "scores": [ { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77285", "published_at": "2026-04-18T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77284", "published_at": "2026-04-16T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77245", "published_at": "2026-04-13T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77247", "published_at": "2026-04-12T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77268", "published_at": "2026-04-11T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77241", "published_at": "2026-04-09T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77201", "published_at": "2026-04-07T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77219", "published_at": "2026-04-04T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.77233", "published_at": "2026-04-08T12:55:00Z" }, { "value": "0.01022", "scoring_system": "epss", "scoring_elements": "0.7719", "published_at": "2026-04-02T12:55:00Z" } ], "url": "https://api.first.org/data/v1/epss?cve=CVE-2024-6763" }, { "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-6763", "reference_id": "", "reference_type": "", "scores": [], "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-6763" }, { "reference_url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml", "reference_id": "", "reference_type": "", "scores": [ { "value": "4.8", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N" } ], "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": "3.7", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" }, { "value": "6.3", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/jetty/jetty.project" }, { "reference_url": "https://github.com/jetty/jetty.project/pull/12012", "reference_id": "", "reference_type": "", "scores": [ { "value": "3.7", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" }, { "value": "6.3", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2024-10-15T17:44:14Z/" } ], "url": "https://github.com/jetty/jetty.project/pull/12012" }, { "reference_url": "https://github.com/jetty/jetty.project/security/advisories/GHSA-qh8g-58pp-2wxh", "reference_id": "", "reference_type": "", "scores": [ { "value": "3.7", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" }, { "value": "MODERATE", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" }, { "value": "6.3", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2024-10-15T17:44:14Z/" } ], "url": "https://github.com/jetty/jetty.project/security/advisories/GHSA-qh8g-58pp-2wxh" }, { "reference_url": "https://gitlab.eclipse.org/security/cve-assignement/-/issues/25", "reference_id": "", "reference_type": "", "scores": [ { "value": "3.7", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" }, { "value": "6.3", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2024-10-15T17:44:14Z/" } ], "url": "https://gitlab.eclipse.org/security/cve-assignement/-/issues/25" }, { "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2024-6763", "reference_id": "", "reference_type": "", "scores": [ { "value": "3.7", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" }, { "value": "6.3", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-6763" }, { "reference_url": "https://security.netapp.com/advisory/ntap-20250306-0005", "reference_id": "", "reference_type": "", "scores": [ { "value": "3.7", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" }, { "value": "6.3", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://security.netapp.com/advisory/ntap-20250306-0005" }, { "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085698", "reference_id": "1085698", "reference_type": "", "scores": [], "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085698" }, { "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2318563", "reference_id": "2318563", "reference_type": "", "scores": [], "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2318563" }, { "reference_url": "https://github.com/advisories/GHSA-qh8g-58pp-2wxh", "reference_id": "GHSA-qh8g-58pp-2wxh", "reference_type": "", "scores": [ { "value": "MODERATE", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" } ], "url": "https://github.com/advisories/GHSA-qh8g-58pp-2wxh" } ], "weaknesses": [ { "cwe_id": 1286, "name": "Improper Validation of Syntactic Correctness of Input", "description": "The product receives input that is expected to be well-formed - i.e., to comply with a certain syntax - but it does not validate or incorrectly validates that the input complies with the syntax." }, { "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": "3.7 - 6.9", "exploitability": "0.5", "weighted_severity": "6.2", "risk_score": 3.1, "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-2k3p-x56s-ffgr" }