Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/33467?format=api",
    "vulnerability_id": "VCID-nubz-xqaw-tkfr",
    "summary": "Local Temp Directory Hijacking Vulnerability\n### Impact\nOn Unix like systems, the system's temporary directory is shared between all users on that system.  A collocated user can observe the process of creating a temporary sub directory in the shared temporary directory and race to complete the creation of the temporary subdirectory.  If the attacker wins the race then they will have read and write permission to the subdirectory used to unpack web applications, including their WEB-INF/lib jar files and JSP files.  If any code is ever executed out of this temporary directory, this can lead to a local privilege escalation vulnerability.\n\nAdditionally, any user code uses of [WebAppContext::getTempDirectory](https://www.eclipse.org/jetty/javadoc/9.4.31.v20200723/org/eclipse/jetty/webapp/WebAppContext.html#getTempDirectory()) would similarly be vulnerable.\n\nAdditionally, any user application code using the `ServletContext` attribute for the tempdir will also be impacted.\nSee: https://javaee.github.io/javaee-spec/javadocs/javax/servlet/ServletContext.html#TEMPDIR\n\nFor example:\n```java\nimport java.io.File;\nimport java.io.IOException;\nimport javax.servlet.ServletContext;\nimport javax.servlet.ServletException;\nimport javax.servlet.http.HttpServlet;\nimport javax.servlet.http.HttpServletRequest;\nimport javax.servlet.http.HttpServletResponse;\n\npublic class ExampleServlet extends HttpServlet {\n    @Override\n    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {\n        File tempDir = (File)getServletContext().getAttribute(ServletContext.TEMPDIR); // Potentially compromised\n        // do something with that temp dir\n    }\n}\n```\n\nExample: The JSP library itself will use the container temp directory for compiling the JSP source into Java classes before executing them.\n\n### CVSSv3.1 Evaluation\n\nThis vulnerability has been calculated to have a [CVSSv3.1 score of 7.8/10 (AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H)](https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator?vector=AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H&version=3.1)\n\n### Patches\nFixes were applied to the 9.4.x branch with:\n- https://github.com/eclipse/jetty.project/commit/53e0e0e9b25a6309bf24ee3b10984f4145701edb\n- https://github.com/eclipse/jetty.project/commit/9ad6beb80543b392c91653f6bfce233fc75b9d5f\n\nThese will be included in releases: 9.4.33, 10.0.0.beta3, 11.0.0.beta3\n\n### Workarounds\n\nA work around is to set a temporary directory, either for the server or the context, to a directory outside of the shared temporary file system.\nFor recent releases, a temporary directory can be created simple by creating a directory called `work` in the ${jetty.base} directory (the parent directory of the `webapps` directory).\nAlternately the java temporary directory can be set with the System Property `java.io.tmpdir`.    A more detailed description of how jetty selects a temporary directory is below.\n\nThe Jetty search order for finding a temporary directory is as follows:\n\n1. If the [`WebAppContext` has a temp directory specified](https://www.eclipse.org/jetty/javadoc/current/org/eclipse/jetty/webapp/WebAppContext.html#setTempDirectory(java.io.File)), use it.\n2. If the `ServletContext` has the `javax.servlet.context.tempdir` attribute set, and if directory exists, use it.\n3. If a `${jetty.base}/work` directory exists, use it (since Jetty 9.1)\n4. If a `ServletContext` has the `org.eclipse.jetty.webapp.basetempdir` attribute set, and if the directory exists, use it.\n5. Use `System.getProperty(\"java.io.tmpdir\")` and use it.\n\nJetty will end traversal at the first successful step.\nTo mitigate this vulnerability the directory must be set to one that is not writable by an attacker.  To avoid information leakage, the directory should also not be readable by an attacker.\n\n#### Setting a Jetty server temporary directory.\n\nChoices 3 and 5 apply to the server level, and will impact all deployed webapps on the server.\n\nFor choice 3  just create that work directory underneath your `${jetty.base}` and restart Jetty.\n\nFor choice 5, just specify your own `java.io.tmpdir` when you start the JVM for Jetty.\n\n``` shell\n[jetty-distribution]$ java -Djava.io.tmpdir=/var/web/work -jar start.jar\n```\n\n#### Setting a Context specific temporary directory.\n\nThe rest of the choices require you to configure the context for that deployed webapp (seen as `${jetty.base}/webapps/<context>.xml`)\n\nExample (excluding the DTD which is version specific):\n\n``` xml\n<Configure class=\"org.eclipse.jetty.webapp.WebAppContext\">\n  <Set name=\"contextPath\"><Property name=\"foo\"/></Set>\n  <Set name=\"war\">/var/web/webapps/foo.war</Set>\n  <Set name=\"tempDirectory\">/var/web/work/foo</Set>\n</Configure>\n```\n\n### References\n \n - https://github.com/eclipse/jetty.project/issues/5451\n - [CWE-378: Creation of Temporary File With Insecure Permissions](https://cwe.mitre.org/data/definitions/378.html)\n - [CWE-379: Creation of Temporary File in Directory with Insecure Permissions](https://cwe.mitre.org/data/definitions/379.html)\n - [CodeQL Query PR To Detect Similar Vulnerabilities](https://github.com/github/codeql/pull/4473)\n\n### Similar Vulnerabilities\n\nSimilar, but not the same.\n\n - JUnit 4 - https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp\n - Google Guava - https://github.com/google/guava/issues/4011\n - Apache Ant - https://nvd.nist.gov/vuln/detail/CVE-2020-1945\n - JetBrains Kotlin Compiler - https://nvd.nist.gov/vuln/detail/CVE-2020-15824\n\n### For more information\n\nThe original report of this vulnerability is below:\n\n> On Thu, 15 Oct 2020 at 21:14, Jonathan Leitschuh <jonathan.leitschuh@gmail.com> wrote:\n> Hi WebTide Security Team,\n>\n> I'm a security researcher writing some custom CodeQL queries to find Local Temporary Directory Hijacking Vulnerabilities. One of my queries flagged an issue in Jetty.\n>\n> https://lgtm.com/query/5615014766184643449/\n>\n> I've recently been looking into security vulnerabilities involving the temporary directory because on unix-like systems, the system temporary directory is shared between all users.\n> There exists a race condition between the deletion of the temporary file and the creation of the directory.\n>\n> ```java\n> // ensure file will always be unique by appending random digits\n> tmpDir = File.createTempFile(temp, \".dir\", parent); // Attacker knows the full path of the file that will be generated\n> // delete the file that was created\n> tmpDir.delete(); // Attacker sees file is deleted and begins a race to create their own directory before Jetty.\n> // and make a directory of the same name\n> // SECURITY VULNERABILITY: Race Condition! - Attacker beats Jetty and now owns this directory\n> tmpDir.mkdirs();\n> ```\n>\n> https://github.com/eclipse/jetty.project/blob/1b59672b7f668b8a421690154b98b4b2b03f254b/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebInfConfiguration.java#L511-L518\n>\n> In several cases the `parent` parameter will not be the system temporary directory. However, there is one case where it will be, as the last fallback.\n>\n>\n> https://github.com/eclipse/jetty.project/blob/1b59672b7f668b8a421690154b98b4b2b03f254b/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebInfConfiguration.java#L467-L468\n>\n> If any code is ever executed out of this temporary directory, this can lead to a local privilege escalation vulnerability.\n>\n> Would your team be willing to open a GitHub security advisory to continue the discussion and disclosure there? https://github.com/eclipse/jetty.project/security/advisories\n>\n> **This vulnerability disclosure follows Google's [90-day vulnerability disclosure policy](https://www.google.com/about/appsecurity/) (I'm not an employee of Google, I just like their policy). Full disclosure will occur either at the end of the 90-day deadline or whenever a patch is made widely available, whichever occurs first.**\n>\n> Cheers,\n> Jonathan Leitschuh",
    "aliases": [
        {
            "alias": "CVE-2020-27216"
        },
        {
            "alias": "GHSA-g3wg-6mcf-8jj6"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1037904?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.16-0%2Bdeb10u1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.16-0%252Bdeb10u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925883?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.33-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.33-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1049401?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.50-4%2Bdeb11u2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.50-4%252Bdeb11u2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925875?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.50-4%2Bdeb11u2?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.50-4%252Bdeb11u2%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925873?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-1.1~deb12u1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-1.1~deb12u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925877?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.57-1.1~deb13u1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.57-1.1~deb13u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/925876?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.58-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.58-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217591?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.33.v20201020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.33.v20201020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217597?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217600?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217974?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217980?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217983?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217941?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.33.v20201020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.33.v20201020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217947?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217950?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217919?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.33.v20201020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.33.v20201020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217925?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217928?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/73271?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.33.v20201020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.33.v20201020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/73273?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/73275?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.beta3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.beta3"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1036988?format=api",
            "purl": "pkg:deb/debian/jetty9@9.2.21-1~bpo8%2B1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.2.21-1~bpo8%252B1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1036989?format=api",
            "purl": "pkg:deb/debian/jetty9@9.2.21-1%2Bdeb9u1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.2.21-1%252Bdeb9u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1037903?format=api",
            "purl": "pkg:deb/debian/jetty9@9.2.23-1~bpo8%2B1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.2.23-1~bpo8%252B1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1037904?format=api",
            "purl": "pkg:deb/debian/jetty9@9.4.16-0%2Bdeb10u1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-1ejr-3tea-kydr"
                },
                {
                    "vulnerability": "VCID-3f6t-fkt7-wub9"
                },
                {
                    "vulnerability": "VCID-5781-s1ny-q7ey"
                },
                {
                    "vulnerability": "VCID-5qhm-ase5-5qhy"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dvyn-8phs-a3a6"
                },
                {
                    "vulnerability": "VCID-g3ff-brt6-vkeh"
                },
                {
                    "vulnerability": "VCID-gdcf-9axf-1yaq"
                },
                {
                    "vulnerability": "VCID-gq93-ctd4-aqbp"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-memq-11qz-9qem"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-p7cu-h519-83hx"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-ypc7-f1nd-t7gn"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.16-0%252Bdeb10u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569196?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173822?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173823?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173824?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173825?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173826?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173827?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173828?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173829?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173830?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173831?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173832?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173833?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.RC6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173834?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.v20091005",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.0.v20091005"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173835?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.1.v20091125",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.1.v20091125"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173836?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.2.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.2.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173837?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.0.2.v20100331",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.0.2.v20100331"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173838?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173839?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173840?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.0.v20100505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.0.v20100505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173841?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.1.v20100517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.1.v20100517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173842?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.2.v20100523",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.2.v20100523"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173843?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.3.v20100526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.3.v20100526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173844?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.4.v20100610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.4.v20100610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173845?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.5.v20100705",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.5.v20100705"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173846?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.1.6.v20100715",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.1.6.v20100715"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173847?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173848?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.2.0.v20101020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.2.0.v20101020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173849?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.2.1.v20101111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.2.1.v20101111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173850?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.2.2.v20101205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.2.2.v20101205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173851?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.3.0.v20110203",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.3.0.v20110203"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173852?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.3.1.v20110307",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.3.1.v20110307"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173853?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173854?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.0.v20110414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.0.v20110414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173855?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.1.v20110513",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.1.v20110513"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173856?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.2.v20110526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.2.v20110526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173857?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.3.v20110701",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.3.v20110701"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173858?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.4.v20110707",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.4.v20110707"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173859?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.4.5.v20110725",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.4.5.v20110725"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173860?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173861?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173862?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173863?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173864?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173865?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173866?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173867?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.5.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.5.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173868?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173869?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173870?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173871?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173872?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173873?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173874?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173875?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173876?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173877?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173878?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173879?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173880?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173881?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173882?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173883?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173884?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173885?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173886?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173887?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173888?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173889?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173890?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173891?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173892?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173893?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173894?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173895?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.6.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.6.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173896?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173897?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173898?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173899?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173900?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173901?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173902?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173903?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173904?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173905?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.0.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.0.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173906?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173907?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173908?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173909?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173910?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173911?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173912?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173913?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173914?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173915?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173916?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173917?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173918?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173919?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173920?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173921?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173922?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173923?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173924?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173925?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173926?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173927?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173928?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173929?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173930?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173931?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173932?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173933?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.1.22.v20160922",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.1.22.v20160922"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173934?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@8.2.0.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@8.2.0.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173935?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173936?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173937?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173938?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173939?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173940?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.M5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173941?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173942?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173943?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173944?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.v20130308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.0.v20130308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173945?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.1.v20130408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.1.v20130408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173946?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.2.v20130417",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.2.v20130417"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173947?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.3.v20130506",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.3.v20130506"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173948?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.4.v20130625",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.4.v20130625"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173949?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.5.v20130815",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.5.v20130815"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173950?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.6.v20130930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.6.v20130930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173951?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.0.7.v20131107",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.0.7.v20131107"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173952?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173953?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173954?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173955?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173956?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.v20131115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.0.v20131115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173957?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.1.v20140108",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.1.v20140108"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173958?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.2.v20140210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.2.v20140210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173959?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.3.v20140225",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.3.v20140225"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173960?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.4.v20140401",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.4.v20140401"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173961?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.5.v20140505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.5.v20140505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173962?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.1.6.v20160112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.1.6.v20160112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173963?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173964?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173965?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173966?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.v20140526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.0.v20140526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173967?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.1.v20140609",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.1.v20140609"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173968?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.2.v20140723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.2.v20140723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173969?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.3.v20140905",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.3.v20140905"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173970?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.4.v20141103",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.4.v20141103"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173971?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.5.v20141112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.5.v20141112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173972?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.6.v20141205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.6.v20141205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173973?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.7.v20150116",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.7.v20150116"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173974?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.8.v20150217",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.8.v20150217"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173975?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.9.v20150224",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.9.v20150224"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173976?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.10.v20150310",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.10.v20150310"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173977?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173978?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.11.v20150529",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.11.v20150529"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173979?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.12.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.12.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173980?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.12.v20150709",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.12.v20150709"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173981?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.13.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.13.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173982?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.14.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.14.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173983?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.15.v20160210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.15.v20160210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173984?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.16.v20160414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.16.v20160414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173985?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.17.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.17.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173986?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.18.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.18.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173987?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.19.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.19.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173988?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.20.v20161216",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.20.v20161216"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173989?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.21.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.21.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173990?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.22.v20170606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.22.v20170606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173991?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.23.v20171218",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.23.v20171218"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173992?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.24.v20180105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.24.v20180105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173993?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.25.v20180606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.25.v20180606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29185?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.26.v20180806",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.26.v20180806"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217546?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.27.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.27.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217547?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.28.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.28.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217548?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.29.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.29.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217549?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.2.30.v20200428",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.2.30.v20200428"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217550?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217551?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217552?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217553?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217554?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173994?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.v20150612",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.0.v20150612"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173995?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.1.v20150714",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.1.v20150714"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173996?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.2.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.2.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173997?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.3.v20150827",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.3.v20150827"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173998?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.4.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.4.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173999?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.4.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.4.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174000?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.4.v20151007",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.4.v20151007"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174001?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.5.v20151012",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.5.v20151012"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174002?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.6.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.6.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174003?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174004?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.7.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.7.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174005?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.7.v20160115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.7.v20160115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174006?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.8.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.8.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174007?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.8.v20160314",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.8.v20160314"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174008?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.9.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.9.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174009?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.9.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.9.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174010?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.9.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.9.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174011?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.10.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.10.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174012?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.10.v20160621",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.10.v20160621"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174013?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174014?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.11.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.11.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174015?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.12.v20160915",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.12.v20160915"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174016?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.13.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.13.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174017?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.13.v20161014",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.13.v20161014"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174018?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.14.v20161028",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.14.v20161028"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174019?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.15.v20161220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.15.v20161220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174020?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.16.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.16.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174021?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.17.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.17.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174022?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.17.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.17.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174023?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.18.v20170406",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.18.v20170406"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174024?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.19.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.19.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174025?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.20.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.20.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174026?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.21.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.21.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174027?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.21.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.21.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174028?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.21.v20170918",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.21.v20170918"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174029?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.22.v20171030",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.22.v20171030"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174030?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.23.v20180228",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.23.v20180228"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29186?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.24.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.24.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217555?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.25.v20180904",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.25.v20180904"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217556?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.26.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.26.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217557?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.27.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.27.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217558?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.28.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.28.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217559?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.29.v20201019",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.29.v20201019"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217560?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.3.30.v20211001",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.3.30.v20211001"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217561?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217562?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217563?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217564?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217565?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217566?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174031?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.v20161208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.v20161208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174032?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.0.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174033?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.1.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.1.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174034?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.1.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.1.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174035?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.2.v20170220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.2.v20170220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174036?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.2.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.2.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174037?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.3.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.3.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174038?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.3.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.3.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174039?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.4.v20170414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.4.v20170414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174040?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.4.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.4.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174041?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.5.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.5.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174042?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.5.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.5.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174043?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174044?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174045?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174046?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.7.v20170914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.7.v20170914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174047?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.7.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.7.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174048?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.8.v20171121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.8.v20171121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174049?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.8.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.8.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174050?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.9.v20180320",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.9.v20180320"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174051?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.10.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.10.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174052?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.10.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.10.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/174053?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.10.v20180503",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.10.v20180503"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29187?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.11.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.11.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217567?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217568?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217569?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217570?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.v20180830",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.12.v20180830"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217571?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.13.v20181111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.13.v20181111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217572?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.14.v20181114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.14.v20181114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217573?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.15.v20190215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.15.v20190215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217574?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.16.v20190411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.16.v20190411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217575?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.17.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.17.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217576?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.18.v20190429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.18.v20190429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217577?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.19.v20190610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.19.v20190610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217578?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.20.v20190813",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.20.v20190813"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217579?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.21.v20190926",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.21.v20190926"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217580?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.22.v20191022",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.22.v20191022"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217581?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.23.v20191118",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.23.v20191118"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217582?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.24.v20191120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.24.v20191120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217583?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.25.v20191220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.25.v20191220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217584?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.26.v20200117",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.26.v20200117"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217585?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.27.v20200227",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.27.v20200227"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217586?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.28.v20200408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.28.v20200408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217587?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.29.v20200521",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.29.v20200521"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217588?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.30.v20200611",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.30.v20200611"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217589?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.31.v20200723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.31.v20200723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217590?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.32.v20200930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.32.v20200930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217592?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217593?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.alpha2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.alpha2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217594?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217595?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217596?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569197?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217598?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217599?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@11.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569204?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217951?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217952?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217953?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217954?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217955?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217956?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217957?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217958?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217959?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217960?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217961?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217962?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.RC6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185520?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.0.v20091005"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185521?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.1.v20091125"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185522?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185523?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.0.2.v20100331"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185524?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185525?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185526?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.0.v20100505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185527?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.1.v20100517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185528?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.2.v20100523"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185529?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.3.v20100526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185530?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.4.v20100610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185531?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.5.v20100705"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185532?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.1.6.v20100715"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185533?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185534?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.0.v20101020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185535?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.1.v20101111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185536?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185537?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185538?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185539?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185540?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185541?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185542?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185543?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185544?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185545?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185546?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185547?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185548?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185549?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185550?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185551?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185552?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185553?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185554?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185555?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185556?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185557?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185558?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185559?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185560?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185561?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185562?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185563?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185564?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185565?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185566?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185567?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185568?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185569?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185570?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185571?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185572?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185573?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185574?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185575?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185576?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185577?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185578?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185579?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185580?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185581?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185582?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185583?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185584?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185585?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185586?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185587?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185588?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185589?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185590?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185591?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185592?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185593?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185594?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185595?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185596?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185597?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185598?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185599?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185600?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185601?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185602?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185603?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185604?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185605?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185606?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185607?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185608?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185609?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185610?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185611?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185612?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185613?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185614?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185615?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185616?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185617?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185618?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185619?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185620?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185621?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185622?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185623?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185624?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185625?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185626?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185627?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185628?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185629?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185630?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185631?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185632?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185633?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185634?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185635?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185636?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185637?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185638?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185639?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185640?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185641?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185642?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185643?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185644?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185645?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185646?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185647?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185648?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36182?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185392?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185393?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185394?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185395?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185396?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/23204?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/156916?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/156917?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/156918?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/156919?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/23205?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/23208?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185397?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185398?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185399?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185400?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185401?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185402?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185403?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185404?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185405?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185406?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185407?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185408?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185409?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185410?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185411?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185412?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185413?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185414?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36183?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36187?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-6uhn-tn81-cyac"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36194?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185649?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185650?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/23206?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/23207?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/156920?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185415?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185416?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185417?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185418?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185419?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185420?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185421?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185422?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185423?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185424?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185425?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185426?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185427?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185428?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185429?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185430?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185431?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185432?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185433?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185434?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185435?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185436?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185437?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185438?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185439?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185440?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185441?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185442?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185443?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185444?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185445?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185446?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185447?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185448?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185449?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185450?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185451?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185452?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185453?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185454?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36184?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36188?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-6uhn-tn81-cyac"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36195?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185651?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185652?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185653?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36185?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185455?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185456?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185457?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185458?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185459?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185460?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185461?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185462?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185463?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185464?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185465?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185466?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185467?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185468?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185469?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185470?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185471?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185472?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185473?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185474?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185475?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185476?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185477?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185478?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185479?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185480?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185481?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185482?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185483?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185484?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185485?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185486?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185487?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185488?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185489?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36186?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36189?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-6uhn-tn81-cyac"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36199?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217963?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217964?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217965?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/197474?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/197475?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/197476?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/197477?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217966?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217967?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217968?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217969?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217970?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217971?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217972?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217973?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-e1r9-bbdh-qqf6"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-tqm9-4ch7-s7b3"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217975?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217976?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.alpha2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217977?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217978?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217979?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569205?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217981?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217982?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-2k3p-x56s-ffgr"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569202?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36191?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173494?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173495?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173496?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173497?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173498?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173499?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173500?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173501?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173502?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173503?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173504?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.RC6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173505?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.v20091005",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.0.v20091005"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173506?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.1.v20091125",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.1.v20091125"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173507?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.2.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.2.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173508?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.0.2.v20100331",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.0.2.v20100331"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173509?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173510?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173511?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.0.v20100505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.0.v20100505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173512?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.1.v20100517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.1.v20100517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173513?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.2.v20100523",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.2.v20100523"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173514?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.3.v20100526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.3.v20100526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173515?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.4.v20100610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.4.v20100610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173516?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.5.v20100705",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.5.v20100705"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173517?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.1.6.v20100715",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.1.6.v20100715"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173518?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173519?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.2.0.v20101020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.2.0.v20101020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173520?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.2.1.v20101111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.2.1.v20101111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173521?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.2.2.v20101205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.2.2.v20101205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173522?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.3.0.v20110203",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.3.0.v20110203"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173523?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.3.1.v20110307",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.3.1.v20110307"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173524?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173525?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.0.v20110414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.0.v20110414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173526?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.1.v20110513",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.1.v20110513"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173527?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.2.v20110526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.2.v20110526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173528?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.3.v20110701",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.3.v20110701"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173529?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.4.v20110707",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.4.v20110707"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173530?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.4.5.v20110725",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.4.5.v20110725"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173531?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173532?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173533?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173534?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173535?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173536?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173537?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173538?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.5.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.5.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173539?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173540?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173541?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173542?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173543?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173544?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173545?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173546?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173547?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173548?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173549?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173550?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173551?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173552?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173553?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173554?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173555?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173556?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173557?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173558?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173559?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173560?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173561?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173562?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173563?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173564?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173565?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173566?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.6.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.6.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173567?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173568?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173569?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173570?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173571?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173572?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173573?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173574?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173575?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173576?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.0.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.0.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173577?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173578?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/54661?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-ku7c-kpgx-2fg5"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/54662?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173579?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173580?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173581?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173582?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173583?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173584?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173585?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173586?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173587?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173588?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173589?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173590?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173591?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173592?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173593?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173594?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173595?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173596?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173597?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173598?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173599?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173600?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173601?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173602?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.22.v20160922",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.1.22.v20160922"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173603?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.2.0.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@8.2.0.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173604?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173605?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173606?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173607?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173608?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173609?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.M5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173610?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173611?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173612?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173613?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.v20130308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.0.v20130308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173614?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.1.v20130408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.1.v20130408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173615?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.2.v20130417",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.2.v20130417"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173616?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.3.v20130506",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.3.v20130506"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173617?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.4.v20130625",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.4.v20130625"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173618?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.5.v20130815",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.5.v20130815"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173619?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.6.v20130930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.6.v20130930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173620?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.0.7.v20131107",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.0.7.v20131107"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173621?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173622?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173623?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173624?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173625?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.v20131115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.0.v20131115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173626?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.1.v20140108",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.1.v20140108"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173627?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.2.v20140210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.2.v20140210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173628?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.3.v20140225",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.3.v20140225"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173629?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.4.v20140401",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.4.v20140401"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173630?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.5.v20140505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.5.v20140505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173631?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.1.6.v20160112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.1.6.v20160112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173632?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173633?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173634?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173635?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.v20140526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.0.v20140526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173636?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.1.v20140609",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.1.v20140609"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173637?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.2.v20140723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.2.v20140723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173638?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.3.v20140905",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.3.v20140905"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173639?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.4.v20141103",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.4.v20141103"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173640?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.5.v20141112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.5.v20141112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173641?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.6.v20141205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.6.v20141205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173642?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.7.v20150116",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.7.v20150116"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/33210?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.8.v20150217",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9x6q-13wc-3bdu"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.8.v20150217"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/33212?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.9.v20150224",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.9.v20150224"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173643?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.10.v20150310",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.10.v20150310"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173644?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173645?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.11.v20150529",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.11.v20150529"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173646?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.12.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.12.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173647?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.12.v20150709",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.12.v20150709"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173648?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.13.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.13.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173649?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.14.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.14.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173650?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.15.v20160210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.15.v20160210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173651?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.16.v20160414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.16.v20160414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173652?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.17.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.17.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173653?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.18.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.18.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173654?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.19.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.19.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173655?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.20.v20161216",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.20.v20161216"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/142048?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.21.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.21.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/32550?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.22.v20170606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.22.v20170606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173656?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.23.v20171218",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.23.v20171218"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173657?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.24.v20180105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.24.v20180105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/32613?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.25.v20180606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.25.v20180606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29146?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.26.v20180806",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.26.v20180806"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29189?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.27.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-6uhn-tn81-cyac"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.27.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36179?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.28.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.28.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217929?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.29.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.29.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217930?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.30.v20200428",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.2.30.v20200428"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36192?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185504?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185505?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185506?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185507?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173658?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.v20150612",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.0.v20150612"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173659?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.1.v20150714",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.1.v20150714"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173660?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.2.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.2.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173661?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.3.v20150827",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.3.v20150827"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173662?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.4.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.4.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173663?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.4.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.4.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173664?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.4.v20151007",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.4.v20151007"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173665?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.5.v20151012",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.5.v20151012"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173666?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.6.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.6.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173667?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173668?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.7.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.7.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173669?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.7.v20160115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.7.v20160115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173670?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.8.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.8.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173671?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.8.v20160314",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.8.v20160314"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173672?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173673?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-r725-4tby-87f2"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173674?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173675?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.10.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.10.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173676?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.10.v20160621",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.10.v20160621"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173677?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173678?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.11.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.11.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173679?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.12.v20160915",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.12.v20160915"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173680?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.13.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.13.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173681?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.13.v20161014",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.13.v20161014"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173682?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.14.v20161028",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.14.v20161028"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173683?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.15.v20161220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.15.v20161220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173684?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.16.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.16.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173685?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.17.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.17.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173686?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.17.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.17.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173687?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.18.v20170406",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.18.v20170406"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/142050?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.19.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.19.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/77938?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.20.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.20.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173688?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.21.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.21.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173689?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.21.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.21.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173690?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.21.v20170918",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.21.v20170918"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173691?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.22.v20171030",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.22.v20171030"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/32612?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.23.v20180228",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-12gq-ezut-ckhz"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.23.v20180228"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29147?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.24.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kh4j-dvmk-akaz"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.24.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/35714?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.25.v20180904",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.25.v20180904"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36206?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.26.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-6uhn-tn81-cyac"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.26.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36180?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.27.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.27.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217931?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.28.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.28.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217932?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.29.v20201019",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.29.v20201019"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217933?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.30.v20211001",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.3.30.v20211001"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36193?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185508?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185509?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185510?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185511?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185512?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173368?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.v20161208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.v20161208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173369?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.0.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173370?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.1.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.1.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173371?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.1.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.1.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173372?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.2.v20170220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.2.v20170220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173373?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.2.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.2.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173374?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.3.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.3.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173375?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.3.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.3.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173376?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.4.v20170414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.4.v20170414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173377?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.4.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.4.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/142049?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.5.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.5.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173378?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.5.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.5.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/32549?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.6.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.6.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173379?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.6.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.6.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173380?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173381?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.7.v20170914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.7.v20170914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173382?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.7.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.7.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29128?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.8.v20171121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.8.v20171121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29129?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.8.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.8.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173692?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.9.v20180320",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.9.v20180320"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173693?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.10.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.10.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/173694?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.10.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.10.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/142009?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.10.v20180503",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kvqz-fppe-d7fe"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-q54z-9km5-7bf3"
                },
                {
                    "vulnerability": "VCID-u2b5-uyd6-fbh9"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-znv6-77jf-v3gu"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.10.v20180503"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/29148?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.11.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.11.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185513?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185514?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/142105?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kh4j-dvmk-akaz"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/35713?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.v20180830",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.12.v20180830"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185515?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.13.v20181111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.13.v20181111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/185516?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.14.v20181114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.14.v20181114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/142110?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.15.v20190215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-ahev-zdjd-gqg1"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.15.v20190215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36207?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.16.v20190411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-6uhn-tn81-cyac"
                },
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-czhb-gqt2-17av"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.16.v20190411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/36181?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.17.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.17.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217934?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.18.v20190429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.18.v20190429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217935?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.19.v20190610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.19.v20190610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217936?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.20.v20190813",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.20.v20190813"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/78878?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.21.v20190926",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.21.v20190926"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/78880?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.22.v20191022",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.22.v20191022"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/78881?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.23.v20191118",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                },
                {
                    "vulnerability": "VCID-zdt8-jrn2-m3ff"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.23.v20191118"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/78879?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.24.v20191120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.24.v20191120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217937?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.25.v20191220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.25.v20191220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217938?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.26.v20200117",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.26.v20200117"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/212093?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.27.v20200227",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.27.v20200227"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/212094?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.28.v20200408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.28.v20200408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/212095?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.29.v20200521",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-sw3q-jzqx-dkbn"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.29.v20200521"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/73162?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.30.v20200611",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.30.v20200611"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217939?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.31.v20200723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.31.v20200723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217940?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.32.v20200930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kx4x-gnk4-yugu"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-q35p-8qhp-aqec"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                },
                {
                    "vulnerability": "VCID-y3mv-vmwd-tydt"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.32.v20200930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217942?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217943?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.alpha2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.alpha2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217944?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217945?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217946?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569203?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217948?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217949?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569200?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162409?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162410?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162411?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162412?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162413?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162414?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162415?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162416?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162417?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162418?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162419?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162420?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.RC6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162421?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.v20091005",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.0.v20091005"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162422?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.1.v20091125",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.1.v20091125"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162423?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.2.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.2.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162424?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.0.2.v20100331",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.0.2.v20100331"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162425?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162426?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162427?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.0.v20100505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.0.v20100505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162428?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.1.v20100517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.1.v20100517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162429?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.2.v20100523",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.2.v20100523"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162430?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.3.v20100526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.3.v20100526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162431?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.4.v20100610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.4.v20100610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162432?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.5.v20100705",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.5.v20100705"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162433?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.1.6.v20100715",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.1.6.v20100715"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162434?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162435?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.2.0.v20101020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.2.0.v20101020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162436?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.2.1.v20101111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.2.1.v20101111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162437?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.2.2.v20101205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.2.2.v20101205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162438?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.3.0.v20110203",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.3.0.v20110203"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162439?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.3.1.v20110307",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.3.1.v20110307"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162440?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162441?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.0.v20110414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.0.v20110414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162442?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.1.v20110513",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.1.v20110513"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162443?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.2.v20110526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.2.v20110526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162444?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.3.v20110701",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.3.v20110701"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162445?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.4.v20110707",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.4.v20110707"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162446?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.4.5.v20110725",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.4.5.v20110725"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162447?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162448?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162449?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162450?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162451?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162452?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162453?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162454?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.5.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.5.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162455?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162456?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162457?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162458?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162459?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162460?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162461?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162462?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162463?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162464?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162465?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162466?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162467?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162468?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162469?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162470?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162471?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162472?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162473?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162474?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162475?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162476?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162477?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162478?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162479?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162480?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162481?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162482?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.6.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.6.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162483?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162484?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162485?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162486?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162487?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162488?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162489?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162490?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162491?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162492?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.0.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.0.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162493?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162494?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162495?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162496?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162497?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162498?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162499?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162500?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162501?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162502?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162503?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162504?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162505?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162506?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162507?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162508?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162509?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162510?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162511?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162512?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162513?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162514?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162515?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162516?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162517?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162518?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162519?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162520?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.22.v20160922",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.1.22.v20160922"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162521?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.2.0.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@8.2.0.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162522?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162523?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162524?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162525?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162526?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162527?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.M5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162528?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162529?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162530?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162531?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.v20130308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.0.v20130308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162532?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.1.v20130408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.1.v20130408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162533?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.2.v20130417",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.2.v20130417"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162534?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.3.v20130506",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.3.v20130506"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162535?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.4.v20130625",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.4.v20130625"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162536?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.5.v20130815",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.5.v20130815"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162537?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.6.v20130930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.6.v20130930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162538?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.0.7.v20131107",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.0.7.v20131107"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162539?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162540?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162541?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162542?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162543?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.v20131115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.0.v20131115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162544?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.1.v20140108",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.1.v20140108"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162545?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.2.v20140210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.2.v20140210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162546?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.3.v20140225",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.3.v20140225"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162547?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.4.v20140401",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.4.v20140401"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162548?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.5.v20140505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.5.v20140505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162549?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.1.6.v20160112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.1.6.v20160112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162550?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162551?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162552?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162553?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.v20140526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.0.v20140526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162554?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.1.v20140609",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.1.v20140609"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162555?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.2.v20140723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.2.v20140723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162556?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.3.v20140905",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.3.v20140905"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162557?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.4.v20141103",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.4.v20141103"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162558?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.5.v20141112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.5.v20141112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162559?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.6.v20141205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.6.v20141205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162560?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.7.v20150116",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.7.v20150116"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162561?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.8.v20150217",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.8.v20150217"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162562?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.9.v20150224",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.9.v20150224"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162563?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.10.v20150310",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.10.v20150310"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162564?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162565?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.11.v20150529",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.11.v20150529"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162566?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.12.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.12.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162567?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.12.v20150709",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.12.v20150709"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162568?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.13.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.13.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162569?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.14.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.14.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162570?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.15.v20160210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.15.v20160210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162571?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.16.v20160414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.16.v20160414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162572?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.17.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.17.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162573?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.18.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.18.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162574?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.19.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.19.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162575?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.20.v20161216",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.20.v20161216"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162576?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.21.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.21.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162577?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.22.v20170606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.22.v20170606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162578?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.23.v20171218",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.23.v20171218"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162579?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.24.v20180105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.24.v20180105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162580?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.25.v20180606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.25.v20180606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162581?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.26.v20180806",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.26.v20180806"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162582?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.27.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.27.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162583?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.28.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.28.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162584?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.29.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.29.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162585?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.30.v20200428",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.2.30.v20200428"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162586?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162587?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162588?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162589?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162590?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162591?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.v20150612",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.0.v20150612"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162592?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.1.v20150714",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.1.v20150714"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162593?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.2.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.2.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162594?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.3.v20150827",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.3.v20150827"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162595?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.4.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.4.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162596?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.4.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.4.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162597?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.4.v20151007",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.4.v20151007"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162598?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.5.v20151012",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.5.v20151012"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162599?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.6.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.6.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162600?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162601?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.7.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.7.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162602?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.7.v20160115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.7.v20160115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162603?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.8.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.8.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162604?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.8.v20160314",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.8.v20160314"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162605?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162606?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162607?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162608?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.10.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.10.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162609?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.10.v20160621",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.10.v20160621"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162610?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162611?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.11.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.11.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162612?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.12.v20160915",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.12.v20160915"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162613?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.13.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.13.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162614?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.13.v20161014",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.13.v20161014"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162615?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.14.v20161028",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.14.v20161028"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162616?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.15.v20161220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.15.v20161220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162617?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.16.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.16.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162618?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.17.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.17.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162619?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.17.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.17.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162620?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.18.v20170406",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.18.v20170406"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162621?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.19.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.19.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162622?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.20.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.20.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162623?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.21.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.21.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162624?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.21.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.21.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162625?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.21.v20170918",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.21.v20170918"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162626?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.22.v20171030",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.22.v20171030"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162627?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.23.v20180228",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.23.v20180228"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162628?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.24.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.24.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162629?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.25.v20180904",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.25.v20180904"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162630?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.26.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.26.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162631?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.27.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.27.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162632?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.28.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.28.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162633?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.29.v20201019",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.29.v20201019"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162634?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.30.v20211001",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.3.30.v20211001"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162635?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162636?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162637?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162638?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162639?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162640?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162641?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.v20161208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.v20161208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162642?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.0.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162643?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.1.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.1.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162644?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.1.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.1.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162645?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20170220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20170220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162646?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162647?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.3.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.3.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162648?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.3.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.3.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162649?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.4.v20170414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.4.v20170414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162650?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.4.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.4.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162651?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162652?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-dznb-x27e-kqan"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24295?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217884?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217885?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217886?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.7.v20170914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.7.v20170914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217887?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.7.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.7.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217888?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.8.v20171121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.8.v20171121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217889?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.8.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.8.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217890?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.9.v20180320",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.9.v20180320"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217891?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.10.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.10.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217892?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.10.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.10.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217893?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.10.v20180503",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.10.v20180503"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217894?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.11.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.11.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217895?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217896?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217897?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217898?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.v20180830",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.12.v20180830"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217899?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.13.v20181111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.13.v20181111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217900?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.14.v20181114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.14.v20181114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217901?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.15.v20190215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.15.v20190215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217902?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.16.v20190411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.16.v20190411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217903?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.17.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.17.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217904?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.18.v20190429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.18.v20190429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217905?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.19.v20190610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.19.v20190610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217906?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.20.v20190813",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.20.v20190813"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217907?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.21.v20190926",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.21.v20190926"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217908?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.22.v20191022",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.22.v20191022"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217909?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.23.v20191118",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.23.v20191118"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217910?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.24.v20191120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.24.v20191120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217911?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.25.v20191220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.25.v20191220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217912?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.26.v20200117",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.26.v20200117"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217913?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.27.v20200227",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.27.v20200227"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217914?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.28.v20200408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.28.v20200408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217915?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.29.v20200521",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.29.v20200521"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217916?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.30.v20200611",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.30.v20200611"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217917?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.31.v20200723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.31.v20200723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217918?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.32.v20200930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-prd3-mmuv-n3dc"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.32.v20200930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217920?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217921?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.alpha2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.alpha2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217922?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217923?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217924?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569201?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217926?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217927?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@11.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569198?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217601?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217602?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217603?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217604?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217605?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217606?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217607?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217608?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217609?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217610?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217611?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217612?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.RC6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217613?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.v20091005",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.0.v20091005"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217614?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.1.v20091125",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.1.v20091125"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217615?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.2.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.2.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217616?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.2.v20100331",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.0.2.v20100331"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217617?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217618?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217619?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.0.v20100505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.0.v20100505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217620?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.1.v20100517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.1.v20100517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217621?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.2.v20100523",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.2.v20100523"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217622?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.3.v20100526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.3.v20100526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217623?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.4.v20100610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.4.v20100610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217624?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.5.v20100705",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.5.v20100705"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217625?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.6.v20100715",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.1.6.v20100715"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217626?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217627?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.0.v20101020",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.0.v20101020"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217628?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.1.v20101111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.1.v20101111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217629?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.2.v20101205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.2.2.v20101205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217630?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.3.0.v20110203",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.3.0.v20110203"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217631?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.3.1.v20110307",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.3.1.v20110307"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217632?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217633?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.0.v20110414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.0.v20110414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217634?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.1.v20110513",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.1.v20110513"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217635?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.2.v20110526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.2.v20110526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217636?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.3.v20110701",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.3.v20110701"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217637?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.4.v20110707",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.4.v20110707"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217638?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.5.v20110725",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.4.5.v20110725"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217639?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217640?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217641?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217642?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217643?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217644?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217645?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217646?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.5.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217647?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217648?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217649?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217650?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217651?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217652?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217653?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217654?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217655?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217656?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217657?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217658?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217659?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217660?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217661?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217662?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217663?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217664?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217665?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217666?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217667?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217668?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217669?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217670?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217671?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217672?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217673?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217674?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@7.6.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217675?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217676?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217677?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217678?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217679?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217680?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.v20110901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.0.v20110901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217681?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.1.v20110908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.1.v20110908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217682?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.2.v20111006",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.2.v20111006"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217683?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.3.v20111011",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.3.v20111011"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217684?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.4.v20111024",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.0.4.v20111024"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217685?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217686?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217687?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217688?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217689?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.RC5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217690?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.v20120127",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.0.v20120127"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217691?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.1.v20120215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.1.v20120215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217692?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.2.v20120308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.2.v20120308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217693?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.3.v20120416",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.3.v20120416"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217694?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.4.v20120524",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.4.v20120524"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217695?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.5.v20120716",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.5.v20120716"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217696?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.6.v20120903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.6.v20120903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217697?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.7.v20120910",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.7.v20120910"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217698?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.8.v20121106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.8.v20121106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217699?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.9.v20130131",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.9.v20130131"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217700?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.10.v20130312",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.10.v20130312"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217701?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.11.v20130520",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.11.v20130520"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217702?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.12.v20130726",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.12.v20130726"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217703?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.13.v20130916",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.13.v20130916"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217704?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.14.v20131031",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.14.v20131031"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217705?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.15.v20140411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.15.v20140411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217706?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.16.v20140903",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.16.v20140903"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217707?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.17.v20150415",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.17.v20150415"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217708?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.18.v20150929",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.18.v20150929"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217709?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.19.v20160209",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.19.v20160209"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217710?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.20.v20160902",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.20.v20160902"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217711?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.21.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.21.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217712?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.22.v20160922",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.1.22.v20160922"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217713?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@8.2.0.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@8.2.0.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217714?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217715?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217716?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217717?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217718?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217719?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.M5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217720?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217721?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217722?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217723?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.v20130308",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.0.v20130308"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217724?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.1.v20130408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.1.v20130408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217725?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.2.v20130417",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.2.v20130417"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217726?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.3.v20130506",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.3.v20130506"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217727?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.4.v20130625",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.4.v20130625"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217728?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.5.v20130815",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.5.v20130815"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217729?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.6.v20130930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.6.v20130930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217730?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.7.v20131107",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.0.7.v20131107"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217731?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217732?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217733?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217734?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217735?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.v20131115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.0.v20131115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217736?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.1.v20140108",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.1.v20140108"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217737?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.2.v20140210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.2.v20140210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217738?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.3.v20140225",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.3.v20140225"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217739?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.4.v20140401",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.4.v20140401"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217740?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.5.v20140505",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.5.v20140505"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217741?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.6.v20160112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.1.6.v20160112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217742?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217743?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217744?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217745?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.v20140526",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.0.v20140526"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217746?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.1.v20140609",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.1.v20140609"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217747?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.2.v20140723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.2.v20140723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217748?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.3.v20140905",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.3.v20140905"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217749?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.4.v20141103",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.4.v20141103"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217750?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.5.v20141112",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.5.v20141112"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217751?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.6.v20141205",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.6.v20141205"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217752?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.7.v20150116",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.7.v20150116"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217753?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.8.v20150217",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.8.v20150217"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217754?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.9.v20150224",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.9.v20150224"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217755?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.10.v20150310",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.10.v20150310"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217756?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217757?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.11.v20150529",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.11.v20150529"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217758?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.12.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.12.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217759?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.12.v20150709",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.12.v20150709"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217760?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.13.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.13.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217761?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.14.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.14.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217762?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.15.v20160210",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.15.v20160210"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217763?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.16.v20160414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.16.v20160414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217764?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.17.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.17.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217765?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.18.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.18.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217766?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.19.v20160908",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.19.v20160908"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217767?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.20.v20161216",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.20.v20161216"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217768?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.21.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.21.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217769?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.22.v20170606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.22.v20170606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217770?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.23.v20171218",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.23.v20171218"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217771?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.24.v20180105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.24.v20180105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217772?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.25.v20180606",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.25.v20180606"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217773?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.26.v20180806",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.26.v20180806"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217774?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.27.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.27.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217775?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.28.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.28.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217776?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.29.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.29.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217777?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.30.v20200428",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.30.v20200428"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217778?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217779?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217780?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.M2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.M2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217781?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217782?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217783?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.v20150612",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.0.v20150612"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217784?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.1.v20150714",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.1.v20150714"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217785?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.2.v20150730",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.2.v20150730"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217786?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.3.v20150827",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.3.v20150827"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217787?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.4.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.4.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217788?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.4.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.4.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217789?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.4.v20151007",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.4.v20151007"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217790?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.5.v20151012",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.5.v20151012"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217791?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.6.v20151106",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.6.v20151106"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217792?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217793?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.7.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.7.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217794?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.7.v20160115",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.7.v20160115"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217795?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.8.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.8.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217796?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.8.v20160314",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.8.v20160314"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217797?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.9.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.9.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217798?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.9.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.9.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217799?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.9.v20160517",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.9.v20160517"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217800?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.10.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.10.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217801?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.10.v20160621",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.10.v20160621"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217802?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.11.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.11.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217803?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.11.v20160721",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.11.v20160721"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217804?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.12.v20160915",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.12.v20160915"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217805?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.13.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.13.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217806?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.13.v20161014",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.13.v20161014"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217807?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.14.v20161028",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.14.v20161028"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217808?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.15.v20161220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.15.v20161220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217809?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.16.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.16.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217810?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.17.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.17.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217811?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.17.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.17.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217812?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.18.v20170406",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.18.v20170406"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217813?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.19.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.19.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217814?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.20.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.20.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217815?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.21.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.21.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217816?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.21.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.21.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217817?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.21.v20170918",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.21.v20170918"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217818?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.22.v20171030",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.22.v20171030"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217819?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.23.v20180228",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.23.v20180228"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217820?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.24.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.24.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217821?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.25.v20180904",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.25.v20180904"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217822?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.26.v20190403",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.26.v20190403"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217823?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.27.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.27.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217824?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.28.v20191105",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.28.v20191105"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217825?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.29.v20201019",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.29.v20201019"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217826?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.30.v20211001",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.3.30.v20211001"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217827?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.M0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.M0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217828?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.M1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.M1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217829?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217830?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217831?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217832?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.RC3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217833?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.v20161208",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.v20161208"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217834?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.0.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217835?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.1.v20170120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.1.v20170120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217836?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.1.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.1.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217837?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.2.v20170220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.2.v20170220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217838?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.2.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.2.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217839?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.3.v20170317",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.3.v20170317"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217840?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.3.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.3.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217841?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.4.v20170414",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.4.v20170414"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217842?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.4.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.4.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217843?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.5.v20170502",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.5.v20170502"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217844?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.5.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.5.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217845?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.6.v20170531",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.6.v20170531"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217846?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.6.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.6.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217847?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.7.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.7.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217848?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.7.v20170914",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.7.v20170914"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217849?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.7.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.7.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217850?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.8.v20171121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.8.v20171121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217851?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.8.v20180619",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.8.v20180619"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217852?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.9.v20180320",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.9.v20180320"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217853?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.10.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.10.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217854?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.10.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.10.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217855?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.10.v20180503",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.10.v20180503"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217856?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.11.v20180605",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.11.v20180605"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217857?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.RC0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.RC0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217858?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.RC1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.RC1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217859?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.RC2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.RC2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217860?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.v20180830",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.12.v20180830"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217861?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.13.v20181111",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.13.v20181111"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217862?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.14.v20181114",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.14.v20181114"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217863?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.15.v20190215",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.15.v20190215"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217864?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.16.v20190411",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.16.v20190411"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217865?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.17.v20190418",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.17.v20190418"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217866?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.18.v20190429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.18.v20190429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217867?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.19.v20190610",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.19.v20190610"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217868?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.20.v20190813",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.20.v20190813"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217869?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.21.v20190926",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.21.v20190926"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217870?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.22.v20191022",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.22.v20191022"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217871?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.23.v20191118",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.23.v20191118"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217872?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.24.v20191120",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.24.v20191120"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217873?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.25.v20191220",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.25.v20191220"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217874?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.26.v20200117",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.26.v20200117"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217875?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.27.v20200227",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.27.v20200227"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217876?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.28.v20200408",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.28.v20200408"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217877?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.29.v20200521",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.29.v20200521"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217878?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.30.v20200611",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.30.v20200611"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217879?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.31.v20200723",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.31.v20200723"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217880?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.32.v20200930",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9xw3-4a4u-hbbb"
                },
                {
                    "vulnerability": "VCID-kxtv-ma18-8fer"
                },
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-q3k2-1x5q-buhy"
                },
                {
                    "vulnerability": "VCID-rpc4-u4aq-4qde"
                },
                {
                    "vulnerability": "VCID-thpu-76e5-j3d3"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.32.v20200930"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217881?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217882?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.alpha2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.alpha2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/217883?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143087?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143088?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@10.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/569199?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.alpha1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.alpha1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143091?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143092?format=api",
            "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-webapp@11.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/219232?format=api",
            "purl": "pkg:maven/org.mortbay.jetty/jetty-webapp@7.0.0.pre4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.mortbay.jetty/jetty-webapp@7.0.0.pre4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/219233?format=api",
            "purl": "pkg:maven/org.mortbay.jetty/jetty-webapp@7.0.0.pre5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.mortbay.jetty/jetty-webapp@7.0.0.pre5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143085?format=api",
            "purl": "pkg:maven/org.mortbay.jetty/jetty-webapp@10.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.mortbay.jetty/jetty-webapp@10.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143086?format=api",
            "purl": "pkg:maven/org.mortbay.jetty/jetty-webapp@10.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.mortbay.jetty/jetty-webapp@10.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143089?format=api",
            "purl": "pkg:maven/org.mortbay.jetty/jetty-webapp@11.0.0.beta1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.mortbay.jetty/jetty-webapp@11.0.0.beta1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/143090?format=api",
            "purl": "pkg:maven/org.mortbay.jetty/jetty-webapp@11.0.0.beta2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.mortbay.jetty/jetty-webapp@11.0.0.beta2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/100892?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.277.3.1623846768-1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.277.3.1623846768-1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/100891?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.277.3.1623853726-1?arch=el8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.277.3.1623853726-1%3Farch=el8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/100890?format=api",
            "purl": "pkg:rpm/redhat/jenkins@2.289.1.1624365627-1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                },
                {
                    "vulnerability": "VCID-nyxu-ekhs-gyb5"
                },
                {
                    "vulnerability": "VCID-uuju-ey95-tyfq"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.289.1.1624365627-1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101538?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse@1:4.17-6?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse@1:4.17-6%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101531?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-ant@1.10.9-1.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-ant@1.10.9-1.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101481?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-antlr32@3.2-28.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-antlr32@3.2-28.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101523?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-apache-sshd@1:2.4.0-5.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-apache-sshd@1:2.4.0-5.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101488?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-apiguardian@1.1.0-6.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-apiguardian@1.1.0-6.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101536?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-args4j@2.33-12.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-args4j@2.33-12.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101506?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-batik@1.13-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-batik@1.13-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101521?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-bouncycastle@1.67-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-bouncycastle@1.67-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101513?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-cbi-plugins@1.1.7-8.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-cbi-plugins@1.1.7-8.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101502?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-decentxml@1.4-24.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-decentxml@1.4-24.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101482?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-ecj@1:4.17-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-ecj@1:4.17-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101509?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse@1:4.17-2.2?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse@1:4.17-2.2%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101510?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-ecf@3.14.17-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-ecf@3.14.17-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101512?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-egit@5.9.0-1.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-egit@5.9.0-1.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101498?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-emf@1:2.23.0-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-emf@1:2.23.0-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101532?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-gef@3.11.0-14.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-gef@3.11.0-14.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101546?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-jgit@5.9.0-1.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-jgit@5.9.0-1.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101484?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-license@2.0.2-2.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-license@2.0.2-2.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101537?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-m2e-core@1.16.2-3.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-m2e-core@1.16.2-3.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101505?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-m2e-workspace@0.4.0-16.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-m2e-workspace@0.4.0-16.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101508?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-mpc@1.8.4-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-mpc@1.8.4-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101527?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-pydev@1:8.0.0-1.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-pydev@1:8.0.0-1.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101503?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-subclipse@4.3.0-8.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-subclipse@4.3.0-8.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101504?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-eclipse-webtools@3.19.0-1.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-eclipse-webtools@3.19.0-1.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101514?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-ed25519-java@0.3.0-8.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-ed25519-java@0.3.0-8.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101524?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-felix-gogo-command@1.0.2-12.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-felix-gogo-command@1.0.2-12.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101515?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-felix-gogo-parent@4-6.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-felix-gogo-parent@4-6.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101494?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-felix-gogo-runtime@1.1.0-8.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-felix-gogo-runtime@1.1.0-8.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101530?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-felix-gogo-shell@1.1.0-6.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-felix-gogo-shell@1.1.0-6.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101539?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-felix-scr@2.1.16-7.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-felix-scr@2.1.16-7.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101483?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-javaewah@1.1.6-10.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-javaewah@1.1.6-10.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101486?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-javaparser@3.14.16-1.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-javaparser@3.14.16-1.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101491?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jchardet@1.1-23.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jchardet@1.1-23.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101542?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jctools@3.1.0-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jctools@3.1.0-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101528?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jetty@9.4.33-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jetty@9.4.33-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101489?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jffi@1.2.23-2.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jffi@1.2.23-2.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101516?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jgit@5.9.0-1.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jgit@5.9.0-1.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101496?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jna@5.4.0-7.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jna@5.4.0-7.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101529?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jnr-constants@0.9.12-7.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jnr-constants@0.9.12-7.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101547?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jnr-ffi@2.1.8-9.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jnr-ffi@2.1.8-9.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101487?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jnr-netdb@1.1.6-11.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jnr-netdb@1.1.6-11.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101526?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jnr-posix@3.0.47-7.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jnr-posix@3.0.47-7.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101540?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jnr-x86asm@1.0.2-22.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jnr-x86asm@1.0.2-22.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101522?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jsch-agent-proxy@0.0.8-14.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jsch-agent-proxy@0.0.8-14.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101541?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-junit5@5.7.0-1.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-junit5@5.7.0-1.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101511?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jython@2.7.1-14.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jython@2.7.1-14.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101500?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-jzlib@1.1.3-15.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jzlib@1.1.3-15.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101485?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-lucene@8.6.3-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-lucene@8.6.3-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101495?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-maven-archetype@3.2.0-1.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-maven-archetype@3.2.0-1.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101543?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-maven-indexer@6.0.0-5.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-maven-indexer@6.0.0-5.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101492?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-netty@4.1.51-1.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-netty@4.1.51-1.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101519?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-objectweb-asm@8.0.1-1.2?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-objectweb-asm@8.0.1-1.2%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101525?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-opentest4j@1.2.0-4.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-opentest4j@1.2.0-4.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101517?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-os-maven-plugin@1.6.2-2.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-os-maven-plugin@1.6.2-2.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101480?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-sac@1.3-34.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-sac@1.3-34.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101497?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-sat4j@2.3.5-20.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-sat4j@2.3.5-20.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101518?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-sequence-library@1.0.3-8.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-sequence-library@1.0.3-8.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101520?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-sqljet@1.1.10-18.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-sqljet@1.1.10-18.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101499?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-stringtemplate@3.2.1-24.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-stringtemplate@3.2.1-24.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101490?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-svnkit@1:1.8.12-9.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-svnkit@1:1.8.12-9.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101493?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-takari-polyglot@0.4.5-2.1?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-takari-polyglot@0.4.5-2.1%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101544?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-trilead-ssh2@217.21-3.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-trilead-ssh2@217.21-3.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101535?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-tycho@1.7.0-2.5?arch=el7_9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-tycho@1.7.0-2.5%3Farch=el7_9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101534?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-univocity-parsers@2.9.0-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-univocity-parsers@2.9.0-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101501?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-ws-commons-util@1.0.2-14.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-ws-commons-util@1.0.2-14.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101533?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-xmlgraphics-commons@2.4-1.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-xmlgraphics-commons@2.4-1.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101507?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-xml-maven-plugin@1.0.2-7.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-xml-maven-plugin@1.0.2-7.1%3Farch=el7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/101545?format=api",
            "purl": "pkg:rpm/redhat/rh-eclipse-xmlrpc@1:3.1.3-27.1?arch=el7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-nubz-xqaw-tkfr"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-xmlrpc@1:3.1.3-27.1%3Farch=el7"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2020-27216.json",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                }
            ],
            "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2020-27216.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2020-27216",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25543",
                    "published_at": "2026-04-18T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25558",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25553",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.2561",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25651",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.2552",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25593",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25639",
                    "published_at": "2026-04-01T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25709",
                    "published_at": "2026-04-02T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.25751",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.0009",
                    "scoring_system": "epss",
                    "scoring_elements": "0.2564",
                    "published_at": "2026-04-09T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2020-27216"
        },
        {
            "reference_url": "https://bugs.eclipse.org/bugs/show_bug.cgi?id=567921",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://bugs.eclipse.org/bugs/show_bug.cgi?id=567921"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10241",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10241"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10247",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10247"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27216",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27216"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27223",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27223"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28165",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28165"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28169",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28169"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34428",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34428"
        },
        {
            "reference_url": "https://cwe.mitre.org/data/definitions/378.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://cwe.mitre.org/data/definitions/378.html"
        },
        {
            "reference_url": "https://cwe.mitre.org/data/definitions/379.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://cwe.mitre.org/data/definitions/379.html"
        },
        {
            "reference_url": "https://github.com/eclipse/jetty.project",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project"
        },
        {
            "reference_url": "https://github.com/eclipse/jetty.project/issues/5451",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project/issues/5451"
        },
        {
            "reference_url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-g3wg-6mcf-8jj6",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-g3wg-6mcf-8jj6"
        },
        {
            "reference_url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-g3wg-6mcf-8jj6#advisory-comment-63053",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-g3wg-6mcf-8jj6#advisory-comment-63053"
        },
        {
            "reference_url": "https://github.com/github/codeql/pull/4473",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/github/codeql/pull/4473"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r0259b14ae69b87821e27fed1f5333ea86018294fd31aab16b1fac84e@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r0259b14ae69b87821e27fed1f5333ea86018294fd31aab16b1fac84e@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r07525dc424ed69b3919618599e762f9ac03791490ca9d724f2241442@%3Cdev.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r07525dc424ed69b3919618599e762f9ac03791490ca9d724f2241442@%3Cdev.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r09b345099b4f88d2bed7f195a96145849243fb4e53661aa3bcf4c176@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r09b345099b4f88d2bed7f195a96145849243fb4e53661aa3bcf4c176@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r0d7ad4f02c44d5d53a9ffcbca7ff4a8138241322da9c5c35b5429630@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r0d7ad4f02c44d5d53a9ffcbca7ff4a8138241322da9c5c35b5429630@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r0d95e01f52667f44835c40f6dea72bb4397f33cd70a564ea74f3836d@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r0d95e01f52667f44835c40f6dea72bb4397f33cd70a564ea74f3836d@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r0df8fe10fc36028cf6d0381ab66510917d0d68bc5ef7042001d03830@%3Cdev.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r0df8fe10fc36028cf6d0381ab66510917d0d68bc5ef7042001d03830@%3Cdev.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r0e9efe032cc65433251ee6470c66c334d4e7db9101e24cf91a3961f2@%3Ccommits.directory.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r0e9efe032cc65433251ee6470c66c334d4e7db9101e24cf91a3961f2@%3Ccommits.directory.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r0f5e9b93133ef3aaf31484bc3e15cc4b85f8af0fe4de2dacd9379d72@%3Cdev.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r0f5e9b93133ef3aaf31484bc3e15cc4b85f8af0fe4de2dacd9379d72@%3Cdev.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r100c5c7586a23a19fdb54d8a32e17cd0944bdaa46277b35c397056f6@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r100c5c7586a23a19fdb54d8a32e17cd0944bdaa46277b35c397056f6@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r171846414347ec5fed38241a9f8a009bd2c89d902154c6102b1fb39a@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r171846414347ec5fed38241a9f8a009bd2c89d902154c6102b1fb39a@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r185d10aae8161c08726f3ba9a1f1c47dfb97624ea6212fa217173204@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r185d10aae8161c08726f3ba9a1f1c47dfb97624ea6212fa217173204@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r18b6f10d9939419bae9c225d5058c97533cb376c9d6d0a0733ddd48d@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r18b6f10d9939419bae9c225d5058c97533cb376c9d6d0a0733ddd48d@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r19e8b338af511641d211ff45c43646fe1ae19dc9897d69939c09cabe@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r19e8b338af511641d211ff45c43646fe1ae19dc9897d69939c09cabe@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r1d40368a309f9d835dcdd900249966e4fcbdf98c1cc4c84db2cd9964@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r1d40368a309f9d835dcdd900249966e4fcbdf98c1cc4c84db2cd9964@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r1d45051310b11c6d6476f20d71b08ea97cb76846cbf61d196bac1c3f@%3Cdev.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r1d45051310b11c6d6476f20d71b08ea97cb76846cbf61d196bac1c3f@%3Cdev.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r1dbb87c9255ecefadd8de514fa1d35c1d493c0527d7672cf40505d04@%3Ccommits.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r1dbb87c9255ecefadd8de514fa1d35c1d493c0527d7672cf40505d04@%3Ccommits.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r1ed79516bd6d248ea9f0e704dbfd7de740d5a75b71c7be8699fec824@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r1ed79516bd6d248ea9f0e704dbfd7de740d5a75b71c7be8699fec824@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r1ef28b89ff0281c87ba3a7659058789bf28a99b8074191f1c3678db8@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r1ef28b89ff0281c87ba3a7659058789bf28a99b8074191f1c3678db8@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r1fe31643fc34b4a33ae3d416d92c271aa97663f1782767d25e1d9ff8@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r1fe31643fc34b4a33ae3d416d92c271aa97663f1782767d25e1d9ff8@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r2122537d3f9beb0ce59f44371a951b226406719919656ed000984bd0@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r2122537d3f9beb0ce59f44371a951b226406719919656ed000984bd0@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r279254a1bd6434c943da52000476f307e62b6910755387aeca1ec9a1@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r279254a1bd6434c943da52000476f307e62b6910755387aeca1ec9a1@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r2aa316d008dab9ae48350b330d15dc1b863ea2a933558fbfc42b91a6@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r2aa316d008dab9ae48350b330d15dc1b863ea2a933558fbfc42b91a6@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r2d17b2a4803096ba427f3575599ea29b55f5cf9dbc1f12ba044cae1a@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r2d17b2a4803096ba427f3575599ea29b55f5cf9dbc1f12ba044cae1a@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r2e02700f7cfecb213de50be83e066086bea90278cd753db7fdc2ccff@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r2e02700f7cfecb213de50be83e066086bea90278cd753db7fdc2ccff@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r2f732ee49d00610683ab5ddb4692ab25136b00bfd132ca3a590218a9@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r2f732ee49d00610683ab5ddb4692ab25136b00bfd132ca3a590218a9@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r3042a9dd2973aa229e52d022df7813e4d74b67df73bfa6d97bb0caf8@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r3042a9dd2973aa229e52d022df7813e4d74b67df73bfa6d97bb0caf8@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r336b1694a01858111e4625fb9ab2b07ad43a64a525cf6402e06aa6bf@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r336b1694a01858111e4625fb9ab2b07ad43a64a525cf6402e06aa6bf@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r351298dd39fc1ab63303be94b0c0d08acd72b17448e0346d7386189b@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r351298dd39fc1ab63303be94b0c0d08acd72b17448e0346d7386189b@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r352e40ca9874d1beb4ad95403792adca7eb295e6bc3bd7b65fabcc21@%3Ccommits.samza.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r352e40ca9874d1beb4ad95403792adca7eb295e6bc3bd7b65fabcc21@%3Ccommits.samza.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r382870d6ccfd60533eb0d980688261723ed8a0704dafa691c4e9aa68@%3Ccommits.iotdb.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r382870d6ccfd60533eb0d980688261723ed8a0704dafa691c4e9aa68@%3Ccommits.iotdb.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r3a763de620be72b6d74f46ec4bf39c9f35f8a0b39993212c0ac778ec@%3Ccommits.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r3a763de620be72b6d74f46ec4bf39c9f35f8a0b39993212c0ac778ec@%3Ccommits.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r3b0ce1549a1ccdd7e51ec66daf8d54d46f1571edbda88ed09c96d7da@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r3b0ce1549a1ccdd7e51ec66daf8d54d46f1571edbda88ed09c96d7da@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r3e05ab0922876e74fea975d70af82b98580f4c14ba643c4f8a9e3a94@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r3e05ab0922876e74fea975d70af82b98580f4c14ba643c4f8a9e3a94@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r3f32cb4965239399c22497a0aabb015b28b2372d4897185a6ef0ccd7@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r3f32cb4965239399c22497a0aabb015b28b2372d4897185a6ef0ccd7@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r407c316f6113dfc76f7bb3cb1693f08274c521064a92e5214197548e@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r407c316f6113dfc76f7bb3cb1693f08274c521064a92e5214197548e@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r4179c71908778cc0598ee8ee1eaed9b88fc5483c65373f45e087f650@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r4179c71908778cc0598ee8ee1eaed9b88fc5483c65373f45e087f650@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r44115ebfbf3b7d294d7a75f2d30bcc822dab186ebbcc2dce11915ca9@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r44115ebfbf3b7d294d7a75f2d30bcc822dab186ebbcc2dce11915ca9@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r4946ffd86ad6eb7cb7863311235c914cb41232380de8d9dcdb3c115c@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r4946ffd86ad6eb7cb7863311235c914cb41232380de8d9dcdb3c115c@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r4f29fb24639ebc5d15fc477656ebc2b3aa00fcfbe197000009c26b40@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r4f29fb24639ebc5d15fc477656ebc2b3aa00fcfbe197000009c26b40@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r503045a75f4419d083cb63ac89e765d6fb8b10c7dacc0c54fce07cff@%3Creviews.iotdb.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r503045a75f4419d083cb63ac89e765d6fb8b10c7dacc0c54fce07cff@%3Creviews.iotdb.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r547bb14c88c5da2588d853ed3030be0109efa537dd797877dff14afd@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r547bb14c88c5da2588d853ed3030be0109efa537dd797877dff14afd@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r5494fdaf4a0a42a15c49841ba7ae577d466d09239ee1050458da0f29@%3Cjira.kafka.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r5494fdaf4a0a42a15c49841ba7ae577d466d09239ee1050458da0f29@%3Cjira.kafka.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r556787f1ab14da034d79dfff0c123c05877bbe89ef163fd359b4564c@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r556787f1ab14da034d79dfff0c123c05877bbe89ef163fd359b4564c@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r568d354961fa88f206dc345411fb11d245c6dc1a8da3e80187fc6706@%3Cdev.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r568d354961fa88f206dc345411fb11d245c6dc1a8da3e80187fc6706@%3Cdev.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r58f5b14dc5ae43583db3a7e872419aca97ebe47bcd7f7334f4128016@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r58f5b14dc5ae43583db3a7e872419aca97ebe47bcd7f7334f4128016@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r59e0878013d329dcc481eeafebdb0ee445b1e2852d0c4827b1ddaff2@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r59e0878013d329dcc481eeafebdb0ee445b1e2852d0c4827b1ddaff2@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r5a07f274f355c914054c7357ad6d3456ffaca064f26cd780acb90a9a@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r5a07f274f355c914054c7357ad6d3456ffaca064f26cd780acb90a9a@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r5a9462096c71593e771602beb0e69357adb5175d9a5c18d5181e0ab4@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r5a9462096c71593e771602beb0e69357adb5175d9a5c18d5181e0ab4@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r6236ae4adc401e3b2f2575c22865f2f6c6ea9ff1d7b264b40d9602af@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r6236ae4adc401e3b2f2575c22865f2f6c6ea9ff1d7b264b40d9602af@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r66e99d973fd79ddbcb3fbdb24f4767fe9b911f5b0abb05d7b6f65801@%3Ccommits.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r66e99d973fd79ddbcb3fbdb24f4767fe9b911f5b0abb05d7b6f65801@%3Ccommits.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r6b83ca85c8f9a6794b1f85bc70d1385ed7bc1ad07750d0977537154a@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r6b83ca85c8f9a6794b1f85bc70d1385ed7bc1ad07750d0977537154a@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r6dfa64ecc3d67c1a71c08bfa04064549179d499f8e20a8285c57bd51@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r6dfa64ecc3d67c1a71c08bfa04064549179d499f8e20a8285c57bd51@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r6f51a654ac2e67e3d1c65a8957cbbb127c3f15b64b4fcd626df03633@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r6f51a654ac2e67e3d1c65a8957cbbb127c3f15b64b4fcd626df03633@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r70f8bcccd304bd66c1aca657dbfc2bf11f73add9032571b01f1f733d@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r70f8bcccd304bd66c1aca657dbfc2bf11f73add9032571b01f1f733d@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r71da5f51ef04cb95abae560425dce9667740cbd567920f516f76efb7@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r71da5f51ef04cb95abae560425dce9667740cbd567920f516f76efb7@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r73b5a9b677b707bbb7c1469ea746312c47838b312603bada9e382bba@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r73b5a9b677b707bbb7c1469ea746312c47838b312603bada9e382bba@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r761a52f1e214efec286ee80045d0012e955eebaa72395ad62cccbcfc@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r761a52f1e214efec286ee80045d0012e955eebaa72395ad62cccbcfc@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r769411eb43dd9ef77665700deb7fc491fc3ceb532914260c90b56f2f@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r769411eb43dd9ef77665700deb7fc491fc3ceb532914260c90b56f2f@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r77dd041d8025a869156481d2268c67ad17121f64e31f9b4a1a220145@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r77dd041d8025a869156481d2268c67ad17121f64e31f9b4a1a220145@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r7bdc83513c12db1827b79b8d57a7a0975a25d28bc6c5efe590ec1e02@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r7bdc83513c12db1827b79b8d57a7a0975a25d28bc6c5efe590ec1e02@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r7da5ae60d7973e8894cfe92f49ecb5b47417eefab4c77cc87514d3cf@%3Cdev.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r7da5ae60d7973e8894cfe92f49ecb5b47417eefab4c77cc87514d3cf@%3Cdev.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r8045eedd6bb74efcd8e01130796adbab98ee4a0d1273509fb1f2077a@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r8045eedd6bb74efcd8e01130796adbab98ee4a0d1273509fb1f2077a@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r819857361f5a156e90d6d06ccf6c41026bc99030d60d0804be3a9957@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r819857361f5a156e90d6d06ccf6c41026bc99030d60d0804be3a9957@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r827d17bf6900eddc686f4b6ee16fc5e52ca0070f8df7612222c40ac5@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r827d17bf6900eddc686f4b6ee16fc5e52ca0070f8df7612222c40ac5@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r874688141495df766e62be095f1dfb0bf4a24ca0340d8e0215c03fab@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r874688141495df766e62be095f1dfb0bf4a24ca0340d8e0215c03fab@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r87b0c69fef09277333a7e1716926d1f237d462e143a335854ddd922f@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r87b0c69fef09277333a7e1716926d1f237d462e143a335854ddd922f@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r87d8337300a635d66f0bb838bf635cdfcbba6b92c608a7813adbf4f4@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r87d8337300a635d66f0bb838bf635cdfcbba6b92c608a7813adbf4f4@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r8866f0cd2a3b319288b7eea20ac137b9f260c813d10ee2db88b65d32@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r8866f0cd2a3b319288b7eea20ac137b9f260c813d10ee2db88b65d32@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r8cacf91ae1b17cc6531d20953c52fa52f6fd3191deb3383446086ab7@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r8cacf91ae1b17cc6531d20953c52fa52f6fd3191deb3383446086ab7@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r8dd01541fc49d24ec223365a9974231cbd7378b749247a89b0a52210@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r8dd01541fc49d24ec223365a9974231cbd7378b749247a89b0a52210@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r8fead0144bb84d8714695c43607dca9c5101aa028a431ec695882fe5@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r8fead0144bb84d8714695c43607dca9c5101aa028a431ec695882fe5@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r90b5ac6e2bf190a5297bda58c7ec76d01cd86ff050b2470fcd9f4b35@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r90b5ac6e2bf190a5297bda58c7ec76d01cd86ff050b2470fcd9f4b35@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r911c1879258ebf98bca172c0673350eb7ea6569ca1735888d4cb7adc@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r911c1879258ebf98bca172c0673350eb7ea6569ca1735888d4cb7adc@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r916b6542bd5b15a8a7ff8fc14a0e0331e8e3e9d682f22768ae71d775@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r916b6542bd5b15a8a7ff8fc14a0e0331e8e3e9d682f22768ae71d775@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r93b240be16e642579ed794325bae31b040e1af896ecc12466642e19d@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r93b240be16e642579ed794325bae31b040e1af896ecc12466642e19d@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r93d5e81e879120d8d87925dbdd4045cb3afa9b066f4370f60b626ce3@%3Ccommits.druid.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r93d5e81e879120d8d87925dbdd4045cb3afa9b066f4370f60b626ce3@%3Ccommits.druid.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r9b790fe3a93121199f41258474222f15002b2f729495aa7ecbf90718@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r9b790fe3a93121199f41258474222f15002b2f729495aa7ecbf90718@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r9c010b79140452294292379183e7fe8e3533c5bb4db3f3fb39a6df61@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r9c010b79140452294292379183e7fe8e3533c5bb4db3f3fb39a6df61@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r9cc76b98f87738791b8ec3736755f92444d3c8cb26bd4e4ffdb5c1cc@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r9cc76b98f87738791b8ec3736755f92444d3c8cb26bd4e4ffdb5c1cc@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r9cd444f944241dc26d9b8b007fe8971ed7f005b56befef7a4f4fb827@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r9cd444f944241dc26d9b8b007fe8971ed7f005b56befef7a4f4fb827@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r9d9b4b93df7f92cdf1147db0fc169be1776c93d1fbc63bc65721fffd@%3Cdev.knox.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r9d9b4b93df7f92cdf1147db0fc169be1776c93d1fbc63bc65721fffd@%3Cdev.knox.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/r9f8c45a2a4540911cd8bd0485f67e8091883c9234d7a3aeb349c46c1@%3Creviews.iotdb.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/r9f8c45a2a4540911cd8bd0485f67e8091883c9234d7a3aeb349c46c1@%3Creviews.iotdb.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/ra1f19625cc67ac1b459c558f2ea5647d71ce51c6fe4f4cb03baec849@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/ra1f19625cc67ac1b459c558f2ea5647d71ce51c6fe4f4cb03baec849@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/ra55e04d5a73afcb8383f4386e2b26832c6e3972e53827021ab885943@%3Ccommits.shiro.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/ra55e04d5a73afcb8383f4386e2b26832c6e3972e53827021ab885943@%3Ccommits.shiro.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/ra5b7313d8cc9411db6790adfba33f2cf0665cb77adb7b02043c95867@%3Cdev.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/ra5b7313d8cc9411db6790adfba33f2cf0665cb77adb7b02043c95867@%3Cdev.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/raa9c370ab42d737e93bc1795bb6a2187d7c60210cd5e3b3ce8f3c484@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/raa9c370ab42d737e93bc1795bb6a2187d7c60210cd5e3b3ce8f3c484@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rad255c736fad46135f1339408cb0147d0671e45c376c3be85ceeec1a@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rad255c736fad46135f1339408cb0147d0671e45c376c3be85ceeec1a@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rae15d73cabef55bad148e4e6449b05da95646a2a8db3fc938e858dff@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rae15d73cabef55bad148e4e6449b05da95646a2a8db3fc938e858dff@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/raf9c581b793c30ff8f55f2415c7bd337eb69775aae607bf9ed1b16fb@%3Cdev.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/raf9c581b793c30ff8f55f2415c7bd337eb69775aae607bf9ed1b16fb@%3Cdev.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rafb023a7c61180a1027819678eb2068b0b60cd5c2559cb8490e26c81@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rafb023a7c61180a1027819678eb2068b0b60cd5c2559cb8490e26c81@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb077d35f2940191daeefca0d6449cddb2e9d06bcf8f5af4da2df3ca2@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb077d35f2940191daeefca0d6449cddb2e9d06bcf8f5af4da2df3ca2@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb5f2558ea2ac63633dfb04db1e8a6ea6bb1a2b8614899095e16c6233@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb5f2558ea2ac63633dfb04db1e8a6ea6bb1a2b8614899095e16c6233@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb69b1d7008a4b3de5ce5867e41a455693907026bc70ead06867aa323@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb69b1d7008a4b3de5ce5867e41a455693907026bc70ead06867aa323@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb7e159636b26156f6ef2b2a1a79b3ec9a026923b5456713e68f7c18e@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb7e159636b26156f6ef2b2a1a79b3ec9a026923b5456713e68f7c18e@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb81a018f83fe02c95a2138a7bb4f1e1677bd7e1fc1e7024280c2292d@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb81a018f83fe02c95a2138a7bb4f1e1677bd7e1fc1e7024280c2292d@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb8ad3745cb94c60d44cc369aff436eaf03dbc93112cefc86a2ed53ba@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb8ad3745cb94c60d44cc369aff436eaf03dbc93112cefc86a2ed53ba@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rb8c007f87dc57731a7b9a3b05364530422535b7e0bc6a0c5b68d4d55@%3Cdev.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rb8c007f87dc57731a7b9a3b05364530422535b7e0bc6a0c5b68d4d55@%3Cdev.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rbc5a622401924fadab61e07393235838918228b3d8a1a6704295b032@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rbc5a622401924fadab61e07393235838918228b3d8a1a6704295b032@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rbc5a8d7a0a13bc8152d427a7e9097cdeb139c6cfe111b2f00f26d16b@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rbc5a8d7a0a13bc8152d427a7e9097cdeb139c6cfe111b2f00f26d16b@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rbf99e4495461099cad9aa62e0164f8f25a7f97b791b4ace56e375f8d@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rbf99e4495461099cad9aa62e0164f8f25a7f97b791b4ace56e375f8d@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc1646894341450fdc4f7e96a88f5e2cf18d8004714f98aec6b831b3e@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc1646894341450fdc4f7e96a88f5e2cf18d8004714f98aec6b831b3e@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc1d9b8e9d17749d4d2b9abaaa72c422d090315bd6bc0ae73a16abc1c@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc1d9b8e9d17749d4d2b9abaaa72c422d090315bd6bc0ae73a16abc1c@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc2e24756d28580eeac811c5c6a12012c9f424b6e5bffb89f98ee3d03@%3Cdev.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc2e24756d28580eeac811c5c6a12012c9f424b6e5bffb89f98ee3d03@%3Cdev.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc44d1147f78496ec9932a38b28795ff4fd0c4fa6e3b6f5cc33c14d29@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc44d1147f78496ec9932a38b28795ff4fd0c4fa6e3b6f5cc33c14d29@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc4b972ea10c5a65c6a88a6e233778718ab9af7f484affdd5e5de0cff@%3Ccommits.felix.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc4b972ea10c5a65c6a88a6e233778718ab9af7f484affdd5e5de0cff@%3Ccommits.felix.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc77918636d8744d50312e4f67ba2e01f47db3ec5144540df8745cb38@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc77918636d8744d50312e4f67ba2e01f47db3ec5144540df8745cb38@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc8dd95802be0cca8d7d0929c0c8484ede384ecb966b2a9dc7197b089@%3Creviews.iotdb.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc8dd95802be0cca8d7d0929c0c8484ede384ecb966b2a9dc7197b089@%3Creviews.iotdb.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rc9d2ab8a6c7835182f20b01104798e67c75db655c869733a0713a590@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rc9d2ab8a6c7835182f20b01104798e67c75db655c869733a0713a590@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rccedec4cfd5df6761255b71349e3b7c27ee0745bd33698a71b1775cf@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rccedec4cfd5df6761255b71349e3b7c27ee0745bd33698a71b1775cf@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rcdcf32952397c83a1d617a8c9cd5c15c98b8d0d38a607972956bde7e@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rcdcf32952397c83a1d617a8c9cd5c15c98b8d0d38a607972956bde7e@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rcdd56ab4255801a0964dcce3285e87f2c6994e6469e189f6836f34e3@%3Cnotifications.iotdb.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rcdd56ab4255801a0964dcce3285e87f2c6994e6469e189f6836f34e3@%3Cnotifications.iotdb.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rcfb95a7c69c4b9c082ea1918e812dfc45aa0d1e120fd47f68251a336@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rcfb95a7c69c4b9c082ea1918e812dfc45aa0d1e120fd47f68251a336@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rcff5caebfd535195276aaabc1b631fd55a4ff6b14e2bdfe33f18ff91@%3Creviews.iotdb.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rcff5caebfd535195276aaabc1b631fd55a4ff6b14e2bdfe33f18ff91@%3Creviews.iotdb.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rd0e44e8ef71eeaaa3cf3d1b8b41eb25894372e2995ec908ce7624d26@%3Ccommits.pulsar.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rd0e44e8ef71eeaaa3cf3d1b8b41eb25894372e2995ec908ce7624d26@%3Ccommits.pulsar.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rd58b60ab2e49ebf21022e59e280feb25899ff785c88f31fe314aa5b9@%3Ccommits.shiro.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rd58b60ab2e49ebf21022e59e280feb25899ff785c88f31fe314aa5b9@%3Ccommits.shiro.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rd7e62e2972a41c2658f41a824b8bdd15644d80fcadc51fe7b7c855de@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rd7e62e2972a41c2658f41a824b8bdd15644d80fcadc51fe7b7c855de@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rdbf1cd0ab330c032f3a09b453cb6405dccc905ad53765323bddab957@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rdbf1cd0ab330c032f3a09b453cb6405dccc905ad53765323bddab957@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rdddb4b06e86fd58a1beda132f22192af2f9b56aae8849cb3767ccd55@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rdddb4b06e86fd58a1beda132f22192af2f9b56aae8849cb3767ccd55@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rde11c433675143d8d27551c3d9e821fe1955f1551a518033d3716553@%3Cdev.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rde11c433675143d8d27551c3d9e821fe1955f1551a518033d3716553@%3Cdev.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rde782fd8e133f7e04e50c8aaa4774df524367764eb5b85bf60d96747@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rde782fd8e133f7e04e50c8aaa4774df524367764eb5b85bf60d96747@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/re08b03cd1754b32f342664eead415af48092c630c8e3e0deba862a26@%3Ccommits.shiro.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/re08b03cd1754b32f342664eead415af48092c630c8e3e0deba862a26@%3Ccommits.shiro.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/re5706141ca397587f7ee0f500a39ccc590a41f802fc125fc135cb92f@%3Cnotifications.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/re5706141ca397587f7ee0f500a39ccc590a41f802fc125fc135cb92f@%3Cnotifications.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/ree506849c4f04376793b1a3076bc017da60b8a2ef2702dc214ff826f@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/ree506849c4f04376793b1a3076bc017da60b8a2ef2702dc214ff826f@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/refbbb0eb65c185d1fa491cee08ac8ed32708ce3b269133a6da264317@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/refbbb0eb65c185d1fa491cee08ac8ed32708ce3b269133a6da264317@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rf00ea6376f3d0e8b8f62cf6d4a4f28b24e27193acd2c851f618aa41e@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rf00ea6376f3d0e8b8f62cf6d4a4f28b24e27193acd2c851f618aa41e@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rf3bc023a7cc729aeac72f482e2eeeab9008aa6b1dadbeb3f45320cae@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rf3bc023a7cc729aeac72f482e2eeeab9008aa6b1dadbeb3f45320cae@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rfd9f102864a039f7fda64a580dfe1a342d65d7b723ca06dc9fbceb31@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rfd9f102864a039f7fda64a580dfe1a342d65d7b723ca06dc9fbceb31@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rfe5caef1fd6cf4b8ceac1b63c33195f2908517b665c946c020d3fbd6@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rfe5caef1fd6cf4b8ceac1b63c33195f2908517b665c946c020d3fbd6@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rfe6ba83d14545e982400dea89e68b10113cb5202a3dcb558ce64842d@%3Cissues.zookeeper.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rfe6ba83d14545e982400dea89e68b10113cb5202a3dcb558ce64842d@%3Cissues.zookeeper.apache.org%3E"
        },
        {
            "reference_url": "https://lists.apache.org/thread.html/rff0ad6a7dac2182421e2db2407e44fbb61a89904adfd91538f21fbf8@%3Cissues.beam.apache.org%3E",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.apache.org/thread.html/rff0ad6a7dac2182421e2db2407e44fbb61a89904adfd91538f21fbf8@%3Cissues.beam.apache.org%3E"
        },
        {
            "reference_url": "https://lists.debian.org/debian-lts-announce/2021/05/msg00016.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://lists.debian.org/debian-lts-announce/2021/05/msg00016.html"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2020-27216",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2020-27216"
        },
        {
            "reference_url": "https://security.netapp.com/advisory/ntap-20201123-0005",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://security.netapp.com/advisory/ntap-20201123-0005"
        },
        {
            "reference_url": "https://security.netapp.com/advisory/ntap-20201123-0005/",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://security.netapp.com/advisory/ntap-20201123-0005/"
        },
        {
            "reference_url": "https://www.debian.org/security/2021/dsa-4949",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.debian.org/security/2021/dsa-4949"
        },
        {
            "reference_url": "https://www.oracle.com/security-alerts/cpuApr2021.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.oracle.com/security-alerts/cpuApr2021.html"
        },
        {
            "reference_url": "https://www.oracle.com/security-alerts/cpujan2021.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.oracle.com/security-alerts/cpujan2021.html"
        },
        {
            "reference_url": "https://www.oracle.com/security-alerts/cpujan2022.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.oracle.com/security-alerts/cpujan2022.html"
        },
        {
            "reference_url": "https://www.oracle.com//security-alerts/cpujul2021.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.oracle.com//security-alerts/cpujul2021.html"
        },
        {
            "reference_url": "https://www.oracle.com/security-alerts/cpuoct2021.html",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "7.0",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H"
                },
                {
                    "value": "HIGH",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://www.oracle.com/security-alerts/cpuoct2021.html"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=1891132",
            "reference_id": "1891132",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1891132"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-g3wg-6mcf-8jj6",
            "reference_id": "GHSA-g3wg-6mcf-8jj6",
            "reference_type": "",
            "scores": [
                {
                    "value": "HIGH",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-g3wg-6mcf-8jj6"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2020:5168",
            "reference_id": "RHSA-2020:5168",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2020:5168"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2020:5365",
            "reference_id": "RHSA-2020:5365",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2020:5365"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2021:0329",
            "reference_id": "RHSA-2021:0329",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2021:0329"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2021:2431",
            "reference_id": "RHSA-2021:2431",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2021:2431"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2021:2499",
            "reference_id": "RHSA-2021:2499",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2021:2499"
        },
        {
            "reference_url": "https://access.redhat.com/errata/RHSA-2021:2517",
            "reference_id": "RHSA-2021:2517",
            "reference_type": "",
            "scores": [],
            "url": "https://access.redhat.com/errata/RHSA-2021:2517"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 378,
            "name": "Creation of Temporary File With Insecure Permissions",
            "description": "Opening temporary files without appropriate measures or controls can leave the file, its contents and any function that it impacts vulnerable to attack."
        },
        {
            "cwe_id": 379,
            "name": "Creation of Temporary File in Directory with Insecure Permissions",
            "description": "The product creates a temporary file in a directory whose permissions allow unintended actors to determine the file's existence or otherwise access that file."
        },
        {
            "cwe_id": 552,
            "name": "Files or Directories Accessible to External Parties",
            "description": "The product makes files or directories accessible to unauthorized actors, even though they should not be."
        },
        {
            "cwe_id": 377,
            "name": "Insecure Temporary File",
            "description": "Creating and using insecure temporary files can leave application and system data vulnerable to attack."
        },
        {
            "cwe_id": 1035,
            "name": "OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities",
            "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."
        },
        {
            "cwe_id": 937,
            "name": "OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities",
            "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."
        },
        {
            "cwe_id": 78,
            "name": "Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')",
            "description": "The product constructs all or part of an OS command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended OS command when it is sent to a downstream component."
        }
    ],
    "exploits": [],
    "severity_range_score": "7.0 - 8.9",
    "exploitability": "0.5",
    "weighted_severity": "8.0",
    "risk_score": 4.0,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-nubz-xqaw-tkfr"
}