Vulnerability Instance
Lookup for vulnerabilities affecting packages.
GET /api/vulnerabilities/34645?format=api
{ "url": "http://public2.vulnerablecode.io/api/vulnerabilities/34645?format=api", "vulnerability_id": "VCID-prd3-mmuv-n3dc", "summary": "Jetty vulnerable to incorrect handling of invalid large TLS frame, exhausting CPU resources\n### Impact\nWhen using SSL/TLS with Jetty, either with HTTP/1.1, HTTP/2, or WebSocket, the server may receive an invalid large (greater than 17408) TLS frame that is incorrectly handled, causing CPU resources to eventually reach 100% usage.\n\n### Workarounds\n\nThe problem can be worked around by compiling the following class:\n```java\npackage org.eclipse.jetty.server.ssl.fix6072;\n\nimport java.nio.ByteBuffer;\nimport javax.net.ssl.SSLEngine;\nimport javax.net.ssl.SSLEngineResult;\nimport javax.net.ssl.SSLException;\nimport javax.net.ssl.SSLHandshakeException;\n\nimport org.eclipse.jetty.io.EndPoint;\nimport org.eclipse.jetty.io.ssl.SslConnection;\nimport org.eclipse.jetty.server.Connector;\nimport org.eclipse.jetty.server.SslConnectionFactory;\nimport org.eclipse.jetty.util.BufferUtil;\nimport org.eclipse.jetty.util.annotation.Name;\nimport org.eclipse.jetty.util.ssl.SslContextFactory;\n\npublic class SpaceCheckingSslConnectionFactory extends SslConnectionFactory\n{\n public SpaceCheckingSslConnectionFactory(@Name(\"sslContextFactory\") SslContextFactory factory, @Name(\"next\") String nextProtocol)\n {\n super(factory, nextProtocol);\n }\n\n @Override\n protected SslConnection newSslConnection(Connector connector, EndPoint endPoint, SSLEngine engine)\n {\n return new SslConnection(connector.getByteBufferPool(), connector.getExecutor(), endPoint, engine, isDirectBuffersForEncryption(), isDirectBuffersForDecryption())\n {\n @Override\n protected SSLEngineResult unwrap(SSLEngine sslEngine, ByteBuffer input, ByteBuffer output) throws SSLException\n {\n SSLEngineResult results = super.unwrap(sslEngine, input, output);\n\n if ((results.getStatus() == SSLEngineResult.Status.BUFFER_UNDERFLOW ||\n results.getStatus() == SSLEngineResult.Status.OK && results.bytesConsumed() == 0 && results.bytesProduced() == 0) &&\n BufferUtil.space(input) == 0)\n {\n BufferUtil.clear(input);\n throw new SSLHandshakeException(\"Encrypted buffer max length exceeded\");\n }\n return results;\n }\n };\n }\n}\n```\nThis class can be deployed by:\n + The resulting class file should be put into a jar file (eg sslfix6072.jar)\n + The jar file should be made available to the server. For a normal distribution this can be done by putting the file into ${jetty.base}/lib\n + Copy the file `${jetty.home}/modules/ssl.mod` to `${jetty.base}/modules`\n + Edit the `${jetty.base}/modules/ssl.mod` file to have the following section:\n\n```\n[lib]\nlib/sslfix6072.jar\n```\n\n+ Copy the file `${jetty.home}/etc/jetty-https.xml` and`${jetty.home}/etc/jetty-http2.xml` to `${jetty.base}/etc`\n+ Edit files `${jetty.base}/etc/jetty-https.xml` and `${jetty.base}/etc/jetty-http2.xml`, changing any reference of `org.eclipse.jetty.server.SslConnectionFactory` to `org.eclipse.jetty.server.ssl.fix6072.SpaceCheckingSslConnectionFactory`. For example:\n```xml\n <Call name=\"addIfAbsentConnectionFactory\">\n <Arg>\n <New class=\"org.eclipse.jetty.server.ssl.fix6072.SpaceCheckingSslConnectionFactory\">\n <Arg name=\"next\">http/1.1</Arg>\n <Arg name=\"sslContextFactory\"><Ref refid=\"sslContextFactory\"/></Arg>\n </New>\n </Arg>\n </Call>\n```\n+ Restart Jetty", "aliases": [ { "alias": "CVE-2021-28165" }, { "alias": "GHSA-26vr-8j45-3r4w" } ], "fixed_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/372113?format=api", "purl": "pkg:alpm/archlinux/jenkins@2.286-1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9prj-5zwe-7kc5" }, { "vulnerability": "VCID-dkr2-9c7r-q3g9" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:alpm/archlinux/jenkins@2.286-1" }, { "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/925886?format=api", "purl": "pkg:deb/debian/jetty9@9.4.39-1?distro=trixie", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/jetty9@9.4.39-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/238121?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.39.v20210325", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.39.v20210325" }, { "url": "http://public2.vulnerablecode.io/api/packages/238122?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238123?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@11.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238136?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.39.v20210325" }, { "url": "http://public2.vulnerablecode.io/api/packages/238137?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238138?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238113?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.39.v20210325", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.39.v20210325" }, { "url": "http://public2.vulnerablecode.io/api/packages/238116?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@10.0.2", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238119?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@11.0.2", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@11.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238124?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.39.v20210325", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kx4x-gnk4-yugu" }, { "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.39.v20210325" }, { "url": "http://public2.vulnerablecode.io/api/packages/73829?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-h3wz-rdkt-7ue6" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/73837?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-h3wz-rdkt-7ue6" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237852?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.39.v20210325", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.39.v20210325" }, { "url": "http://public2.vulnerablecode.io/api/packages/237853?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.2", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237854?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.2", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@11.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/143820?format=api", "purl": "pkg:maven/org.jenkins-ci.main/jenkins-core@2.286", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9prj-5zwe-7kc5" }, { "vulnerability": "VCID-dkr2-9c7r-q3g9" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.jenkins-ci.main/jenkins-core@2.286" } ], "affected_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/372112?format=api", "purl": "pkg:alpm/archlinux/jenkins@2.285-1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:alpm/archlinux/jenkins@2.285-1" }, { "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/569452?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@7.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@7.2.2" }, { "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/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/233425?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.34.v20201102", "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.34.v20201102" }, { "url": "http://public2.vulnerablecode.io/api/packages/233426?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.35.v20201120", "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.35.v20201120" }, { "url": "http://public2.vulnerablecode.io/api/packages/233427?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.36.v20210114", "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.36.v20210114" }, { "url": "http://public2.vulnerablecode.io/api/packages/233428?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.37.v20210219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-p7cu-h519-83hx" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.37.v20210219" }, { "url": "http://public2.vulnerablecode.io/api/packages/238120?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.38.v20210224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@9.4.38.v20210224" }, { "url": "http://public2.vulnerablecode.io/api/packages/57097?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.0", "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@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233429?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/57098?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.0", "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@11.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233430?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-client@11.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-client@11.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/569455?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185536?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.2.2.v20101205" }, { "url": "http://public2.vulnerablecode.io/api/packages/185537?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.0.v20110203" }, { "url": "http://public2.vulnerablecode.io/api/packages/185538?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.3.1.v20110307" }, { "url": "http://public2.vulnerablecode.io/api/packages/185539?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185540?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.0.v20110414" }, { "url": "http://public2.vulnerablecode.io/api/packages/185541?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.1.v20110513" }, { "url": "http://public2.vulnerablecode.io/api/packages/185542?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.2.v20110526" }, { "url": "http://public2.vulnerablecode.io/api/packages/185543?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.3.v20110701" }, { "url": "http://public2.vulnerablecode.io/api/packages/185544?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.4.v20110707" }, { "url": "http://public2.vulnerablecode.io/api/packages/185545?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.4.5.v20110725" }, { "url": "http://public2.vulnerablecode.io/api/packages/185546?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185547?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185548?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185549?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.0.v20110901" }, { "url": "http://public2.vulnerablecode.io/api/packages/185550?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.1.v20110908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185551?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.2.v20111006" }, { "url": "http://public2.vulnerablecode.io/api/packages/185552?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.3.v20111011" }, { "url": "http://public2.vulnerablecode.io/api/packages/185553?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.5.4.v20111024" }, { "url": "http://public2.vulnerablecode.io/api/packages/185554?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185555?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185556?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185557?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185558?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC4" }, { "url": "http://public2.vulnerablecode.io/api/packages/185559?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.RC5" }, { "url": "http://public2.vulnerablecode.io/api/packages/185560?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.0.v20120127" }, { "url": "http://public2.vulnerablecode.io/api/packages/185561?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.1.v20120215" }, { "url": "http://public2.vulnerablecode.io/api/packages/185562?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.2.v20120308" }, { "url": "http://public2.vulnerablecode.io/api/packages/185563?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.3.v20120416" }, { "url": "http://public2.vulnerablecode.io/api/packages/185564?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.4.v20120524" }, { "url": "http://public2.vulnerablecode.io/api/packages/185565?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.5.v20120716" }, { "url": "http://public2.vulnerablecode.io/api/packages/185566?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.6.v20120903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185567?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.7.v20120910" }, { "url": "http://public2.vulnerablecode.io/api/packages/185568?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.8.v20121106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185569?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.9.v20130131" }, { "url": "http://public2.vulnerablecode.io/api/packages/185570?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.10.v20130312" }, { "url": "http://public2.vulnerablecode.io/api/packages/185571?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.11.v20130520" }, { "url": "http://public2.vulnerablecode.io/api/packages/185572?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.12.v20130726" }, { "url": "http://public2.vulnerablecode.io/api/packages/185573?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.13.v20130916" }, { "url": "http://public2.vulnerablecode.io/api/packages/185574?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.14.v20131031" }, { "url": "http://public2.vulnerablecode.io/api/packages/185575?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.15.v20140411" }, { "url": "http://public2.vulnerablecode.io/api/packages/185576?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.16.v20140903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185577?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.17.v20150415" }, { "url": "http://public2.vulnerablecode.io/api/packages/185578?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.18.v20150929" }, { "url": "http://public2.vulnerablecode.io/api/packages/185579?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.19.v20160209" }, { "url": "http://public2.vulnerablecode.io/api/packages/185580?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.20.v20160902" }, { "url": "http://public2.vulnerablecode.io/api/packages/185581?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@7.6.21.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185582?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185583?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185584?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185585?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.M3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185586?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185587?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.0.v20110901" }, { "url": "http://public2.vulnerablecode.io/api/packages/185588?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.1.v20110908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185589?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.2.v20111006" }, { "url": "http://public2.vulnerablecode.io/api/packages/185590?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.3.v20111011" }, { "url": "http://public2.vulnerablecode.io/api/packages/185591?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.0.4.v20111024" }, { "url": "http://public2.vulnerablecode.io/api/packages/185592?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185593?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185594?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185595?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC4" }, { "url": "http://public2.vulnerablecode.io/api/packages/185596?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.RC5" }, { "url": "http://public2.vulnerablecode.io/api/packages/185597?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.0.v20120127" }, { "url": "http://public2.vulnerablecode.io/api/packages/185598?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.1.v20120215" }, { "url": "http://public2.vulnerablecode.io/api/packages/185599?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.2.v20120308" }, { "url": "http://public2.vulnerablecode.io/api/packages/185600?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.3.v20120416" }, { "url": "http://public2.vulnerablecode.io/api/packages/185601?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.4.v20120524" }, { "url": "http://public2.vulnerablecode.io/api/packages/185602?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.5.v20120716" }, { "url": "http://public2.vulnerablecode.io/api/packages/185603?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.6.v20120903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185604?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.7.v20120910" }, { "url": "http://public2.vulnerablecode.io/api/packages/185605?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.8.v20121106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185606?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131" }, { "url": "http://public2.vulnerablecode.io/api/packages/185607?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.10.v20130312" }, { "url": "http://public2.vulnerablecode.io/api/packages/185608?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.11.v20130520" }, { "url": "http://public2.vulnerablecode.io/api/packages/185609?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.12.v20130726" }, { "url": "http://public2.vulnerablecode.io/api/packages/185610?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.13.v20130916" }, { "url": "http://public2.vulnerablecode.io/api/packages/185611?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.14.v20131031" }, { "url": "http://public2.vulnerablecode.io/api/packages/185612?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.15.v20140411" }, { "url": "http://public2.vulnerablecode.io/api/packages/185613?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.16.v20140903" }, { "url": "http://public2.vulnerablecode.io/api/packages/185614?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415" }, { "url": "http://public2.vulnerablecode.io/api/packages/185615?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.18.v20150929" }, { "url": "http://public2.vulnerablecode.io/api/packages/185616?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.19.v20160209" }, { "url": "http://public2.vulnerablecode.io/api/packages/185617?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.20.v20160902" }, { "url": "http://public2.vulnerablecode.io/api/packages/185618?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.21.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185619?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.1.22.v20160922" }, { "url": "http://public2.vulnerablecode.io/api/packages/185620?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@8.2.0.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185621?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185622?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185623?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185624?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185625?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M4" }, { "url": "http://public2.vulnerablecode.io/api/packages/185626?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.M5" }, { "url": "http://public2.vulnerablecode.io/api/packages/185627?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185628?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185629?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185630?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.0.v20130308" }, { "url": "http://public2.vulnerablecode.io/api/packages/185631?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.1.v20130408" }, { "url": "http://public2.vulnerablecode.io/api/packages/185632?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.2.v20130417" }, { "url": "http://public2.vulnerablecode.io/api/packages/185633?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.3.v20130506" }, { "url": "http://public2.vulnerablecode.io/api/packages/185634?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.4.v20130625" }, { "url": "http://public2.vulnerablecode.io/api/packages/185635?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.5.v20130815" }, { "url": "http://public2.vulnerablecode.io/api/packages/185636?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.6.v20130930" }, { "url": "http://public2.vulnerablecode.io/api/packages/185637?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.0.7.v20131107" }, { "url": "http://public2.vulnerablecode.io/api/packages/185638?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185639?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185640?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185641?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185642?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.0.v20131115" }, { "url": "http://public2.vulnerablecode.io/api/packages/185643?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.1.v20140108" }, { "url": "http://public2.vulnerablecode.io/api/packages/185644?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.2.v20140210" }, { "url": "http://public2.vulnerablecode.io/api/packages/185645?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.3.v20140225" }, { "url": "http://public2.vulnerablecode.io/api/packages/185646?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.4.v20140401" }, { "url": "http://public2.vulnerablecode.io/api/packages/185647?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.5.v20140505" }, { "url": "http://public2.vulnerablecode.io/api/packages/185648?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.1.6.v20160112" }, { "url": "http://public2.vulnerablecode.io/api/packages/36182?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185392?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185393?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185394?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.0.v20140526" }, { "url": "http://public2.vulnerablecode.io/api/packages/185395?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.1.v20140609" }, { "url": "http://public2.vulnerablecode.io/api/packages/185396?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.2.v20140723" }, { "url": "http://public2.vulnerablecode.io/api/packages/23204?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.3.v20140905" }, { "url": "http://public2.vulnerablecode.io/api/packages/156916?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103" }, { "url": "http://public2.vulnerablecode.io/api/packages/156917?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.5.v20141112" }, { "url": "http://public2.vulnerablecode.io/api/packages/156918?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.6.v20141205" }, { "url": "http://public2.vulnerablecode.io/api/packages/156919?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.7.v20150116" }, { "url": "http://public2.vulnerablecode.io/api/packages/23205?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.8.v20150217" }, { "url": "http://public2.vulnerablecode.io/api/packages/23208?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.9.v20150224" }, { "url": "http://public2.vulnerablecode.io/api/packages/185397?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.10.v20150310" }, { "url": "http://public2.vulnerablecode.io/api/packages/185398?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185399?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.11.v20150529" }, { "url": "http://public2.vulnerablecode.io/api/packages/185400?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185401?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.12.v20150709" }, { "url": "http://public2.vulnerablecode.io/api/packages/185402?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.13.v20150730" }, { "url": "http://public2.vulnerablecode.io/api/packages/185403?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.14.v20151106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185404?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.15.v20160210" }, { "url": "http://public2.vulnerablecode.io/api/packages/185405?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.16.v20160414" }, { "url": "http://public2.vulnerablecode.io/api/packages/185406?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.17.v20160517" }, { "url": "http://public2.vulnerablecode.io/api/packages/185407?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.18.v20160721" }, { "url": "http://public2.vulnerablecode.io/api/packages/185408?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.19.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/185409?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.20.v20161216" }, { "url": "http://public2.vulnerablecode.io/api/packages/185410?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.21.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/185411?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.22.v20170606" }, { "url": "http://public2.vulnerablecode.io/api/packages/185412?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.23.v20171218" }, { "url": "http://public2.vulnerablecode.io/api/packages/185413?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.24.v20180105" }, { "url": "http://public2.vulnerablecode.io/api/packages/185414?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.25.v20180606" }, { "url": "http://public2.vulnerablecode.io/api/packages/36183?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.26.v20180806" }, { "url": "http://public2.vulnerablecode.io/api/packages/36187?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-6uhn-tn81-cyac" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.27.v20190403" }, { "url": "http://public2.vulnerablecode.io/api/packages/36194?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.28.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/185649?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.29.v20191105" }, { "url": "http://public2.vulnerablecode.io/api/packages/185650?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.2.30.v20200428" }, { "url": "http://public2.vulnerablecode.io/api/packages/23206?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/23207?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-9x6q-13wc-3bdu" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/156920?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185415?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185416?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185417?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.0.v20150612" }, { "url": "http://public2.vulnerablecode.io/api/packages/185418?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.1.v20150714" }, { "url": "http://public2.vulnerablecode.io/api/packages/185419?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.2.v20150730" }, { "url": "http://public2.vulnerablecode.io/api/packages/185420?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.3.v20150827" }, { "url": "http://public2.vulnerablecode.io/api/packages/185421?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185422?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185423?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.4.v20151007" }, { "url": "http://public2.vulnerablecode.io/api/packages/185424?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.5.v20151012" }, { "url": "http://public2.vulnerablecode.io/api/packages/185425?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.6.v20151106" }, { "url": "http://public2.vulnerablecode.io/api/packages/185426?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185427?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185428?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.7.v20160115" }, { "url": "http://public2.vulnerablecode.io/api/packages/185429?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185430?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.8.v20160314" }, { "url": "http://public2.vulnerablecode.io/api/packages/185431?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185432?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185433?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517" }, { "url": "http://public2.vulnerablecode.io/api/packages/185434?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185435?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.10.v20160621" }, { "url": "http://public2.vulnerablecode.io/api/packages/185436?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185437?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.11.v20160721" }, { "url": "http://public2.vulnerablecode.io/api/packages/185438?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.12.v20160915" }, { "url": "http://public2.vulnerablecode.io/api/packages/185439?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185440?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.13.v20161014" }, { "url": "http://public2.vulnerablecode.io/api/packages/185441?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.14.v20161028" }, { "url": "http://public2.vulnerablecode.io/api/packages/185442?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.15.v20161220" }, { "url": "http://public2.vulnerablecode.io/api/packages/185443?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.16.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/185444?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185445?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.17.v20170317" }, { "url": "http://public2.vulnerablecode.io/api/packages/185446?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.18.v20170406" }, { "url": "http://public2.vulnerablecode.io/api/packages/185447?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.19.v20170502" }, { "url": "http://public2.vulnerablecode.io/api/packages/185448?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.20.v20170531" }, { "url": "http://public2.vulnerablecode.io/api/packages/185449?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185450?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185451?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.21.v20170918" }, { "url": "http://public2.vulnerablecode.io/api/packages/185452?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.22.v20171030" }, { "url": "http://public2.vulnerablecode.io/api/packages/185453?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.23.v20180228" }, { "url": "http://public2.vulnerablecode.io/api/packages/185454?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.24.v20180605" }, { "url": "http://public2.vulnerablecode.io/api/packages/36184?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.25.v20180904" }, { "url": "http://public2.vulnerablecode.io/api/packages/36188?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-6uhn-tn81-cyac" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.26.v20190403" }, { "url": "http://public2.vulnerablecode.io/api/packages/36195?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.27.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/185651?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.28.v20191105" }, { "url": "http://public2.vulnerablecode.io/api/packages/185652?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.29.v20201019" }, { "url": "http://public2.vulnerablecode.io/api/packages/185653?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.3.30.v20211001" }, { "url": "http://public2.vulnerablecode.io/api/packages/36185?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185455?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185456?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185457?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185458?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185459?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.RC3" }, { "url": "http://public2.vulnerablecode.io/api/packages/185460?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20161208" }, { "url": "http://public2.vulnerablecode.io/api/packages/185461?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.0.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185462?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/185463?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.1.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185464?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220" }, { "url": "http://public2.vulnerablecode.io/api/packages/185465?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185466?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20170317" }, { "url": "http://public2.vulnerablecode.io/api/packages/185467?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.3.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185468?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20170414" }, { "url": "http://public2.vulnerablecode.io/api/packages/185469?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.4.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185470?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502" }, { "url": "http://public2.vulnerablecode.io/api/packages/185471?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185472?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531" }, { "url": "http://public2.vulnerablecode.io/api/packages/185473?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185474?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185475?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20170914" }, { "url": "http://public2.vulnerablecode.io/api/packages/185476?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.7.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185477?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20171121" }, { "url": "http://public2.vulnerablecode.io/api/packages/185478?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.8.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/185479?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.9.v20180320" }, { "url": "http://public2.vulnerablecode.io/api/packages/185480?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185481?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185482?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.10.v20180503" }, { "url": "http://public2.vulnerablecode.io/api/packages/185483?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.11.v20180605" }, { "url": "http://public2.vulnerablecode.io/api/packages/185484?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/185485?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/185486?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/185487?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.12.v20180830" }, { "url": "http://public2.vulnerablecode.io/api/packages/185488?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.13.v20181111" }, { "url": "http://public2.vulnerablecode.io/api/packages/185489?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.14.v20181114" }, { "url": "http://public2.vulnerablecode.io/api/packages/36186?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-ahev-zdjd-gqg1" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.15.v20190215" }, { "url": "http://public2.vulnerablecode.io/api/packages/36189?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-6uhn-tn81-cyac" }, { "vulnerability": "VCID-czhb-gqt2-17av" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.16.v20190411" }, { "url": "http://public2.vulnerablecode.io/api/packages/36199?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.17.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/217963?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.18.v20190429" }, { "url": "http://public2.vulnerablecode.io/api/packages/217964?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.19.v20190610" }, { "url": "http://public2.vulnerablecode.io/api/packages/217965?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.20.v20190813" }, { "url": "http://public2.vulnerablecode.io/api/packages/197474?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-zdt8-jrn2-m3ff" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.21.v20190926" }, { "url": "http://public2.vulnerablecode.io/api/packages/197475?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-zdt8-jrn2-m3ff" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.22.v20191022" }, { "url": "http://public2.vulnerablecode.io/api/packages/197476?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-zdt8-jrn2-m3ff" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.23.v20191118" }, { "url": "http://public2.vulnerablecode.io/api/packages/197477?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.24.v20191120" }, { "url": "http://public2.vulnerablecode.io/api/packages/217966?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.25.v20191220" }, { "url": "http://public2.vulnerablecode.io/api/packages/217967?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.26.v20200117" }, { "url": "http://public2.vulnerablecode.io/api/packages/217968?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227" }, { "url": "http://public2.vulnerablecode.io/api/packages/217969?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.28.v20200408" }, { "url": "http://public2.vulnerablecode.io/api/packages/217970?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.29.v20200521" }, { "url": "http://public2.vulnerablecode.io/api/packages/217971?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.30.v20200611" }, { "url": "http://public2.vulnerablecode.io/api/packages/217972?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.31.v20200723" }, { "url": "http://public2.vulnerablecode.io/api/packages/217973?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-nubz-xqaw-tkfr" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.32.v20200930" }, { "url": "http://public2.vulnerablecode.io/api/packages/217974?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.33.v20201020" }, { "url": "http://public2.vulnerablecode.io/api/packages/233431?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.34.v20201102" }, { "url": "http://public2.vulnerablecode.io/api/packages/233432?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.35.v20201120" }, { "url": "http://public2.vulnerablecode.io/api/packages/233433?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.36.v20210114" }, { "url": "http://public2.vulnerablecode.io/api/packages/233434?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-p7cu-h519-83hx" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.37.v20210219" }, { "url": "http://public2.vulnerablecode.io/api/packages/238135?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@9.4.38.v20210224" }, { "url": "http://public2.vulnerablecode.io/api/packages/60026?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-4g8e-zm2m-6yhv" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233435?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/60028?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-4g8e-zm2m-6yhv" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" }, { "vulnerability": "VCID-uuju-ey95-tyfq" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233436?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-http@11.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-2k3p-x56s-ffgr" }, { "vulnerability": "VCID-e1r9-bbdh-qqf6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-tqm9-4ch7-s7b3" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-http@11.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/569451?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237855?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.2.2.v20101205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.2.2.v20101205" }, { "url": "http://public2.vulnerablecode.io/api/packages/237856?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.3.0.v20110203", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.3.0.v20110203" }, { "url": "http://public2.vulnerablecode.io/api/packages/237857?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.3.1.v20110307", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.3.1.v20110307" }, { "url": "http://public2.vulnerablecode.io/api/packages/237858?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237859?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.0.v20110414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.0.v20110414" }, { "url": "http://public2.vulnerablecode.io/api/packages/237860?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.1.v20110513", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.1.v20110513" }, { "url": "http://public2.vulnerablecode.io/api/packages/237861?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.2.v20110526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.2.v20110526" }, { "url": "http://public2.vulnerablecode.io/api/packages/237862?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.3.v20110701", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.3.v20110701" }, { "url": "http://public2.vulnerablecode.io/api/packages/237863?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.4.v20110707", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.4.v20110707" }, { "url": "http://public2.vulnerablecode.io/api/packages/237864?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.4.5.v20110725", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.4.5.v20110725" }, { "url": "http://public2.vulnerablecode.io/api/packages/237865?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237866?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237867?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237868?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.v20110901", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.0.v20110901" }, { "url": "http://public2.vulnerablecode.io/api/packages/237869?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.1.v20110908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.1.v20110908" }, { "url": "http://public2.vulnerablecode.io/api/packages/237870?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.2.v20111006", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.2.v20111006" }, { "url": "http://public2.vulnerablecode.io/api/packages/237871?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.3.v20111011", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.3.v20111011" }, { "url": "http://public2.vulnerablecode.io/api/packages/237872?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.5.4.v20111024", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.5.4.v20111024" }, { "url": "http://public2.vulnerablecode.io/api/packages/237873?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237874?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237875?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237876?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC3" }, { "url": "http://public2.vulnerablecode.io/api/packages/237877?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC4" }, { "url": "http://public2.vulnerablecode.io/api/packages/237878?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.RC5" }, { "url": "http://public2.vulnerablecode.io/api/packages/237879?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.v20120127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.0.v20120127" }, { "url": "http://public2.vulnerablecode.io/api/packages/237880?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.1.v20120215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.1.v20120215" }, { "url": "http://public2.vulnerablecode.io/api/packages/237881?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.2.v20120308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.2.v20120308" }, { "url": "http://public2.vulnerablecode.io/api/packages/237882?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.3.v20120416", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.3.v20120416" }, { "url": "http://public2.vulnerablecode.io/api/packages/237883?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.4.v20120524", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.4.v20120524" }, { "url": "http://public2.vulnerablecode.io/api/packages/237884?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.5.v20120716", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.5.v20120716" }, { "url": "http://public2.vulnerablecode.io/api/packages/237885?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.6.v20120903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.6.v20120903" }, { "url": "http://public2.vulnerablecode.io/api/packages/237886?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.7.v20120910", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.7.v20120910" }, { "url": "http://public2.vulnerablecode.io/api/packages/237887?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.8.v20121106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.8.v20121106" }, { "url": "http://public2.vulnerablecode.io/api/packages/237888?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.9.v20130131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.9.v20130131" }, { "url": "http://public2.vulnerablecode.io/api/packages/237889?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.10.v20130312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.10.v20130312" }, { "url": "http://public2.vulnerablecode.io/api/packages/237890?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.11.v20130520", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.11.v20130520" }, { "url": "http://public2.vulnerablecode.io/api/packages/237891?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.12.v20130726", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.12.v20130726" }, { "url": "http://public2.vulnerablecode.io/api/packages/237892?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.13.v20130916", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.13.v20130916" }, { "url": "http://public2.vulnerablecode.io/api/packages/237893?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.14.v20131031", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.14.v20131031" }, { "url": "http://public2.vulnerablecode.io/api/packages/237894?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.15.v20140411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.15.v20140411" }, { "url": "http://public2.vulnerablecode.io/api/packages/237895?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.16.v20140903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.16.v20140903" }, { "url": "http://public2.vulnerablecode.io/api/packages/237896?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.17.v20150415", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.17.v20150415" }, { "url": "http://public2.vulnerablecode.io/api/packages/237897?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.18.v20150929", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.18.v20150929" }, { "url": "http://public2.vulnerablecode.io/api/packages/237898?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.19.v20160209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.19.v20160209" }, { "url": "http://public2.vulnerablecode.io/api/packages/237899?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.20.v20160902", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.20.v20160902" }, { "url": "http://public2.vulnerablecode.io/api/packages/237900?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@7.6.21.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@7.6.21.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/237901?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237902?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237903?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237904?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.M3" }, { "url": "http://public2.vulnerablecode.io/api/packages/237905?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237906?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.v20110901", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.0.v20110901" }, { "url": "http://public2.vulnerablecode.io/api/packages/237907?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.1.v20110908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.1.v20110908" }, { "url": "http://public2.vulnerablecode.io/api/packages/237908?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.2.v20111006", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.2.v20111006" }, { "url": "http://public2.vulnerablecode.io/api/packages/237909?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.3.v20111011", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.3.v20111011" }, { "url": "http://public2.vulnerablecode.io/api/packages/237910?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.0.4.v20111024", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.0.4.v20111024" }, { "url": "http://public2.vulnerablecode.io/api/packages/237911?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237912?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237913?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237914?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC4" }, { "url": "http://public2.vulnerablecode.io/api/packages/237915?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.RC5" }, { "url": "http://public2.vulnerablecode.io/api/packages/237916?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.v20120127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.0.v20120127" }, { "url": "http://public2.vulnerablecode.io/api/packages/237917?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.1.v20120215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.1.v20120215" }, { "url": "http://public2.vulnerablecode.io/api/packages/237918?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.2.v20120308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.2.v20120308" }, { "url": "http://public2.vulnerablecode.io/api/packages/237919?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.3.v20120416", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.3.v20120416" }, { "url": "http://public2.vulnerablecode.io/api/packages/237920?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.4.v20120524", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.4.v20120524" }, { "url": "http://public2.vulnerablecode.io/api/packages/237921?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.5.v20120716", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.5.v20120716" }, { "url": "http://public2.vulnerablecode.io/api/packages/237922?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.6.v20120903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.6.v20120903" }, { "url": "http://public2.vulnerablecode.io/api/packages/237923?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.7.v20120910", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.7.v20120910" }, { "url": "http://public2.vulnerablecode.io/api/packages/237924?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.8.v20121106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.8.v20121106" }, { "url": "http://public2.vulnerablecode.io/api/packages/237925?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.9.v20130131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.9.v20130131" }, { "url": "http://public2.vulnerablecode.io/api/packages/237926?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.10.v20130312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.10.v20130312" }, { "url": "http://public2.vulnerablecode.io/api/packages/237927?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.11.v20130520", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.11.v20130520" }, { "url": "http://public2.vulnerablecode.io/api/packages/237928?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.12.v20130726", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.12.v20130726" }, { "url": "http://public2.vulnerablecode.io/api/packages/237929?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.13.v20130916", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.13.v20130916" }, { "url": "http://public2.vulnerablecode.io/api/packages/237930?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.14.v20131031", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.14.v20131031" }, { "url": "http://public2.vulnerablecode.io/api/packages/237931?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.15.v20140411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.15.v20140411" }, { "url": "http://public2.vulnerablecode.io/api/packages/237932?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.16.v20140903", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.16.v20140903" }, { "url": "http://public2.vulnerablecode.io/api/packages/237933?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415" }, { "url": "http://public2.vulnerablecode.io/api/packages/237934?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.18.v20150929", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.18.v20150929" }, { "url": "http://public2.vulnerablecode.io/api/packages/237935?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.19.v20160209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.19.v20160209" }, { "url": "http://public2.vulnerablecode.io/api/packages/237936?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.20.v20160902", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.20.v20160902" }, { "url": "http://public2.vulnerablecode.io/api/packages/237937?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.21.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.21.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/237938?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.22.v20160922", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.1.22.v20160922" }, { "url": "http://public2.vulnerablecode.io/api/packages/237939?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.2.0.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@8.2.0.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/237940?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237941?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237942?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237943?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M3" }, { "url": "http://public2.vulnerablecode.io/api/packages/237944?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M4" }, { "url": "http://public2.vulnerablecode.io/api/packages/237945?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.M5" }, { "url": "http://public2.vulnerablecode.io/api/packages/237946?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237947?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237948?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237949?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.v20130308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.0.v20130308" }, { "url": "http://public2.vulnerablecode.io/api/packages/237950?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.1.v20130408", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.1.v20130408" }, { "url": "http://public2.vulnerablecode.io/api/packages/237951?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.2.v20130417", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.2.v20130417" }, { "url": "http://public2.vulnerablecode.io/api/packages/237952?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.3.v20130506", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.3.v20130506" }, { "url": "http://public2.vulnerablecode.io/api/packages/237953?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.4.v20130625", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.4.v20130625" }, { "url": "http://public2.vulnerablecode.io/api/packages/237954?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.5.v20130815", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.5.v20130815" }, { "url": "http://public2.vulnerablecode.io/api/packages/237955?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.6.v20130930", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.6.v20130930" }, { "url": "http://public2.vulnerablecode.io/api/packages/237956?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.0.7.v20131107", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.0.7.v20131107" }, { "url": "http://public2.vulnerablecode.io/api/packages/237957?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237958?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237959?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237960?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/237961?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.v20131115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.0.v20131115" }, { "url": "http://public2.vulnerablecode.io/api/packages/237962?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.1.v20140108", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.1.v20140108" }, { "url": "http://public2.vulnerablecode.io/api/packages/237963?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.2.v20140210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.2.v20140210" }, { "url": "http://public2.vulnerablecode.io/api/packages/237964?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.3.v20140225", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.3.v20140225" }, { "url": "http://public2.vulnerablecode.io/api/packages/237965?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.4.v20140401", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.4.v20140401" }, { "url": "http://public2.vulnerablecode.io/api/packages/237966?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.5.v20140505", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.5.v20140505" }, { "url": "http://public2.vulnerablecode.io/api/packages/237967?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.1.6.v20160112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.1.6.v20160112" }, { "url": "http://public2.vulnerablecode.io/api/packages/237968?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237969?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/237970?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237971?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.v20140526", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.0.v20140526" }, { "url": "http://public2.vulnerablecode.io/api/packages/237972?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.1.v20140609", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.1.v20140609" }, { "url": "http://public2.vulnerablecode.io/api/packages/237973?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.2.v20140723", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.2.v20140723" }, { "url": "http://public2.vulnerablecode.io/api/packages/237974?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.3.v20140905", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.3.v20140905" }, { "url": "http://public2.vulnerablecode.io/api/packages/237975?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.4.v20141103", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.4.v20141103" }, { "url": "http://public2.vulnerablecode.io/api/packages/237976?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.5.v20141112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.5.v20141112" }, { "url": "http://public2.vulnerablecode.io/api/packages/237977?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.6.v20141205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.6.v20141205" }, { "url": "http://public2.vulnerablecode.io/api/packages/237978?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.7.v20150116", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.7.v20150116" }, { "url": "http://public2.vulnerablecode.io/api/packages/237979?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.8.v20150217", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.8.v20150217" }, { "url": "http://public2.vulnerablecode.io/api/packages/237980?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.9.v20150224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.9.v20150224" }, { "url": "http://public2.vulnerablecode.io/api/packages/237981?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.10.v20150310", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.10.v20150310" }, { "url": "http://public2.vulnerablecode.io/api/packages/237982?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.11.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.11.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237983?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.11.v20150529", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.11.v20150529" }, { "url": "http://public2.vulnerablecode.io/api/packages/237984?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.12.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.12.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/237985?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.12.v20150709", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.12.v20150709" }, { "url": "http://public2.vulnerablecode.io/api/packages/237986?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.13.v20150730", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.13.v20150730" }, { "url": "http://public2.vulnerablecode.io/api/packages/237987?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.14.v20151106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.14.v20151106" }, { "url": "http://public2.vulnerablecode.io/api/packages/237988?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.15.v20160210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.15.v20160210" }, { "url": "http://public2.vulnerablecode.io/api/packages/237989?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.16.v20160414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.16.v20160414" }, { "url": "http://public2.vulnerablecode.io/api/packages/237990?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.17.v20160517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.17.v20160517" }, { "url": "http://public2.vulnerablecode.io/api/packages/237991?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.18.v20160721", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.18.v20160721" }, { "url": "http://public2.vulnerablecode.io/api/packages/237992?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.19.v20160908", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.19.v20160908" }, { "url": "http://public2.vulnerablecode.io/api/packages/237993?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.20.v20161216", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.20.v20161216" }, { "url": "http://public2.vulnerablecode.io/api/packages/237994?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.21.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.21.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/237995?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.22.v20170606", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.22.v20170606" }, { "url": "http://public2.vulnerablecode.io/api/packages/237996?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.23.v20171218", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.23.v20171218" }, { "url": "http://public2.vulnerablecode.io/api/packages/237997?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.24.v20180105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.24.v20180105" }, { "url": "http://public2.vulnerablecode.io/api/packages/237998?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.25.v20180606", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.25.v20180606" }, { "url": "http://public2.vulnerablecode.io/api/packages/237999?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.26.v20180806", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.26.v20180806" }, { "url": "http://public2.vulnerablecode.io/api/packages/238000?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.27.v20190403", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.27.v20190403" }, { "url": "http://public2.vulnerablecode.io/api/packages/238001?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.28.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.28.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/238002?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.29.v20191105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.29.v20191105" }, { "url": "http://public2.vulnerablecode.io/api/packages/238003?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.30.v20200428", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.2.30.v20200428" }, { "url": "http://public2.vulnerablecode.io/api/packages/238004?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238005?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238006?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.M2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.M2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238007?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238008?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238009?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.v20150612", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.0.v20150612" }, { "url": "http://public2.vulnerablecode.io/api/packages/238010?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.1.v20150714", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.1.v20150714" }, { "url": "http://public2.vulnerablecode.io/api/packages/238011?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.2.v20150730", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.2.v20150730" }, { "url": "http://public2.vulnerablecode.io/api/packages/238012?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.3.v20150827", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.3.v20150827" }, { "url": "http://public2.vulnerablecode.io/api/packages/238013?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.4.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.4.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238014?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.4.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.4.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238015?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.4.v20151007", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.4.v20151007" }, { "url": "http://public2.vulnerablecode.io/api/packages/238016?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.5.v20151012", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.5.v20151012" }, { "url": "http://public2.vulnerablecode.io/api/packages/238017?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.6.v20151106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.6.v20151106" }, { "url": "http://public2.vulnerablecode.io/api/packages/238018?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.7.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.7.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238019?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.7.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.7.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238020?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.7.v20160115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.7.v20160115" }, { "url": "http://public2.vulnerablecode.io/api/packages/238021?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.8.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.8.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238022?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.8.v20160314", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.8.v20160314" }, { "url": "http://public2.vulnerablecode.io/api/packages/238023?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238024?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238025?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.v20160517", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.v20160517" }, { "url": "http://public2.vulnerablecode.io/api/packages/238026?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.10.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.10.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238027?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.10.v20160621", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.10.v20160621" }, { "url": "http://public2.vulnerablecode.io/api/packages/238028?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.11.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.11.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238029?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.11.v20160721", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.11.v20160721" }, { "url": "http://public2.vulnerablecode.io/api/packages/238030?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.12.v20160915", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.12.v20160915" }, { "url": "http://public2.vulnerablecode.io/api/packages/238031?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.13.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.13.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238032?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.13.v20161014", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.13.v20161014" }, { "url": "http://public2.vulnerablecode.io/api/packages/238033?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.14.v20161028", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.14.v20161028" }, { "url": "http://public2.vulnerablecode.io/api/packages/238034?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.15.v20161220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.15.v20161220" }, { "url": "http://public2.vulnerablecode.io/api/packages/238035?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.16.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.16.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/238036?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.17.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.17.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238037?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.17.v20170317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.17.v20170317" }, { "url": "http://public2.vulnerablecode.io/api/packages/238038?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.18.v20170406", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.18.v20170406" }, { "url": "http://public2.vulnerablecode.io/api/packages/238039?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.19.v20170502", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.19.v20170502" }, { "url": "http://public2.vulnerablecode.io/api/packages/238040?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.20.v20170531", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.20.v20170531" }, { "url": "http://public2.vulnerablecode.io/api/packages/238041?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.21.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.21.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238042?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.21.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.21.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238043?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.21.v20170918", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.21.v20170918" }, { "url": "http://public2.vulnerablecode.io/api/packages/238044?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.22.v20171030", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.22.v20171030" }, { "url": "http://public2.vulnerablecode.io/api/packages/238045?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.23.v20180228", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.23.v20180228" }, { "url": "http://public2.vulnerablecode.io/api/packages/238046?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.24.v20180605", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.24.v20180605" }, { "url": "http://public2.vulnerablecode.io/api/packages/238047?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.25.v20180904", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.25.v20180904" }, { "url": "http://public2.vulnerablecode.io/api/packages/238048?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.26.v20190403", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.26.v20190403" }, { "url": "http://public2.vulnerablecode.io/api/packages/238049?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.27.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.27.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/238050?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.28.v20191105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.28.v20191105" }, { "url": "http://public2.vulnerablecode.io/api/packages/238051?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.29.v20201019", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.29.v20201019" }, { "url": "http://public2.vulnerablecode.io/api/packages/238052?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.30.v20211001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.3.30.v20211001" }, { "url": "http://public2.vulnerablecode.io/api/packages/238053?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.M0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.M0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238054?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.M1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.M1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238055?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238056?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238057?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238058?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.RC3" }, { "url": "http://public2.vulnerablecode.io/api/packages/238059?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.v20161208", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.v20161208" }, { "url": "http://public2.vulnerablecode.io/api/packages/238060?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.0.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238061?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.1.v20170120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.1.v20170120" }, { "url": "http://public2.vulnerablecode.io/api/packages/238062?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.1.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.1.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238063?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20170220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20170220" }, { "url": "http://public2.vulnerablecode.io/api/packages/238064?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238065?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.3.v20170317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.3.v20170317" }, { "url": "http://public2.vulnerablecode.io/api/packages/238066?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.3.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.3.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238067?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.4.v20170414", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.4.v20170414" }, { "url": "http://public2.vulnerablecode.io/api/packages/238068?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.4.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.4.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238069?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20170502", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20170502" }, { "url": "http://public2.vulnerablecode.io/api/packages/238070?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238071?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20170531", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20170531" }, { "url": "http://public2.vulnerablecode.io/api/packages/238072?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238073?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.7.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.7.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238074?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.7.v20170914", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.7.v20170914" }, { "url": "http://public2.vulnerablecode.io/api/packages/238075?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.7.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.7.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238076?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.8.v20171121", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.8.v20171121" }, { "url": "http://public2.vulnerablecode.io/api/packages/238077?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.8.v20180619", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.8.v20180619" }, { "url": "http://public2.vulnerablecode.io/api/packages/238078?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.9.v20180320", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.9.v20180320" }, { "url": "http://public2.vulnerablecode.io/api/packages/238079?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.10.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.10.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238080?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.10.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.10.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238081?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.10.v20180503", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.10.v20180503" }, { "url": "http://public2.vulnerablecode.io/api/packages/238082?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.11.v20180605", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.11.v20180605" }, { "url": "http://public2.vulnerablecode.io/api/packages/238083?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.RC0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.RC0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238084?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.RC1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.RC1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238085?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.RC2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.RC2" }, { "url": "http://public2.vulnerablecode.io/api/packages/238086?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.v20180830", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.12.v20180830" }, { "url": "http://public2.vulnerablecode.io/api/packages/238087?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.13.v20181111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.13.v20181111" }, { "url": "http://public2.vulnerablecode.io/api/packages/238088?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.14.v20181114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.14.v20181114" }, { "url": "http://public2.vulnerablecode.io/api/packages/238089?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.15.v20190215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.15.v20190215" }, { "url": "http://public2.vulnerablecode.io/api/packages/238090?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.16.v20190411", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.16.v20190411" }, { "url": "http://public2.vulnerablecode.io/api/packages/238091?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.17.v20190418", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.17.v20190418" }, { "url": "http://public2.vulnerablecode.io/api/packages/238092?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.18.v20190429", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.18.v20190429" }, { "url": "http://public2.vulnerablecode.io/api/packages/238093?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.19.v20190610", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.19.v20190610" }, { "url": "http://public2.vulnerablecode.io/api/packages/238094?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.20.v20190813", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.20.v20190813" }, { "url": "http://public2.vulnerablecode.io/api/packages/238095?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.21.v20190926", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.21.v20190926" }, { "url": "http://public2.vulnerablecode.io/api/packages/238096?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.22.v20191022", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.22.v20191022" }, { "url": "http://public2.vulnerablecode.io/api/packages/238097?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.23.v20191118", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.23.v20191118" }, { "url": "http://public2.vulnerablecode.io/api/packages/238098?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.24.v20191120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.24.v20191120" }, { "url": "http://public2.vulnerablecode.io/api/packages/238099?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.25.v20191220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.25.v20191220" }, { "url": "http://public2.vulnerablecode.io/api/packages/238100?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.26.v20200117", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.26.v20200117" }, { "url": "http://public2.vulnerablecode.io/api/packages/238101?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.27.v20200227", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.27.v20200227" }, { "url": "http://public2.vulnerablecode.io/api/packages/238102?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.28.v20200408", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.28.v20200408" }, { "url": "http://public2.vulnerablecode.io/api/packages/238103?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.29.v20200521", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.29.v20200521" }, { "url": "http://public2.vulnerablecode.io/api/packages/238104?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.30.v20200611", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.30.v20200611" }, { "url": "http://public2.vulnerablecode.io/api/packages/238105?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.31.v20200723", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.31.v20200723" }, { "url": "http://public2.vulnerablecode.io/api/packages/238106?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.32.v20200930", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.32.v20200930" }, { "url": "http://public2.vulnerablecode.io/api/packages/238107?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.33.v20201020", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.33.v20201020" }, { "url": "http://public2.vulnerablecode.io/api/packages/238108?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.34.v20201102", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.34.v20201102" }, { "url": "http://public2.vulnerablecode.io/api/packages/238109?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.35.v20201120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.35.v20201120" }, { "url": "http://public2.vulnerablecode.io/api/packages/238110?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.36.v20210114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.36.v20210114" }, { "url": "http://public2.vulnerablecode.io/api/packages/238111?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.37.v20210219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.37.v20210219" }, { "url": "http://public2.vulnerablecode.io/api/packages/238112?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.38.v20210224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@9.4.38.v20210224" }, { "url": "http://public2.vulnerablecode.io/api/packages/238114?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@10.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238115?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/238117?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@11.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@11.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/238118?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-io@11.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-io@11.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/569468?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@7.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@7.2.2" }, { "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/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/222608?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.34.v20201102", "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.34.v20201102" }, { "url": "http://public2.vulnerablecode.io/api/packages/73035?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.35.v20201120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kx4x-gnk4-yugu" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.35.v20201120" }, { "url": "http://public2.vulnerablecode.io/api/packages/233423?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.36.v20210114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kx4x-gnk4-yugu" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.36.v20210114" }, { "url": "http://public2.vulnerablecode.io/api/packages/233424?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.37.v20210219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kx4x-gnk4-yugu" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-p7cu-h519-83hx" }, { "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.37.v20210219" }, { "url": "http://public2.vulnerablecode.io/api/packages/237850?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.38.v20210224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-kx4x-gnk4-yugu" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@9.4.38.v20210224" }, { "url": "http://public2.vulnerablecode.io/api/packages/57073?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-gq93-ctd4-aqbp" }, { "vulnerability": "VCID-h3wz-rdkt-7ue6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/75883?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-h3wz-rdkt-7ue6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/57074?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-gq93-ctd4-aqbp" }, { "vulnerability": "VCID-h3wz-rdkt-7ue6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-uuju-ey95-tyfq" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/75892?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-server@11.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9xw3-4a4u-hbbb" }, { "vulnerability": "VCID-h3wz-rdkt-7ue6" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" }, { "vulnerability": "VCID-q35p-8qhp-aqec" }, { "vulnerability": "VCID-q3k2-1x5q-buhy" }, { "vulnerability": "VCID-y3mv-vmwd-tydt" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-server@11.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/569459?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@7.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@7.2.2" }, { "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/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/233415?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.34.v20201102", "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.34.v20201102" }, { "url": "http://public2.vulnerablecode.io/api/packages/233416?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.35.v20201120", "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.35.v20201120" }, { "url": "http://public2.vulnerablecode.io/api/packages/233417?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.36.v20210114", "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.36.v20210114" }, { "url": "http://public2.vulnerablecode.io/api/packages/233418?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.37.v20210219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-p7cu-h519-83hx" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.37.v20210219" }, { "url": "http://public2.vulnerablecode.io/api/packages/237851?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.38.v20210224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@9.4.38.v20210224" }, { "url": "http://public2.vulnerablecode.io/api/packages/233419?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.0", "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@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233420?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/233421?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.0", "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@11.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/233422?format=api", "purl": "pkg:maven/org.eclipse.jetty/jetty-util@11.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.eclipse.jetty/jetty-util@11.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/569470?format=api", "purl": "pkg:maven/org.jenkins-ci.main/jenkins-core@2.277.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/org.jenkins-ci.main/jenkins-core@2.277.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/100663?format=api", "purl": "pkg:rpm/redhat/jenkins@2.277.3.1620393611-1?arch=el8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-9prj-5zwe-7kc5" }, { "vulnerability": "VCID-dkr2-9c7r-q3g9" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.277.3.1620393611-1%3Farch=el8" }, { "url": "http://public2.vulnerablecode.io/api/packages/100671?format=api", "purl": "pkg:rpm/redhat/rh-eclipse-jetty@9.4.40-1.1?arch=el7_9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-p7cu-h519-83hx" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/rh-eclipse-jetty@9.4.40-1.1%3Farch=el7_9" }, { "url": "http://public2.vulnerablecode.io/api/packages/100672?format=api", "purl": "pkg:rpm/redhat/runc@1.0.0-95.rhaos4.8.gitcd80260?arch=el7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-7ahs-f1qh-g7an" }, { "vulnerability": "VCID-kxtv-ma18-8fer" }, { "vulnerability": "VCID-ncjz-1n22-vuax" }, { "vulnerability": "VCID-prd3-mmuv-n3dc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@1.0.0-95.rhaos4.8.gitcd80260%3Farch=el7" } ], "references": [ { "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-28165.json", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-28165.json" }, { "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2021-28165", "reference_id": "", "reference_type": "", "scores": [ { "value": "0.11986", "scoring_system": "epss", "scoring_elements": "0.93797", "published_at": "2026-04-18T12:55:00Z" }, { "value": "0.11986", "scoring_system": "epss", "scoring_elements": "0.93792", "published_at": "2026-04-16T12:55:00Z" }, { "value": "0.11986", "scoring_system": "epss", "scoring_elements": "0.9377", "published_at": "2026-04-13T12:55:00Z" }, { "value": "0.1227", "scoring_system": "epss", "scoring_elements": "0.93836", "published_at": "2026-04-04T12:55:00Z" }, { "value": "0.1227", "scoring_system": "epss", "scoring_elements": "0.93818", "published_at": "2026-04-01T12:55:00Z" }, { "value": "0.1227", "scoring_system": "epss", "scoring_elements": "0.9385", "published_at": "2026-04-09T12:55:00Z" }, { "value": "0.1227", "scoring_system": "epss", "scoring_elements": "0.93847", "published_at": "2026-04-08T12:55:00Z" }, { "value": "0.1227", "scoring_system": "epss", "scoring_elements": "0.93838", "published_at": "2026-04-07T12:55:00Z" }, { "value": "0.1227", "scoring_system": "epss", "scoring_elements": "0.93827", "published_at": "2026-04-02T12:55:00Z" } ], "url": "https://api.first.org/data/v1/epss?cve=CVE-2021-28165" }, { "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://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], "url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml" }, { "reference_url": "https://github.com/eclipse/jetty.project", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/eclipse/jetty.project" }, { "reference_url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-26vr-8j45-3r4w", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://github.com/eclipse/jetty.project/security/advisories/GHSA-26vr-8j45-3r4w" }, { "reference_url": "https://lists.apache.org/thread.html/r002258611ed0c35b82b839d284b43db9dcdec120db8afc1c993137dc@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r002258611ed0c35b82b839d284b43db9dcdec120db8afc1c993137dc@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r03ca0b69db1e3e5f72fe484b71370d537cd711cbf334e2913332730a@%3Cissues.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r03ca0b69db1e3e5f72fe484b71370d537cd711cbf334e2913332730a@%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r05db8e0ef01e1280cc7543575ae0fa1c2b4d06a8b928916ef65dd2ad@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r05db8e0ef01e1280cc7543575ae0fa1c2b4d06a8b928916ef65dd2ad@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r06d54a297cb8217c66e5190912a955fb870ba47da164002bf2baffe5@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r06d54a297cb8217c66e5190912a955fb870ba47da164002bf2baffe5@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r077b76cafb61520c14c87c4fc76419ed664002da0ddac5ad851ae7e7@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r077b76cafb61520c14c87c4fc76419ed664002da0ddac5ad851ae7e7@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0841b06b48324cfc81325de3c05a92e53f997185f9d71ff47734d961@%3Cissues.solr.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r0841b06b48324cfc81325de3c05a92e53f997185f9d71ff47734d961@%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0a241b0649beef90d422b42a26a2470d336e59e66970eafd54f9c3e2@%3Ccommits.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r0a241b0649beef90d422b42a26a2470d336e59e66970eafd54f9c3e2@%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0a4797ba6ceea8074f47574a4f3cc11493d514c1fab8203ebd212add@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r0a4797ba6ceea8074f47574a4f3cc11493d514c1fab8203ebd212add@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0bf3aa065abd23960fc8bdc8090d6bc00d5e391cf94ec4e1f4537ae3@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r0bf3aa065abd23960fc8bdc8090d6bc00d5e391cf94ec4e1f4537ae3@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0cd1a5e3f4ad4770b44f8aa96572fc09d5b35bec149c0cc247579c42@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r0cd1a5e3f4ad4770b44f8aa96572fc09d5b35bec149c0cc247579c42@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0f02034a33076fd7243cf3a8807d2766e373f5cb2e7fd0c9a78f97c4@%3Cissues.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r0f02034a33076fd7243cf3a8807d2766e373f5cb2e7fd0c9a78f97c4@%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r111f1ce28b133a8090ca4f809a1bdf18a777426fc058dc3a16c39c66@%3Cissues.solr.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r111f1ce28b133a8090ca4f809a1bdf18a777426fc058dc3a16c39c66@%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r17e26cf9a1e3cbc09522d15ece5d7c7a00cdced7641b92a22a783287@%3Cissues.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r17e26cf9a1e3cbc09522d15ece5d7c7a00cdced7641b92a22a783287@%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r23785214d47673b811ef119ca3a40f729801865ea1e891572d15faa6@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r23785214d47673b811ef119ca3a40f729801865ea1e891572d15faa6@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r2afc72af069a7fe89ca2de847f3ab3971cb1d668a9497c999946cd78@%3Ccommits.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r2afc72af069a7fe89ca2de847f3ab3971cb1d668a9497c999946cd78@%3Ccommits.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r2ea2f0541121f17e470a0184843720046c59d4bde6d42bf5ca6fad81@%3Cissues.solr.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r2ea2f0541121f17e470a0184843720046c59d4bde6d42bf5ca6fad81@%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r2f2d9c3b7cc750a6763d6388bcf5db0c7b467bd8be6ac4d6aea4f0cf@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r2f2d9c3b7cc750a6763d6388bcf5db0c7b467bd8be6ac4d6aea4f0cf@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r31f591a0deac927ede8ccc3eac4bb92697ee2361bf01549f9e3440ca@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r31f591a0deac927ede8ccc3eac4bb92697ee2361bf01549f9e3440ca@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r33eb3889ca0aa12720355e64fc2f8f1e8c0c28a4d55b3b4b8891becb@%3Ccommits.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r33eb3889ca0aa12720355e64fc2f8f1e8c0c28a4d55b3b4b8891becb@%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r40136c2010fccf4fb2818a965e5d7ecca470e5f525c232ec5b8eb83a@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r40136c2010fccf4fb2818a965e5d7ecca470e5f525c232ec5b8eb83a@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r401b1c592f295b811608010a70792b11c91885b72af9f9410cffbe35@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r401b1c592f295b811608010a70792b11c91885b72af9f9410cffbe35@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r411d75dc6bcefadaaea246549dd18e8d391a880ddf28a796f09ce152@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r411d75dc6bcefadaaea246549dd18e8d391a880ddf28a796f09ce152@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r47a7542ab61da865fff3db0fe74bfe76c89a37b6e6d2c2a423f8baee@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r47a7542ab61da865fff3db0fe74bfe76c89a37b6e6d2c2a423f8baee@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4891d45625cc522fe0eb764ac50d48bcca9c0db4805ea4a998d4c225@%3Cissues.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r4891d45625cc522fe0eb764ac50d48bcca9c0db4805ea4a998d4c225@%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4a66bfbf62281e31bc1345ebecbfd96f35199eecd77bfe4e903e906f@%3Cissues.ignite.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r4a66bfbf62281e31bc1345ebecbfd96f35199eecd77bfe4e903e906f@%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4abbd760d24bab2b8f1294c5c9216ae915100099c4391ad64e9ae38b@%3Cdev.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r4abbd760d24bab2b8f1294c5c9216ae915100099c4391ad64e9ae38b@%3Cdev.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4b1fef117bccc7f5fd4c45fd2cabc26838df823fe5ca94bc42a4fd46@%3Cissues.ignite.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r4b1fef117bccc7f5fd4c45fd2cabc26838df823fe5ca94bc42a4fd46@%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r520c56519b8820955a86966f499e7a0afcbcf669d6f7da59ef1eb155@%3Ccommits.pulsar.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r520c56519b8820955a86966f499e7a0afcbcf669d6f7da59ef1eb155@%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r56e5568ac73daedcb3b5affbb4b908999f03d3c1b1ada3920b01e959@%3Cdev.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r56e5568ac73daedcb3b5affbb4b908999f03d3c1b1ada3920b01e959@%3Cdev.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r5b3693da7ecb8a75c0e930b4ca26a5f97aa0207d9dae4aa8cc65fe6b@%3Cissues.ignite.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r5b3693da7ecb8a75c0e930b4ca26a5f97aa0207d9dae4aa8cc65fe6b@%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r5d1f16dca2e010193840068f1a1ec17b7015e91acc646607cbc0a4da@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r5d1f16dca2e010193840068f1a1ec17b7015e91acc646607cbc0a4da@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r5f172f2dd8fb02f032ef4437218fd4f610605a3dd4f2a024c1e43b94@%3Cissues.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r5f172f2dd8fb02f032ef4437218fd4f610605a3dd4f2a024c1e43b94@%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r64ff94118f6c80e6c085c6e2d51bbb490eaefad0642db8c936e4f0b7@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r64ff94118f6c80e6c085c6e2d51bbb490eaefad0642db8c936e4f0b7@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6535b2beddf0ed2d263ab64ff365a5f790df135a1a2f45786417adb7@%3Cdev.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r6535b2beddf0ed2d263ab64ff365a5f790df135a1a2f45786417adb7@%3Cdev.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r65daad30d13f7c56eb5c3d7733ad8dddbf62c469175410777a78d812@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r65daad30d13f7c56eb5c3d7733ad8dddbf62c469175410777a78d812@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r694e57d74fcaa48818a03c282aecfa13ae68340c798dfcb55cb7acc7@%3Cdev.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r694e57d74fcaa48818a03c282aecfa13ae68340c798dfcb55cb7acc7@%3Cdev.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6ac9e263129328c0db9940d72b4a6062e703c58918dd34bd22cdf8dd@%3Cissues.ignite.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r6ac9e263129328c0db9940d72b4a6062e703c58918dd34bd22cdf8dd@%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6b070441871a4e6ce8bb63e190c879bb60da7c5e15023de29ebd4f9f@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r6b070441871a4e6ce8bb63e190c879bb60da7c5e15023de29ebd4f9f@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6ce2907b2691c025250ba010bc797677ef78d5994d08507a2e5477c9@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r6ce2907b2691c025250ba010bc797677ef78d5994d08507a2e5477c9@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6f256a1d15505f79f4050a69bb8f27b34cb353604dd2f765c9da5df7@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r6f256a1d15505f79f4050a69bb8f27b34cb353604dd2f765c9da5df7@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r71031d0acb1de55c9ab32f4750c50ce2f28543252e887ca03bd5621e@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r71031d0acb1de55c9ab32f4750c50ce2f28543252e887ca03bd5621e@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r7189bf41cb0c483629917a01cf296f9fbdbda3987084595192e3845d@%3Cissues.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r7189bf41cb0c483629917a01cf296f9fbdbda3987084595192e3845d@%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r72bf813ed4737196ea3ed26494e949577be587fd5939fe8be09907c7@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r72bf813ed4737196ea3ed26494e949577be587fd5939fe8be09907c7@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r746434be6abff9ad321ff54ecae09e1f09c1c7c139021f40a5774090@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r746434be6abff9ad321ff54ecae09e1f09c1c7c139021f40a5774090@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r769155244ca2da2948a44091bb3bb9a56e7e1c71ecc720b8ecf281f0@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r769155244ca2da2948a44091bb3bb9a56e7e1c71ecc720b8ecf281f0@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r780c3c210a05c5bf7b4671303f46afc3fe56758e92864e1a5f0590d0@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r780c3c210a05c5bf7b4671303f46afc3fe56758e92864e1a5f0590d0@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r7bf7004c18c914fae3d5a6a0191d477e5b6408d95669b3afbf6efa36@%3Ccommits.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r7bf7004c18c914fae3d5a6a0191d477e5b6408d95669b3afbf6efa36@%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r7c40fb3a66a39b6e6c83b0454bc6917ffe6c69e3131322be9c07a1da@%3Cissues.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r7c40fb3a66a39b6e6c83b0454bc6917ffe6c69e3131322be9c07a1da@%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r81748d56923882543f5be456043c67daef84d631cf54899082058ef1@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r81748d56923882543f5be456043c67daef84d631cf54899082058ef1@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r83453ec252af729996476e5839d0b28f07294959d60fea1bd76f7d81@%3Cissues.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r83453ec252af729996476e5839d0b28f07294959d60fea1bd76f7d81@%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r90327f55db8f1d079f9a724aabf1f5eb3c00c1de49dc7fd04cad1ebc@%3Ccommits.pulsar.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r90327f55db8f1d079f9a724aabf1f5eb3c00c1de49dc7fd04cad1ebc@%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r940f15db77a96f6aea92d830bc94d8d95f26cc593394d144755824da@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r940f15db77a96f6aea92d830bc94d8d95f26cc593394d144755824da@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r942f4a903d0abb25ac75c592e57df98dea51350e8589269a72fd7913@%3Cissues.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r942f4a903d0abb25ac75c592e57df98dea51350e8589269a72fd7913@%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9974f64723875052e02787b2a5eda689ac5247c71b827d455e5dc9a6@%3Cissues.solr.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r9974f64723875052e02787b2a5eda689ac5247c71b827d455e5dc9a6@%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9b793db9f395b546e66fb9c44fe1cd75c7755029e944dfee31b8b779@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r9b793db9f395b546e66fb9c44fe1cd75c7755029e944dfee31b8b779@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9db72e9c33b93eba45a214af588f1d553839b5c3080fc913854a49ab@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r9db72e9c33b93eba45a214af588f1d553839b5c3080fc913854a49ab@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9fae5a4087d9ed1c9d4f0c7493b6981a4741cfb4bebb2416da638424@%3Cissues.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/r9fae5a4087d9ed1c9d4f0c7493b6981a4741cfb4bebb2416da638424@%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra210e38ae0bf615084390b26ba01bb5d66c0a76f232277446ae0948a@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/ra210e38ae0bf615084390b26ba01bb5d66c0a76f232277446ae0948a@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra21b3e6bd9669377139fe33fb46edf6fece3f31375bc42a0dcc964b2@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/ra21b3e6bd9669377139fe33fb46edf6fece3f31375bc42a0dcc964b2@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra50519652b0b7f869a14fbfb4be9758a29171d7fe561bb7e036e8449@%3Cissues.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/ra50519652b0b7f869a14fbfb4be9758a29171d7fe561bb7e036e8449@%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra9dd15ba8a4fb7e42c7fe948a6d6b3868fd6bbf8e3fb37fcf33b2cd0@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/ra9dd15ba8a4fb7e42c7fe948a6d6b3868fd6bbf8e3fb37fcf33b2cd0@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rae8bbc5a516f3e21b8a55e61ff6ad0ced03bdbd116d2170a3eed9f5c@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rae8bbc5a516f3e21b8a55e61ff6ad0ced03bdbd116d2170a3eed9f5c@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/raea6e820644e8c5a577f77d4e2044f8ab52183c2536b00c56738beef@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/raea6e820644e8c5a577f77d4e2044f8ab52183c2536b00c56738beef@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb00345f6b1620b553d2cc1acaf3017aa75cea3776b911e024fa3b187@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rb00345f6b1620b553d2cc1acaf3017aa75cea3776b911e024fa3b187@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb11a13e623218c70b9f2a2d0d122fdaaf905e04a2edcd23761894464@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rb11a13e623218c70b9f2a2d0d122fdaaf905e04a2edcd23761894464@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb1624b9777a3070135e94331a428c6653a6a1edccd56fa9fb7a547f2@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rb1624b9777a3070135e94331a428c6653a6a1edccd56fa9fb7a547f2@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb2d34abb67cdf525945fe4b821c5cdbca29a78d586ae1f9f505a311c@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rb2d34abb67cdf525945fe4b821c5cdbca29a78d586ae1f9f505a311c@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb66ed0b4bb74836add60dd5ddf9172016380b2aeefb7f96fe348537b@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rb66ed0b4bb74836add60dd5ddf9172016380b2aeefb7f96fe348537b@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb8f5a6ded384eb00608e6137e87110e7dd7d5054cc34561cb89b81af@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rb8f5a6ded384eb00608e6137e87110e7dd7d5054cc34561cb89b81af@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbab9e67ec97591d063905bc7d4743e6a673f1bc457975fc0445ac97f@%3Cissues.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rbab9e67ec97591d063905bc7d4743e6a673f1bc457975fc0445ac97f@%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbba0b02a3287e34af328070dd58f7828612f96e2e64992137f4dc63d@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rbba0b02a3287e34af328070dd58f7828612f96e2e64992137f4dc63d@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbc075a4ac85e7a8e47420b7383f16ffa0af3b792b8423584735f369f@%3Cissues.solr.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rbc075a4ac85e7a8e47420b7383f16ffa0af3b792b8423584735f369f@%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbcd7b477df55857bb6cae21fcc4404683ac98aac1a47551f0dc55486@%3Cissues.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rbcd7b477df55857bb6cae21fcc4404683ac98aac1a47551f0dc55486@%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbd9a837a18ca57ac0d9b4165a6eec95ee132f55d025666fe41099f33@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rbd9a837a18ca57ac0d9b4165a6eec95ee132f55d025666fe41099f33@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc4779abc1cface47e956cf9f8910f15d79c24477e7b1ac9be076a825@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rc4779abc1cface47e956cf9f8910f15d79c24477e7b1ac9be076a825@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc4dbc9907b0bdd634200ac90a15283d9c143c11af66e7ec72128d020@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rc4dbc9907b0bdd634200ac90a15283d9c143c11af66e7ec72128d020@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc6c43c3180c0efe00497c73dd374cd34b62036cb67987ad42c1f2dce@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rc6c43c3180c0efe00497c73dd374cd34b62036cb67987ad42c1f2dce@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc907ed7b089828364437de5ed57fa062330970dc1bc5cd214b711f77@%3Ccommits.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rc907ed7b089828364437de5ed57fa062330970dc1bc5cd214b711f77@%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rcdea97f4d3233298296aabc103c9fcefbf629425418c2b69bb16745f@%3Ccommits.pulsar.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rcdea97f4d3233298296aabc103c9fcefbf629425418c2b69bb16745f@%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd0471252aeb3384c3cfa6d131374646d4641b80dd313e7b476c47a9c@%3Cissues.solr.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rd0471252aeb3384c3cfa6d131374646d4641b80dd313e7b476c47a9c@%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd24d8a059233167b4a5aebda4b3534ca1d86caa8a85b10a73403ee97@%3Ccommits.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rd24d8a059233167b4a5aebda4b3534ca1d86caa8a85b10a73403ee97@%3Ccommits.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd6c1eb9a8a94b3ac8a525d74d792924e8469f201b77e1afcf774e7a6@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rd6c1eb9a8a94b3ac8a525d74d792924e8469f201b77e1afcf774e7a6@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd755dfe5f658c42704540ad7950cebd136739089c3231658e398cf38@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rd755dfe5f658c42704540ad7950cebd136739089c3231658e398cf38@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd7c8fb305a8637480dc943ba08424c8992dccad018cd1405eb2afe0e@%3Cdev.ignite.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rd7c8fb305a8637480dc943ba08424c8992dccad018cd1405eb2afe0e@%3Cdev.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd9ea411a58925cc82c32e15f541ead23cb25b4b2d57a2bdb0341536e@%3Cjira.kafka.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rd9ea411a58925cc82c32e15f541ead23cb25b4b2d57a2bdb0341536e@%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdbf2a2cd1800540ae50dd78b57411229223a6172117d62b8e57596aa@%3Cissues.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rdbf2a2cd1800540ae50dd78b57411229223a6172117d62b8e57596aa@%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdde34d53aa80193cda016272d61e6749f8a9044ccb37a30768938f7e@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rdde34d53aa80193cda016272d61e6749f8a9044ccb37a30768938f7e@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdf4fe435891e8c35e70ea5da033b4c3da78760f15a8c4212fad89d9f@%3Ccommits.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rdf4fe435891e8c35e70ea5da033b4c3da78760f15a8c4212fad89d9f@%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdfe5f1c071ba9dadba18d7fb0ff13ea6ecb33da624250c559999eaeb@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rdfe5f1c071ba9dadba18d7fb0ff13ea6ecb33da624250c559999eaeb@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re0545ecced2d468c94ce4dcfa37d40a9573cc68ef5f6839ffca9c1c1@%3Ccommits.hbase.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/re0545ecced2d468c94ce4dcfa37d40a9573cc68ef5f6839ffca9c1c1@%3Ccommits.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re3a1617d16a7367f767b8209b2151f4c19958196354b39568c532f26@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/re3a1617d16a7367f767b8209b2151f4c19958196354b39568c532f26@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re577736ca7da51952c910b345a500b7676ea9931c9b19709b87f292b@%3Cissues.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/re577736ca7da51952c910b345a500b7676ea9931c9b19709b87f292b@%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re6614b4fe7dbb945409daadb9e1cc73c02383df68bf9334736107a6e@%3Cdev.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/re6614b4fe7dbb945409daadb9e1cc73c02383df68bf9334736107a6e@%3Cdev.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ree1895a256a9db951e0d97a76222909c2e1f28c1a3d89933173deed6@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/ree1895a256a9db951e0d97a76222909c2e1f28c1a3d89933173deed6@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rf1b02dfccd27b8bbc3afd119b212452fa32e9ed7d506be9357a3a7ec@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rf1b02dfccd27b8bbc3afd119b212452fa32e9ed7d506be9357a3a7ec@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rf6de4c249bd74007f5f66f683c110535f46e719d2f83a41e8faf295f@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rf6de4c249bd74007f5f66f683c110535f46e719d2f83a41e8faf295f@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rf99f9a25ca24fe519c9346388f61b5b3a09be31b800bf37f01473ad7@%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rf99f9a25ca24fe519c9346388f61b5b3a09be31b800bf37f01473ad7@%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rfc9f51b4e21022b3cd6cb6f90791a6a6999560212e519b5f09db0aed@%3Ccommits.pulsar.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rfc9f51b4e21022b3cd6cb6f90791a6a6999560212e519b5f09db0aed@%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rfd3ff6e66b6bbcfb2fefa9f5a20328937c0369b2e142e3e1c6774743@%3Creviews.spark.apache.org%3E", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://lists.apache.org/thread.html/rfd3ff6e66b6bbcfb2fefa9f5a20328937c0369b2e142e3e1c6774743@%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2021-28165", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-28165" }, { "reference_url": "https://security.netapp.com/advisory/ntap-20210611-0006", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://security.netapp.com/advisory/ntap-20210611-0006" }, { "reference_url": "https://security.netapp.com/advisory/ntap-20210611-0006/", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://security.netapp.com/advisory/ntap-20210611-0006/" }, { "reference_url": "https://www.debian.org/security/2021/dsa-4949", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://www.debian.org/security/2021/dsa-4949" }, { "reference_url": "https://www.oracle.com/security-alerts/cpuapr2022.html", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://www.oracle.com/security-alerts/cpuapr2022.html" }, { "reference_url": "https://www.oracle.com/security-alerts/cpujan2022.html", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "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.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "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.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "reference_url": "http://www.openwall.com/lists/oss-security/2021/04/20/3", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "http://www.openwall.com/lists/oss-security/2021/04/20/3" }, { "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=1945714", "reference_id": "1945714", "reference_type": "", "scores": [], "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1945714" }, { "reference_url": "https://security.archlinux.org/AVG-1841", "reference_id": "AVG-1841", "reference_type": "", "scores": [ { "value": "High", "scoring_system": "archlinux", "scoring_elements": "" } ], "url": "https://security.archlinux.org/AVG-1841" }, { "reference_url": "https://github.com/advisories/GHSA-26vr-8j45-3r4w", "reference_id": "GHSA-26vr-8j45-3r4w", "reference_type": "", "scores": [ { "value": "HIGH", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" } ], "url": "https://github.com/advisories/GHSA-26vr-8j45-3r4w" }, { "reference_url": "https://lists.apache.org/thread.html/r002258611ed0c35b82b839d284b43db9dcdec120db8afc1c993137dc%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "r002258611ed0c35b82b839d284b43db9dcdec120db8afc1c993137dc%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r002258611ed0c35b82b839d284b43db9dcdec120db8afc1c993137dc%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r03ca0b69db1e3e5f72fe484b71370d537cd711cbf334e2913332730a%40%3Cissues.spark.apache.org%3E", "reference_id": "r03ca0b69db1e3e5f72fe484b71370d537cd711cbf334e2913332730a%40%3Cissues.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r03ca0b69db1e3e5f72fe484b71370d537cd711cbf334e2913332730a%40%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r05db8e0ef01e1280cc7543575ae0fa1c2b4d06a8b928916ef65dd2ad%40%3Creviews.spark.apache.org%3E", "reference_id": "r05db8e0ef01e1280cc7543575ae0fa1c2b4d06a8b928916ef65dd2ad%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r05db8e0ef01e1280cc7543575ae0fa1c2b4d06a8b928916ef65dd2ad%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r06d54a297cb8217c66e5190912a955fb870ba47da164002bf2baffe5%40%3Creviews.spark.apache.org%3E", "reference_id": "r06d54a297cb8217c66e5190912a955fb870ba47da164002bf2baffe5%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r06d54a297cb8217c66e5190912a955fb870ba47da164002bf2baffe5%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r077b76cafb61520c14c87c4fc76419ed664002da0ddac5ad851ae7e7%40%3Cjira.kafka.apache.org%3E", "reference_id": "r077b76cafb61520c14c87c4fc76419ed664002da0ddac5ad851ae7e7%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r077b76cafb61520c14c87c4fc76419ed664002da0ddac5ad851ae7e7%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0841b06b48324cfc81325de3c05a92e53f997185f9d71ff47734d961%40%3Cissues.solr.apache.org%3E", "reference_id": "r0841b06b48324cfc81325de3c05a92e53f997185f9d71ff47734d961%40%3Cissues.solr.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r0841b06b48324cfc81325de3c05a92e53f997185f9d71ff47734d961%40%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0a241b0649beef90d422b42a26a2470d336e59e66970eafd54f9c3e2%40%3Ccommits.zookeeper.apache.org%3E", "reference_id": "r0a241b0649beef90d422b42a26a2470d336e59e66970eafd54f9c3e2%40%3Ccommits.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r0a241b0649beef90d422b42a26a2470d336e59e66970eafd54f9c3e2%40%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0a4797ba6ceea8074f47574a4f3cc11493d514c1fab8203ebd212add%40%3Creviews.spark.apache.org%3E", "reference_id": "r0a4797ba6ceea8074f47574a4f3cc11493d514c1fab8203ebd212add%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r0a4797ba6ceea8074f47574a4f3cc11493d514c1fab8203ebd212add%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0bf3aa065abd23960fc8bdc8090d6bc00d5e391cf94ec4e1f4537ae3%40%3Cjira.kafka.apache.org%3E", "reference_id": "r0bf3aa065abd23960fc8bdc8090d6bc00d5e391cf94ec4e1f4537ae3%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r0bf3aa065abd23960fc8bdc8090d6bc00d5e391cf94ec4e1f4537ae3%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0cd1a5e3f4ad4770b44f8aa96572fc09d5b35bec149c0cc247579c42%40%3Creviews.spark.apache.org%3E", "reference_id": "r0cd1a5e3f4ad4770b44f8aa96572fc09d5b35bec149c0cc247579c42%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r0cd1a5e3f4ad4770b44f8aa96572fc09d5b35bec149c0cc247579c42%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r0f02034a33076fd7243cf3a8807d2766e373f5cb2e7fd0c9a78f97c4%40%3Cissues.hbase.apache.org%3E", "reference_id": "r0f02034a33076fd7243cf3a8807d2766e373f5cb2e7fd0c9a78f97c4%40%3Cissues.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r0f02034a33076fd7243cf3a8807d2766e373f5cb2e7fd0c9a78f97c4%40%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r111f1ce28b133a8090ca4f809a1bdf18a777426fc058dc3a16c39c66%40%3Cissues.solr.apache.org%3E", "reference_id": "r111f1ce28b133a8090ca4f809a1bdf18a777426fc058dc3a16c39c66%40%3Cissues.solr.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r111f1ce28b133a8090ca4f809a1bdf18a777426fc058dc3a16c39c66%40%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r17e26cf9a1e3cbc09522d15ece5d7c7a00cdced7641b92a22a783287%40%3Cissues.zookeeper.apache.org%3E", "reference_id": "r17e26cf9a1e3cbc09522d15ece5d7c7a00cdced7641b92a22a783287%40%3Cissues.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r17e26cf9a1e3cbc09522d15ece5d7c7a00cdced7641b92a22a783287%40%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r23785214d47673b811ef119ca3a40f729801865ea1e891572d15faa6%40%3Creviews.spark.apache.org%3E", "reference_id": "r23785214d47673b811ef119ca3a40f729801865ea1e891572d15faa6%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r23785214d47673b811ef119ca3a40f729801865ea1e891572d15faa6%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r2afc72af069a7fe89ca2de847f3ab3971cb1d668a9497c999946cd78%40%3Ccommits.spark.apache.org%3E", "reference_id": "r2afc72af069a7fe89ca2de847f3ab3971cb1d668a9497c999946cd78%40%3Ccommits.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r2afc72af069a7fe89ca2de847f3ab3971cb1d668a9497c999946cd78%40%3Ccommits.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r2ea2f0541121f17e470a0184843720046c59d4bde6d42bf5ca6fad81%40%3Cissues.solr.apache.org%3E", "reference_id": "r2ea2f0541121f17e470a0184843720046c59d4bde6d42bf5ca6fad81%40%3Cissues.solr.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r2ea2f0541121f17e470a0184843720046c59d4bde6d42bf5ca6fad81%40%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r2f2d9c3b7cc750a6763d6388bcf5db0c7b467bd8be6ac4d6aea4f0cf%40%3Creviews.spark.apache.org%3E", "reference_id": "r2f2d9c3b7cc750a6763d6388bcf5db0c7b467bd8be6ac4d6aea4f0cf%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r2f2d9c3b7cc750a6763d6388bcf5db0c7b467bd8be6ac4d6aea4f0cf%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r31f591a0deac927ede8ccc3eac4bb92697ee2361bf01549f9e3440ca%40%3Creviews.spark.apache.org%3E", "reference_id": "r31f591a0deac927ede8ccc3eac4bb92697ee2361bf01549f9e3440ca%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r31f591a0deac927ede8ccc3eac4bb92697ee2361bf01549f9e3440ca%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r33eb3889ca0aa12720355e64fc2f8f1e8c0c28a4d55b3b4b8891becb%40%3Ccommits.zookeeper.apache.org%3E", "reference_id": "r33eb3889ca0aa12720355e64fc2f8f1e8c0c28a4d55b3b4b8891becb%40%3Ccommits.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r33eb3889ca0aa12720355e64fc2f8f1e8c0c28a4d55b3b4b8891becb%40%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r40136c2010fccf4fb2818a965e5d7ecca470e5f525c232ec5b8eb83a%40%3Cjira.kafka.apache.org%3E", "reference_id": "r40136c2010fccf4fb2818a965e5d7ecca470e5f525c232ec5b8eb83a%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r40136c2010fccf4fb2818a965e5d7ecca470e5f525c232ec5b8eb83a%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r401b1c592f295b811608010a70792b11c91885b72af9f9410cffbe35%40%3Creviews.spark.apache.org%3E", "reference_id": "r401b1c592f295b811608010a70792b11c91885b72af9f9410cffbe35%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r401b1c592f295b811608010a70792b11c91885b72af9f9410cffbe35%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r411d75dc6bcefadaaea246549dd18e8d391a880ddf28a796f09ce152%40%3Creviews.spark.apache.org%3E", "reference_id": "r411d75dc6bcefadaaea246549dd18e8d391a880ddf28a796f09ce152%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r411d75dc6bcefadaaea246549dd18e8d391a880ddf28a796f09ce152%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r47a7542ab61da865fff3db0fe74bfe76c89a37b6e6d2c2a423f8baee%40%3Creviews.spark.apache.org%3E", "reference_id": "r47a7542ab61da865fff3db0fe74bfe76c89a37b6e6d2c2a423f8baee%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r47a7542ab61da865fff3db0fe74bfe76c89a37b6e6d2c2a423f8baee%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4891d45625cc522fe0eb764ac50d48bcca9c0db4805ea4a998d4c225%40%3Cissues.hbase.apache.org%3E", "reference_id": "r4891d45625cc522fe0eb764ac50d48bcca9c0db4805ea4a998d4c225%40%3Cissues.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r4891d45625cc522fe0eb764ac50d48bcca9c0db4805ea4a998d4c225%40%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4a66bfbf62281e31bc1345ebecbfd96f35199eecd77bfe4e903e906f%40%3Cissues.ignite.apache.org%3E", "reference_id": "r4a66bfbf62281e31bc1345ebecbfd96f35199eecd77bfe4e903e906f%40%3Cissues.ignite.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r4a66bfbf62281e31bc1345ebecbfd96f35199eecd77bfe4e903e906f%40%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4abbd760d24bab2b8f1294c5c9216ae915100099c4391ad64e9ae38b%40%3Cdev.hbase.apache.org%3E", "reference_id": "r4abbd760d24bab2b8f1294c5c9216ae915100099c4391ad64e9ae38b%40%3Cdev.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r4abbd760d24bab2b8f1294c5c9216ae915100099c4391ad64e9ae38b%40%3Cdev.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r4b1fef117bccc7f5fd4c45fd2cabc26838df823fe5ca94bc42a4fd46%40%3Cissues.ignite.apache.org%3E", "reference_id": "r4b1fef117bccc7f5fd4c45fd2cabc26838df823fe5ca94bc42a4fd46%40%3Cissues.ignite.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r4b1fef117bccc7f5fd4c45fd2cabc26838df823fe5ca94bc42a4fd46%40%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r520c56519b8820955a86966f499e7a0afcbcf669d6f7da59ef1eb155%40%3Ccommits.pulsar.apache.org%3E", "reference_id": "r520c56519b8820955a86966f499e7a0afcbcf669d6f7da59ef1eb155%40%3Ccommits.pulsar.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r520c56519b8820955a86966f499e7a0afcbcf669d6f7da59ef1eb155%40%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r56e5568ac73daedcb3b5affbb4b908999f03d3c1b1ada3920b01e959%40%3Cdev.zookeeper.apache.org%3E", "reference_id": "r56e5568ac73daedcb3b5affbb4b908999f03d3c1b1ada3920b01e959%40%3Cdev.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r56e5568ac73daedcb3b5affbb4b908999f03d3c1b1ada3920b01e959%40%3Cdev.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r5b3693da7ecb8a75c0e930b4ca26a5f97aa0207d9dae4aa8cc65fe6b%40%3Cissues.ignite.apache.org%3E", "reference_id": "r5b3693da7ecb8a75c0e930b4ca26a5f97aa0207d9dae4aa8cc65fe6b%40%3Cissues.ignite.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r5b3693da7ecb8a75c0e930b4ca26a5f97aa0207d9dae4aa8cc65fe6b%40%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r5d1f16dca2e010193840068f1a1ec17b7015e91acc646607cbc0a4da%40%3Creviews.spark.apache.org%3E", "reference_id": "r5d1f16dca2e010193840068f1a1ec17b7015e91acc646607cbc0a4da%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r5d1f16dca2e010193840068f1a1ec17b7015e91acc646607cbc0a4da%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r5f172f2dd8fb02f032ef4437218fd4f610605a3dd4f2a024c1e43b94%40%3Cissues.zookeeper.apache.org%3E", "reference_id": "r5f172f2dd8fb02f032ef4437218fd4f610605a3dd4f2a024c1e43b94%40%3Cissues.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r5f172f2dd8fb02f032ef4437218fd4f610605a3dd4f2a024c1e43b94%40%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r64ff94118f6c80e6c085c6e2d51bbb490eaefad0642db8c936e4f0b7%40%3Creviews.spark.apache.org%3E", "reference_id": "r64ff94118f6c80e6c085c6e2d51bbb490eaefad0642db8c936e4f0b7%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r64ff94118f6c80e6c085c6e2d51bbb490eaefad0642db8c936e4f0b7%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6535b2beddf0ed2d263ab64ff365a5f790df135a1a2f45786417adb7%40%3Cdev.kafka.apache.org%3E", "reference_id": "r6535b2beddf0ed2d263ab64ff365a5f790df135a1a2f45786417adb7%40%3Cdev.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r6535b2beddf0ed2d263ab64ff365a5f790df135a1a2f45786417adb7%40%3Cdev.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r65daad30d13f7c56eb5c3d7733ad8dddbf62c469175410777a78d812%40%3Cjira.kafka.apache.org%3E", "reference_id": "r65daad30d13f7c56eb5c3d7733ad8dddbf62c469175410777a78d812%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r65daad30d13f7c56eb5c3d7733ad8dddbf62c469175410777a78d812%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r694e57d74fcaa48818a03c282aecfa13ae68340c798dfcb55cb7acc7%40%3Cdev.kafka.apache.org%3E", "reference_id": "r694e57d74fcaa48818a03c282aecfa13ae68340c798dfcb55cb7acc7%40%3Cdev.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r694e57d74fcaa48818a03c282aecfa13ae68340c798dfcb55cb7acc7%40%3Cdev.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6ac9e263129328c0db9940d72b4a6062e703c58918dd34bd22cdf8dd%40%3Cissues.ignite.apache.org%3E", "reference_id": "r6ac9e263129328c0db9940d72b4a6062e703c58918dd34bd22cdf8dd%40%3Cissues.ignite.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r6ac9e263129328c0db9940d72b4a6062e703c58918dd34bd22cdf8dd%40%3Cissues.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6b070441871a4e6ce8bb63e190c879bb60da7c5e15023de29ebd4f9f%40%3Cjira.kafka.apache.org%3E", "reference_id": "r6b070441871a4e6ce8bb63e190c879bb60da7c5e15023de29ebd4f9f%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r6b070441871a4e6ce8bb63e190c879bb60da7c5e15023de29ebd4f9f%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6ce2907b2691c025250ba010bc797677ef78d5994d08507a2e5477c9%40%3Creviews.spark.apache.org%3E", "reference_id": "r6ce2907b2691c025250ba010bc797677ef78d5994d08507a2e5477c9%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r6ce2907b2691c025250ba010bc797677ef78d5994d08507a2e5477c9%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r6f256a1d15505f79f4050a69bb8f27b34cb353604dd2f765c9da5df7%40%3Cjira.kafka.apache.org%3E", "reference_id": "r6f256a1d15505f79f4050a69bb8f27b34cb353604dd2f765c9da5df7%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r6f256a1d15505f79f4050a69bb8f27b34cb353604dd2f765c9da5df7%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r71031d0acb1de55c9ab32f4750c50ce2f28543252e887ca03bd5621e%40%3Creviews.spark.apache.org%3E", "reference_id": "r71031d0acb1de55c9ab32f4750c50ce2f28543252e887ca03bd5621e%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r71031d0acb1de55c9ab32f4750c50ce2f28543252e887ca03bd5621e%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r7189bf41cb0c483629917a01cf296f9fbdbda3987084595192e3845d%40%3Cissues.hbase.apache.org%3E", "reference_id": "r7189bf41cb0c483629917a01cf296f9fbdbda3987084595192e3845d%40%3Cissues.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r7189bf41cb0c483629917a01cf296f9fbdbda3987084595192e3845d%40%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r72bf813ed4737196ea3ed26494e949577be587fd5939fe8be09907c7%40%3Creviews.spark.apache.org%3E", "reference_id": "r72bf813ed4737196ea3ed26494e949577be587fd5939fe8be09907c7%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r72bf813ed4737196ea3ed26494e949577be587fd5939fe8be09907c7%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r746434be6abff9ad321ff54ecae09e1f09c1c7c139021f40a5774090%40%3Creviews.spark.apache.org%3E", "reference_id": "r746434be6abff9ad321ff54ecae09e1f09c1c7c139021f40a5774090%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r746434be6abff9ad321ff54ecae09e1f09c1c7c139021f40a5774090%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r769155244ca2da2948a44091bb3bb9a56e7e1c71ecc720b8ecf281f0%40%3Creviews.spark.apache.org%3E", "reference_id": "r769155244ca2da2948a44091bb3bb9a56e7e1c71ecc720b8ecf281f0%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r769155244ca2da2948a44091bb3bb9a56e7e1c71ecc720b8ecf281f0%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r780c3c210a05c5bf7b4671303f46afc3fe56758e92864e1a5f0590d0%40%3Cjira.kafka.apache.org%3E", "reference_id": "r780c3c210a05c5bf7b4671303f46afc3fe56758e92864e1a5f0590d0%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r780c3c210a05c5bf7b4671303f46afc3fe56758e92864e1a5f0590d0%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r7bf7004c18c914fae3d5a6a0191d477e5b6408d95669b3afbf6efa36%40%3Ccommits.zookeeper.apache.org%3E", "reference_id": "r7bf7004c18c914fae3d5a6a0191d477e5b6408d95669b3afbf6efa36%40%3Ccommits.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r7bf7004c18c914fae3d5a6a0191d477e5b6408d95669b3afbf6efa36%40%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r7c40fb3a66a39b6e6c83b0454bc6917ffe6c69e3131322be9c07a1da%40%3Cissues.spark.apache.org%3E", "reference_id": "r7c40fb3a66a39b6e6c83b0454bc6917ffe6c69e3131322be9c07a1da%40%3Cissues.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r7c40fb3a66a39b6e6c83b0454bc6917ffe6c69e3131322be9c07a1da%40%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r81748d56923882543f5be456043c67daef84d631cf54899082058ef1%40%3Cjira.kafka.apache.org%3E", "reference_id": "r81748d56923882543f5be456043c67daef84d631cf54899082058ef1%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r81748d56923882543f5be456043c67daef84d631cf54899082058ef1%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r83453ec252af729996476e5839d0b28f07294959d60fea1bd76f7d81%40%3Cissues.spark.apache.org%3E", "reference_id": "r83453ec252af729996476e5839d0b28f07294959d60fea1bd76f7d81%40%3Cissues.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r83453ec252af729996476e5839d0b28f07294959d60fea1bd76f7d81%40%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r90327f55db8f1d079f9a724aabf1f5eb3c00c1de49dc7fd04cad1ebc%40%3Ccommits.pulsar.apache.org%3E", "reference_id": "r90327f55db8f1d079f9a724aabf1f5eb3c00c1de49dc7fd04cad1ebc%40%3Ccommits.pulsar.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r90327f55db8f1d079f9a724aabf1f5eb3c00c1de49dc7fd04cad1ebc%40%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r940f15db77a96f6aea92d830bc94d8d95f26cc593394d144755824da%40%3Creviews.spark.apache.org%3E", "reference_id": "r940f15db77a96f6aea92d830bc94d8d95f26cc593394d144755824da%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r940f15db77a96f6aea92d830bc94d8d95f26cc593394d144755824da%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r942f4a903d0abb25ac75c592e57df98dea51350e8589269a72fd7913%40%3Cissues.spark.apache.org%3E", "reference_id": "r942f4a903d0abb25ac75c592e57df98dea51350e8589269a72fd7913%40%3Cissues.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r942f4a903d0abb25ac75c592e57df98dea51350e8589269a72fd7913%40%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9974f64723875052e02787b2a5eda689ac5247c71b827d455e5dc9a6%40%3Cissues.solr.apache.org%3E", "reference_id": "r9974f64723875052e02787b2a5eda689ac5247c71b827d455e5dc9a6%40%3Cissues.solr.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r9974f64723875052e02787b2a5eda689ac5247c71b827d455e5dc9a6%40%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9b793db9f395b546e66fb9c44fe1cd75c7755029e944dfee31b8b779%40%3Creviews.spark.apache.org%3E", "reference_id": "r9b793db9f395b546e66fb9c44fe1cd75c7755029e944dfee31b8b779%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r9b793db9f395b546e66fb9c44fe1cd75c7755029e944dfee31b8b779%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9db72e9c33b93eba45a214af588f1d553839b5c3080fc913854a49ab%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "r9db72e9c33b93eba45a214af588f1d553839b5c3080fc913854a49ab%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r9db72e9c33b93eba45a214af588f1d553839b5c3080fc913854a49ab%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/r9fae5a4087d9ed1c9d4f0c7493b6981a4741cfb4bebb2416da638424%40%3Cissues.spark.apache.org%3E", "reference_id": "r9fae5a4087d9ed1c9d4f0c7493b6981a4741cfb4bebb2416da638424%40%3Cissues.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/r9fae5a4087d9ed1c9d4f0c7493b6981a4741cfb4bebb2416da638424%40%3Cissues.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra210e38ae0bf615084390b26ba01bb5d66c0a76f232277446ae0948a%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "ra210e38ae0bf615084390b26ba01bb5d66c0a76f232277446ae0948a%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/ra210e38ae0bf615084390b26ba01bb5d66c0a76f232277446ae0948a%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra21b3e6bd9669377139fe33fb46edf6fece3f31375bc42a0dcc964b2%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "ra21b3e6bd9669377139fe33fb46edf6fece3f31375bc42a0dcc964b2%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/ra21b3e6bd9669377139fe33fb46edf6fece3f31375bc42a0dcc964b2%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra50519652b0b7f869a14fbfb4be9758a29171d7fe561bb7e036e8449%40%3Cissues.hbase.apache.org%3E", "reference_id": "ra50519652b0b7f869a14fbfb4be9758a29171d7fe561bb7e036e8449%40%3Cissues.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/ra50519652b0b7f869a14fbfb4be9758a29171d7fe561bb7e036e8449%40%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ra9dd15ba8a4fb7e42c7fe948a6d6b3868fd6bbf8e3fb37fcf33b2cd0%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "ra9dd15ba8a4fb7e42c7fe948a6d6b3868fd6bbf8e3fb37fcf33b2cd0%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/ra9dd15ba8a4fb7e42c7fe948a6d6b3868fd6bbf8e3fb37fcf33b2cd0%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rae8bbc5a516f3e21b8a55e61ff6ad0ced03bdbd116d2170a3eed9f5c%40%3Creviews.spark.apache.org%3E", "reference_id": "rae8bbc5a516f3e21b8a55e61ff6ad0ced03bdbd116d2170a3eed9f5c%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rae8bbc5a516f3e21b8a55e61ff6ad0ced03bdbd116d2170a3eed9f5c%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/raea6e820644e8c5a577f77d4e2044f8ab52183c2536b00c56738beef%40%3Creviews.spark.apache.org%3E", "reference_id": "raea6e820644e8c5a577f77d4e2044f8ab52183c2536b00c56738beef%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/raea6e820644e8c5a577f77d4e2044f8ab52183c2536b00c56738beef%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb00345f6b1620b553d2cc1acaf3017aa75cea3776b911e024fa3b187%40%3Creviews.spark.apache.org%3E", "reference_id": "rb00345f6b1620b553d2cc1acaf3017aa75cea3776b911e024fa3b187%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rb00345f6b1620b553d2cc1acaf3017aa75cea3776b911e024fa3b187%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb11a13e623218c70b9f2a2d0d122fdaaf905e04a2edcd23761894464%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "rb11a13e623218c70b9f2a2d0d122fdaaf905e04a2edcd23761894464%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rb11a13e623218c70b9f2a2d0d122fdaaf905e04a2edcd23761894464%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb1624b9777a3070135e94331a428c6653a6a1edccd56fa9fb7a547f2%40%3Creviews.spark.apache.org%3E", "reference_id": "rb1624b9777a3070135e94331a428c6653a6a1edccd56fa9fb7a547f2%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rb1624b9777a3070135e94331a428c6653a6a1edccd56fa9fb7a547f2%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb2d34abb67cdf525945fe4b821c5cdbca29a78d586ae1f9f505a311c%40%3Creviews.spark.apache.org%3E", "reference_id": "rb2d34abb67cdf525945fe4b821c5cdbca29a78d586ae1f9f505a311c%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rb2d34abb67cdf525945fe4b821c5cdbca29a78d586ae1f9f505a311c%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb66ed0b4bb74836add60dd5ddf9172016380b2aeefb7f96fe348537b%40%3Creviews.spark.apache.org%3E", "reference_id": "rb66ed0b4bb74836add60dd5ddf9172016380b2aeefb7f96fe348537b%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rb66ed0b4bb74836add60dd5ddf9172016380b2aeefb7f96fe348537b%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rb8f5a6ded384eb00608e6137e87110e7dd7d5054cc34561cb89b81af%40%3Creviews.spark.apache.org%3E", "reference_id": "rb8f5a6ded384eb00608e6137e87110e7dd7d5054cc34561cb89b81af%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rb8f5a6ded384eb00608e6137e87110e7dd7d5054cc34561cb89b81af%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbab9e67ec97591d063905bc7d4743e6a673f1bc457975fc0445ac97f%40%3Cissues.hbase.apache.org%3E", "reference_id": "rbab9e67ec97591d063905bc7d4743e6a673f1bc457975fc0445ac97f%40%3Cissues.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rbab9e67ec97591d063905bc7d4743e6a673f1bc457975fc0445ac97f%40%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbba0b02a3287e34af328070dd58f7828612f96e2e64992137f4dc63d%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "rbba0b02a3287e34af328070dd58f7828612f96e2e64992137f4dc63d%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rbba0b02a3287e34af328070dd58f7828612f96e2e64992137f4dc63d%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbc075a4ac85e7a8e47420b7383f16ffa0af3b792b8423584735f369f%40%3Cissues.solr.apache.org%3E", "reference_id": "rbc075a4ac85e7a8e47420b7383f16ffa0af3b792b8423584735f369f%40%3Cissues.solr.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rbc075a4ac85e7a8e47420b7383f16ffa0af3b792b8423584735f369f%40%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbcd7b477df55857bb6cae21fcc4404683ac98aac1a47551f0dc55486%40%3Cissues.zookeeper.apache.org%3E", "reference_id": "rbcd7b477df55857bb6cae21fcc4404683ac98aac1a47551f0dc55486%40%3Cissues.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rbcd7b477df55857bb6cae21fcc4404683ac98aac1a47551f0dc55486%40%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rbd9a837a18ca57ac0d9b4165a6eec95ee132f55d025666fe41099f33%40%3Creviews.spark.apache.org%3E", "reference_id": "rbd9a837a18ca57ac0d9b4165a6eec95ee132f55d025666fe41099f33%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rbd9a837a18ca57ac0d9b4165a6eec95ee132f55d025666fe41099f33%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc4779abc1cface47e956cf9f8910f15d79c24477e7b1ac9be076a825%40%3Cjira.kafka.apache.org%3E", "reference_id": "rc4779abc1cface47e956cf9f8910f15d79c24477e7b1ac9be076a825%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rc4779abc1cface47e956cf9f8910f15d79c24477e7b1ac9be076a825%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc4dbc9907b0bdd634200ac90a15283d9c143c11af66e7ec72128d020%40%3Cjira.kafka.apache.org%3E", "reference_id": "rc4dbc9907b0bdd634200ac90a15283d9c143c11af66e7ec72128d020%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rc4dbc9907b0bdd634200ac90a15283d9c143c11af66e7ec72128d020%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc6c43c3180c0efe00497c73dd374cd34b62036cb67987ad42c1f2dce%40%3Creviews.spark.apache.org%3E", "reference_id": "rc6c43c3180c0efe00497c73dd374cd34b62036cb67987ad42c1f2dce%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rc6c43c3180c0efe00497c73dd374cd34b62036cb67987ad42c1f2dce%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rc907ed7b089828364437de5ed57fa062330970dc1bc5cd214b711f77%40%3Ccommits.zookeeper.apache.org%3E", "reference_id": "rc907ed7b089828364437de5ed57fa062330970dc1bc5cd214b711f77%40%3Ccommits.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rc907ed7b089828364437de5ed57fa062330970dc1bc5cd214b711f77%40%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rcdea97f4d3233298296aabc103c9fcefbf629425418c2b69bb16745f%40%3Ccommits.pulsar.apache.org%3E", "reference_id": "rcdea97f4d3233298296aabc103c9fcefbf629425418c2b69bb16745f%40%3Ccommits.pulsar.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rcdea97f4d3233298296aabc103c9fcefbf629425418c2b69bb16745f%40%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd0471252aeb3384c3cfa6d131374646d4641b80dd313e7b476c47a9c%40%3Cissues.solr.apache.org%3E", "reference_id": "rd0471252aeb3384c3cfa6d131374646d4641b80dd313e7b476c47a9c%40%3Cissues.solr.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rd0471252aeb3384c3cfa6d131374646d4641b80dd313e7b476c47a9c%40%3Cissues.solr.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd24d8a059233167b4a5aebda4b3534ca1d86caa8a85b10a73403ee97%40%3Ccommits.spark.apache.org%3E", "reference_id": "rd24d8a059233167b4a5aebda4b3534ca1d86caa8a85b10a73403ee97%40%3Ccommits.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rd24d8a059233167b4a5aebda4b3534ca1d86caa8a85b10a73403ee97%40%3Ccommits.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd6c1eb9a8a94b3ac8a525d74d792924e8469f201b77e1afcf774e7a6%40%3Creviews.spark.apache.org%3E", "reference_id": "rd6c1eb9a8a94b3ac8a525d74d792924e8469f201b77e1afcf774e7a6%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rd6c1eb9a8a94b3ac8a525d74d792924e8469f201b77e1afcf774e7a6%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd755dfe5f658c42704540ad7950cebd136739089c3231658e398cf38%40%3Cjira.kafka.apache.org%3E", "reference_id": "rd755dfe5f658c42704540ad7950cebd136739089c3231658e398cf38%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rd755dfe5f658c42704540ad7950cebd136739089c3231658e398cf38%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd7c8fb305a8637480dc943ba08424c8992dccad018cd1405eb2afe0e%40%3Cdev.ignite.apache.org%3E", "reference_id": "rd7c8fb305a8637480dc943ba08424c8992dccad018cd1405eb2afe0e%40%3Cdev.ignite.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rd7c8fb305a8637480dc943ba08424c8992dccad018cd1405eb2afe0e%40%3Cdev.ignite.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rd9ea411a58925cc82c32e15f541ead23cb25b4b2d57a2bdb0341536e%40%3Cjira.kafka.apache.org%3E", "reference_id": "rd9ea411a58925cc82c32e15f541ead23cb25b4b2d57a2bdb0341536e%40%3Cjira.kafka.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rd9ea411a58925cc82c32e15f541ead23cb25b4b2d57a2bdb0341536e%40%3Cjira.kafka.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdbf2a2cd1800540ae50dd78b57411229223a6172117d62b8e57596aa%40%3Cissues.hbase.apache.org%3E", "reference_id": "rdbf2a2cd1800540ae50dd78b57411229223a6172117d62b8e57596aa%40%3Cissues.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rdbf2a2cd1800540ae50dd78b57411229223a6172117d62b8e57596aa%40%3Cissues.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdde34d53aa80193cda016272d61e6749f8a9044ccb37a30768938f7e%40%3Creviews.spark.apache.org%3E", "reference_id": "rdde34d53aa80193cda016272d61e6749f8a9044ccb37a30768938f7e%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rdde34d53aa80193cda016272d61e6749f8a9044ccb37a30768938f7e%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdf4fe435891e8c35e70ea5da033b4c3da78760f15a8c4212fad89d9f%40%3Ccommits.zookeeper.apache.org%3E", "reference_id": "rdf4fe435891e8c35e70ea5da033b4c3da78760f15a8c4212fad89d9f%40%3Ccommits.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rdf4fe435891e8c35e70ea5da033b4c3da78760f15a8c4212fad89d9f%40%3Ccommits.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rdfe5f1c071ba9dadba18d7fb0ff13ea6ecb33da624250c559999eaeb%40%3Creviews.spark.apache.org%3E", "reference_id": "rdfe5f1c071ba9dadba18d7fb0ff13ea6ecb33da624250c559999eaeb%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rdfe5f1c071ba9dadba18d7fb0ff13ea6ecb33da624250c559999eaeb%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re0545ecced2d468c94ce4dcfa37d40a9573cc68ef5f6839ffca9c1c1%40%3Ccommits.hbase.apache.org%3E", "reference_id": "re0545ecced2d468c94ce4dcfa37d40a9573cc68ef5f6839ffca9c1c1%40%3Ccommits.hbase.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/re0545ecced2d468c94ce4dcfa37d40a9573cc68ef5f6839ffca9c1c1%40%3Ccommits.hbase.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re3a1617d16a7367f767b8209b2151f4c19958196354b39568c532f26%40%3Creviews.spark.apache.org%3E", "reference_id": "re3a1617d16a7367f767b8209b2151f4c19958196354b39568c532f26%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/re3a1617d16a7367f767b8209b2151f4c19958196354b39568c532f26%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re577736ca7da51952c910b345a500b7676ea9931c9b19709b87f292b%40%3Cissues.zookeeper.apache.org%3E", "reference_id": "re577736ca7da51952c910b345a500b7676ea9931c9b19709b87f292b%40%3Cissues.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/re577736ca7da51952c910b345a500b7676ea9931c9b19709b87f292b%40%3Cissues.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/re6614b4fe7dbb945409daadb9e1cc73c02383df68bf9334736107a6e%40%3Cdev.zookeeper.apache.org%3E", "reference_id": "re6614b4fe7dbb945409daadb9e1cc73c02383df68bf9334736107a6e%40%3Cdev.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/re6614b4fe7dbb945409daadb9e1cc73c02383df68bf9334736107a6e%40%3Cdev.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/ree1895a256a9db951e0d97a76222909c2e1f28c1a3d89933173deed6%40%3Creviews.spark.apache.org%3E", "reference_id": "ree1895a256a9db951e0d97a76222909c2e1f28c1a3d89933173deed6%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/ree1895a256a9db951e0d97a76222909c2e1f28c1a3d89933173deed6%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rf1b02dfccd27b8bbc3afd119b212452fa32e9ed7d506be9357a3a7ec%40%3Creviews.spark.apache.org%3E", "reference_id": "rf1b02dfccd27b8bbc3afd119b212452fa32e9ed7d506be9357a3a7ec%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rf1b02dfccd27b8bbc3afd119b212452fa32e9ed7d506be9357a3a7ec%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rf6de4c249bd74007f5f66f683c110535f46e719d2f83a41e8faf295f%40%3Creviews.spark.apache.org%3E", "reference_id": "rf6de4c249bd74007f5f66f683c110535f46e719d2f83a41e8faf295f%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rf6de4c249bd74007f5f66f683c110535f46e719d2f83a41e8faf295f%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rf99f9a25ca24fe519c9346388f61b5b3a09be31b800bf37f01473ad7%40%3Cnotifications.zookeeper.apache.org%3E", "reference_id": "rf99f9a25ca24fe519c9346388f61b5b3a09be31b800bf37f01473ad7%40%3Cnotifications.zookeeper.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rf99f9a25ca24fe519c9346388f61b5b3a09be31b800bf37f01473ad7%40%3Cnotifications.zookeeper.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rfc9f51b4e21022b3cd6cb6f90791a6a6999560212e519b5f09db0aed%40%3Ccommits.pulsar.apache.org%3E", "reference_id": "rfc9f51b4e21022b3cd6cb6f90791a6a6999560212e519b5f09db0aed%40%3Ccommits.pulsar.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rfc9f51b4e21022b3cd6cb6f90791a6a6999560212e519b5f09db0aed%40%3Ccommits.pulsar.apache.org%3E" }, { "reference_url": "https://lists.apache.org/thread.html/rfd3ff6e66b6bbcfb2fefa9f5a20328937c0369b2e142e3e1c6774743%40%3Creviews.spark.apache.org%3E", "reference_id": "rfd3ff6e66b6bbcfb2fefa9f5a20328937c0369b2e142e3e1c6774743%40%3Creviews.spark.apache.org%3E", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-27T20:37:21Z/" } ], "url": "https://lists.apache.org/thread.html/rfd3ff6e66b6bbcfb2fefa9f5a20328937c0369b2e142e3e1c6774743%40%3Creviews.spark.apache.org%3E" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:1509", "reference_id": "RHSA-2021:1509", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:1509" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:1551", "reference_id": "RHSA-2021:1551", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:1551" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:1560", "reference_id": "RHSA-2021:1560", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:1560" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:2689", "reference_id": "RHSA-2021:2689", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:2689" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:3225", "reference_id": "RHSA-2021:3225", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:3225" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:3700", "reference_id": "RHSA-2021:3700", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:3700" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2021:4767", "reference_id": "RHSA-2021:4767", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2021:4767" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2022:6407", "reference_id": "RHSA-2022:6407", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2022:6407" } ], "weaknesses": [ { "cwe_id": 400, "name": "Uncontrolled Resource Consumption", "description": "The product does not properly control the allocation and maintenance of a limited resource, thereby enabling an actor to influence the amount of resources consumed, eventually leading to the exhaustion of available resources." }, { "cwe_id": 551, "name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization", "description": "If a web server does not fully parse requested URLs before it examines them for authorization, it may be possible for an attacker to bypass authorization protection." }, { "cwe_id": 755, "name": "Improper Handling of Exceptional Conditions", "description": "The product does not handle or incorrectly handles an exceptional condition." }, { "cwe_id": 1035, "name": "OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities", "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017." }, { "cwe_id": 937, "name": "OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities", "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013." } ], "exploits": [], "severity_range_score": "7.0 - 8.9", "exploitability": "0.5", "weighted_severity": "8.0", "risk_score": 4.0, "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-prd3-mmuv-n3dc" }