Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-2k3p-x56s-ffgr
Summary
Eclipse Jetty URI parsing of invalid authority
## Summary

Eclipse Jetty is a lightweight, highly scalable, Java-based web server and Servlet engine . It includes a utility class, `HttpURI`, for URI/URL parsing.

The `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.

## Details

### Affected components

The vulnerable component is the `HttpURI` class when used as a utility class in an application.  The Jetty usage of the class is not vulnerable.

### Attack overview

The `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.

### Attack scenario

A 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.

This 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`.

## PoC

payloads:

```
http://browser.check &@vulndetector.com/
http://browser.check #@vulndetector.com/
http://browser.check?@vulndetector.com/
http://browser.check#@vulndetector.com/
http://vulndetector.com\\/
```

The 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".

```
<a href="http://browser.check#@vulndetector.com/"></a>
```
A comparison of the parsing differences between Jetty and chrome is shown in the table below (note that neither should accept the URI as valid).

| Invalid URI                                       | Jetty            | Chrome        |
| ---------------------------------------------- | ---------------- | ------------- |
| http://browser.check &@vulndetector.com/ | vulndetector.com | browser.check |
| http://browser.check #@vulndetector.com/ | vulndetector.com | browser.check |
| http://browser.check?@vulndetector.com/    | vulndetector.com | browser.check |
| http://browser.check#@vulndetector.com/    | vulndetector.com | browser.check |

The problem of 302 redirect parsing in HTTP 302 Location

| Input                    | Jetty          | Chrome        |
| ------------------------ | -------------- | ------------- |
| http://browser.check%5c/ | browser.check\ | browser.check |

It 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].

## Impact

The 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. 

## Mitigation

The 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. 
The 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). 

Note 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).

## Reference

[1] https://cwe.mitre.org/data/definitions/918.html
[2] https://cwe.mitre.org/data/definitions/601.html
Aliases
0
alias CVE-2024-6763
1
alias GHSA-qh8g-58pp-2wxh
Fixed_packages
0
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.12
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.12
Affected_packages
0
url pkg:maven/org.eclipse.jetty/jetty-http@7.0.0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0
1
url pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005
purl pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005
2
url pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125
purl pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125
3
url pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0
4
url pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331
purl pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331
5
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0
6
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1
7
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505
8
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517
9
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523
10
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526
11
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610
12
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705
13
url pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715
purl pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715
14
url pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0
15
url pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020
purl pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020
16
url pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111
purl pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111
17
url pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205
purl pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205
18
url pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203
purl pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203
19
url pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307
purl pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307
20
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0
21
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414
22
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513
23
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526
24
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701
25
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707
26
url pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725
purl pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725
27
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0
28
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1
29
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2
30
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901
31
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908
32
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006
33
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011
34
url pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024
purl pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024
35
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0
36
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1
37
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2
38
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3
39
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4
40
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5
41
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127
42
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215
43
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308
44
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416
45
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524
46
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716
47
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903
48
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910
49
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106
50
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131
51
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312
52
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520
53
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726
54
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916
55
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031
56
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411
57
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903
58
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415
59
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929
60
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209
61
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902
62
url pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908
purl pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908
63
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0
64
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1
65
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2
66
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3
67
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0
68
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901
69
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908
70
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006
71
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011
72
url pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024
purl pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024
73
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0
74
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1
75
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2
76
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4
77
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5
78
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127
79
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215
80
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308
81
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416
82
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524
83
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716
84
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903
85
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910
86
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106
87
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131
88
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312
89
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520
90
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726
91
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916
92
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031
93
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411
94
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903
95
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415
96
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929
97
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209
98
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902
99
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908
100
url pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922
purl pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922
101
url pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908
purl pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908
102
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0
103
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1
104
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2
105
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3
106
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4
107
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5
108
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0
109
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1
110
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2
111
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308
112
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408
113
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417
114
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506
115
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625
116
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815
117
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930
118
url pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107
purl pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107
119
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0
120
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0
121
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1
122
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2
123
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115
124
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108
125
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210
126
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225
127
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401
128
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505
129
url pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112
purl pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112
130
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0
131
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1
132
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0
133
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526
134
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609
135
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723
136
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905
137
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103
138
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112
139
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205
140
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116
141
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217
142
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224
143
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310
144
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0
145
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529
146
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0
147
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709
148
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730
149
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106
150
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210
151
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414
152
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517
153
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721
154
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908
155
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216
156
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120
157
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606
158
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218
159
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105
160
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606
161
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806
162
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-6uhn-tn81-cyac
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403
163
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
2
vulnerability VCID-prd3-mmuv-n3dc
3
vulnerability VCID-q3k2-1x5q-buhy
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418
164
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105
165
url pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428
purl pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428
166
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0
167
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-9x6q-13wc-3bdu
2
vulnerability VCID-ahev-zdjd-gqg1
3
vulnerability VCID-czhb-gqt2-17av
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1
168
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2
169
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0
170
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1
171
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612
172
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714
173
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730
174
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827
175
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0
176
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1
177
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007
178
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012
179
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106
180
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0
181
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1
182
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115
183
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0
184
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314
185
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0
186
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1
187
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517
188
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0
189
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621
190
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0
191
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721
192
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915
193
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0
194
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014
195
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028
196
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220
197
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120
198
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0
199
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317
200
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406
201
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502
202
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531
203
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0
204
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0
205
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918
206
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030
207
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228
208
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605
209
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904
210
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-6uhn-tn81-cyac
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403
211
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
2
vulnerability VCID-prd3-mmuv-n3dc
3
vulnerability VCID-q3k2-1x5q-buhy
4
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418
212
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105
213
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019
214
url pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001
purl pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-czhb-gqt2-17av
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001
215
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0
216
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1
217
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0
218
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1
219
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2
220
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3
221
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208
222
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619
223
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120
224
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619
225
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220
226
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619
227
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317
228
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619
229
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414
230
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619
231
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502
232
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619
233
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531
234
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619
235
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0
236
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914
237
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619
238
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121
239
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619
240
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320
241
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0
242
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1
243
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503
244
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605
245
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0
246
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1
247
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2
248
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830
249
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111
250
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114
251
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-ahev-zdjd-gqg1
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215
252
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-6uhn-tn81-cyac
2
vulnerability VCID-czhb-gqt2-17av
3
vulnerability VCID-e1r9-bbdh-qqf6
4
vulnerability VCID-nubz-xqaw-tkfr
5
vulnerability VCID-prd3-mmuv-n3dc
6
vulnerability VCID-q3k2-1x5q-buhy
7
vulnerability VCID-tqm9-4ch7-s7b3
8
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411
253
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418
254
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429
255
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610
256
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813
257
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
7
vulnerability VCID-zdt8-jrn2-m3ff
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926
258
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
7
vulnerability VCID-zdt8-jrn2-m3ff
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022
259
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
7
vulnerability VCID-zdt8-jrn2-m3ff
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118
260
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120
261
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220
262
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117
263
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227
264
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408
265
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521
266
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611
267
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-nubz-xqaw-tkfr
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723
268
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-nubz-xqaw-tkfr
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
7
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930
269
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020
270
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102
271
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120
272
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
6
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114
273
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-p7cu-h519-83hx
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219
274
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224
275
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325
276
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.40.v20210413
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.40.v20210413
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.40.v20210413
277
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.41.v20210516
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.41.v20210516
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.41.v20210516
278
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.42.v20210604
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.42.v20210604
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.42.v20210604
279
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.43.v20210629
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.43.v20210629
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.43.v20210629
280
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.44.v20210927
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.44.v20210927
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.44.v20210927
281
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.45.v20220203
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.45.v20220203
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.45.v20220203
282
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.46.v20220331
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.46.v20220331
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.46.v20220331
283
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.47.v20220610
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.47.v20220610
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.47.v20220610
284
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.48.v20220622
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.48.v20220622
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.48.v20220622
285
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.49.v20220914
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.49.v20220914
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.49.v20220914
286
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.50.v20221201
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.50.v20221201
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.50.v20221201
287
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217
288
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.52.v20230823
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.52.v20230823
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.52.v20230823
289
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.53.v20231009
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.53.v20231009
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.53.v20231009
290
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.54.v20240208
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.54.v20240208
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.54.v20240208
291
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.55.v20240627
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.55.v20240627
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.55.v20240627
292
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.56.v20240826
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.56.v20240826
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.56.v20240826
293
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.57.v20241219
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.57.v20241219
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.57.v20241219
294
url pkg:maven/org.eclipse.jetty/jetty-http@9.4.58.v20250814
purl pkg:maven/org.eclipse.jetty/jetty-http@9.4.58.v20250814
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.58.v20250814
295
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0-alpha0
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0-alpha0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0-alpha0
296
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1
297
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2
298
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0
299
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1
300
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2
301
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3
302
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.0
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-4g8e-zm2m-6yhv
2
vulnerability VCID-e1r9-bbdh-qqf6
3
vulnerability VCID-kxtv-ma18-8fer
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
7
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0
303
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.1
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.1
304
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.2
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.2
305
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.3
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.3
306
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.4
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.4
307
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.5
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.5
308
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.6
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.6
309
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.7
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.7
310
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.8
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.8
311
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.9
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.9
312
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.10
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.10
313
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.11
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.11
314
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.12
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.12
315
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.13
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.13
316
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.14
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.14
317
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.15
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.15
318
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.16
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.16
319
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.17
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.17
320
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.18
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.18
321
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.19
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.19
322
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.20
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.20
323
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.21
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.21
324
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.22
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.22
325
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.23
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.23
326
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.24
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.24
327
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.25
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.25
328
url pkg:maven/org.eclipse.jetty/jetty-http@10.0.26
purl pkg:maven/org.eclipse.jetty/jetty-http@10.0.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.26
329
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.0-alpha0
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.0-alpha0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0-alpha0
330
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1
331
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-nubz-xqaw-tkfr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2
332
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3
333
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.0
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-4g8e-zm2m-6yhv
2
vulnerability VCID-e1r9-bbdh-qqf6
3
vulnerability VCID-kxtv-ma18-8fer
4
vulnerability VCID-prd3-mmuv-n3dc
5
vulnerability VCID-q3k2-1x5q-buhy
6
vulnerability VCID-tqm9-4ch7-s7b3
7
vulnerability VCID-uuju-ey95-tyfq
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0
334
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.1
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-kxtv-ma18-8fer
3
vulnerability VCID-prd3-mmuv-n3dc
4
vulnerability VCID-q3k2-1x5q-buhy
5
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.1
335
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.2
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.2
336
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.3
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.3
337
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.4
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.4
338
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.5
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.5
339
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.6
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.6
340
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.7
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.7
341
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.8
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.8
342
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.9
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
3
vulnerability VCID-tqm9-4ch7-s7b3
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.9
343
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.10
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.10
344
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.11
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.11
345
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.12
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.12
346
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.13
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.13
347
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.14
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.14
348
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.15
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
2
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.15
349
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.16
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.16
350
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.17
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.17
351
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.18
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.18
352
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.19
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.19
353
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.20
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.20
354
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.21
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.21
355
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.22
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.22
356
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.23
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.23
357
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.24
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.24
358
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.25
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.25
359
url pkg:maven/org.eclipse.jetty/jetty-http@11.0.26
purl pkg:maven/org.eclipse.jetty/jetty-http@11.0.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.26
360
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha0
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha0
361
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha1
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha1
362
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha2
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha2
363
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha3
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.alpha3
364
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta0
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta0
365
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta1
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta1
366
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta2
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta2
367
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta3
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta3
368
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta4
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0.beta4
369
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.0
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-4g8e-zm2m-6yhv
2
vulnerability VCID-e1r9-bbdh-qqf6
3
vulnerability VCID-q3k2-1x5q-buhy
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.0
370
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.1
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.1
371
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.2
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.2
372
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.3
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.3
373
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.4
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.4
374
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.5
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.5
375
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.6
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.6
376
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.7
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.7
377
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.8
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.8
378
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.9
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.9
379
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.10
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.10
380
url pkg:maven/org.eclipse.jetty/jetty-http@12.0.11
purl pkg:maven/org.eclipse.jetty/jetty-http@12.0.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2k3p-x56s-ffgr
1
vulnerability VCID-e1r9-bbdh-qqf6
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@12.0.11
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-6763.json
reference_id
reference_type
scores
0
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
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2024-6763
reference_id
reference_type
scores
0
value 0.00923
scoring_system epss
scoring_elements 0.7607
published_at 2026-04-29T12:55:00Z
1
value 0.00923
scoring_system epss
scoring_elements 0.76059
published_at 2026-04-26T12:55:00Z
2
value 0.00923
scoring_system epss
scoring_elements 0.76049
published_at 2026-04-24T12:55:00Z
3
value 0.00923
scoring_system epss
scoring_elements 0.76011
published_at 2026-04-21T12:55:00Z
4
value 0.01022
scoring_system epss
scoring_elements 0.77456
published_at 2026-05-15T12:55:00Z
5
value 0.01022
scoring_system epss
scoring_elements 0.7719
published_at 2026-04-02T12:55:00Z
6
value 0.01022
scoring_system epss
scoring_elements 0.77219
published_at 2026-04-04T12:55:00Z
7
value 0.01022
scoring_system epss
scoring_elements 0.77201
published_at 2026-04-07T12:55:00Z
8
value 0.01022
scoring_system epss
scoring_elements 0.77233
published_at 2026-04-08T12:55:00Z
9
value 0.01022
scoring_system epss
scoring_elements 0.77241
published_at 2026-04-09T12:55:00Z
10
value 0.01022
scoring_system epss
scoring_elements 0.77268
published_at 2026-04-11T12:55:00Z
11
value 0.01022
scoring_system epss
scoring_elements 0.77247
published_at 2026-04-12T12:55:00Z
12
value 0.01022
scoring_system epss
scoring_elements 0.77245
published_at 2026-04-13T12:55:00Z
13
value 0.01022
scoring_system epss
scoring_elements 0.77284
published_at 2026-04-16T12:55:00Z
14
value 0.01022
scoring_system epss
scoring_elements 0.77285
published_at 2026-04-18T12:55:00Z
15
value 0.01022
scoring_system epss
scoring_elements 0.77337
published_at 2026-05-05T12:55:00Z
16
value 0.01022
scoring_system epss
scoring_elements 0.77365
published_at 2026-05-07T12:55:00Z
17
value 0.01022
scoring_system epss
scoring_elements 0.77386
published_at 2026-05-09T12:55:00Z
18
value 0.01022
scoring_system epss
scoring_elements 0.77376
published_at 2026-05-11T12:55:00Z
19
value 0.01022
scoring_system epss
scoring_elements 0.77394
published_at 2026-05-12T12:55:00Z
20
value 0.01022
scoring_system epss
scoring_elements 0.7744
published_at 2026-05-14T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2024-6763
2
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
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
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
4
reference_url https://github.com/jetty/jetty.project
reference_id
reference_type
scores
0
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
1
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
2
value MODERATE
scoring_system generic_textual
scoring_elements
url https://github.com/jetty/jetty.project
5
reference_url https://github.com/jetty/jetty.project/pull/12012
reference_id
reference_type
scores
0
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
1
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
2
value MODERATE
scoring_system generic_textual
scoring_elements
3
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
6
reference_url https://github.com/jetty/jetty.project/security/advisories/GHSA-qh8g-58pp-2wxh
reference_id
reference_type
scores
0
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
1
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
2
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
3
value MODERATE
scoring_system generic_textual
scoring_elements
4
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
7
reference_url https://gitlab.eclipse.org/security/cve-assignement/-/issues/25
reference_id
reference_type
scores
0
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
1
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
2
value MODERATE
scoring_system generic_textual
scoring_elements
3
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
8
reference_url https://nvd.nist.gov/vuln/detail/CVE-2024-6763
reference_id
reference_type
scores
0
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
1
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
2
value MODERATE
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2024-6763
9
reference_url https://security.netapp.com/advisory/ntap-20250306-0005
reference_id
reference_type
scores
0
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
1
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
2
value MODERATE
scoring_system generic_textual
scoring_elements
url https://security.netapp.com/advisory/ntap-20250306-0005
10
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
11
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
12
reference_url https://github.com/advisories/GHSA-qh8g-58pp-2wxh
reference_id GHSA-qh8g-58pp-2wxh
reference_type
scores
0
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-qh8g-58pp-2wxh
Weaknesses
0
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.
1
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.
2
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_score3.7 - 6.9
Exploitability0.5
Weighted_severity6.2
Risk_score3.1
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-2k3p-x56s-ffgr