Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-8p2e-63th-gqge
Summary
Netty affected by MadeYouReset HTTP/2 DDoS vulnerability
Below is a technical explanation of a newly discovered vulnerability in HTTP/2, which we refer to as “MadeYouReset.”

### MadeYouReset Vulnerability Summary
The MadeYouReset DDoS vulnerability is a logical vulnerability in the HTTP/2 protocol, that uses malformed HTTP/2 control frames in order to break the max concurrent streams limit - which results in resource exhaustion and distributed denial of service.

### Mechanism
The vulnerability uses malformed HTTP/2 control frames, or malformed flow, in order to make the server reset streams created by the client (using the RST_STREAM frame). 
The vulnerability could be triggered by several primitives, defined by the RFC of HTTP/2 (RFC 9113). The Primitives are:
1. WINDOW_UPDATE frame with an increment of 0 or an increment that makes the window exceed 2^31 - 1. (section 6.9 + 6.9.1)
2. HEADERS or DATA frames sent on a half-closed (remote) stream (which was closed using the END_STREAM flag). (note that for some implementations it's possible a CONTINUATION frame to trigger that as well - but it's very rare). (Section 5.1)
3. PRIORITY frame with a length other than 5. (section 6.3)
From our experience, the primitives are likely to exist in the decreasing order listed above.
Note that based on the implementation of the library, other primitives (which are not defined by the RFC) might exist - meaning scenarios in which RST_STREAM is not supposed to be sent, but in the implementation it does. On the other hand - some RFC-defined primitives might not work, even though they are defined by the RFC (as some implementations are not fully complying with RFC). For example, some implementations we’ve seen discard the PRIORITY frame - and thus does not return RST_STREAM, and some implementations send GO_AWAY when receiving a WINDOW_UPDATE frame with increment of 0.

The vulnerability takes advantage of a design flaw in the HTTP/2 protocol - While HTTP/2 has a limit on the number of concurrently active streams per connection (which is usually 100, and is set by the parameter SETTINGS_MAX_CONCURRENT_STREAMS), the number of active streams is not counted correctly - when a stream is reset, it is immediately considered not active, and thus unaccounted for in the active streams counter. 
While the protocol does not count those streams as active, the server’s backend logic still processes and handles the requests that were canceled.

Thus, the attacker can exploit this vulnerability to cause the server to handle an unbounded number of concurrent streams from a client on the same connection. The exploitation is very simple: the client issues a request in a stream, and then sends the control frame that causes the server to send a RST_STREAM.

### Attack Flow
For example, a possible attack scenario can be: 
1. Attacker opens an HTTP/2 connection to the server.
2. Attacker sends HEADERS frame with END_STREAM flag on a new stream X.  
3. Attacker sends WINDOW_UPDATE for stream X with flow-control window of 0.
4. The server receives the WINDOW_UPDATE and immediately sends RST_STREAM for stream X to the client (+ decreases the active streams counter by 1).

The attacker can repeat steps 2+3 as rapidly as it is capable, since the active streams counter never exceeds 1 and the attacker does not need to wait for the response from the server.
This leads to resource exhaustion and distributed denial of service vulnerabilities with an impact of: CPU overload and/or memory exhaustion (implementation dependent)

### Comparison to Rapid Reset
The vulnerability takes advantage of a design flow in the HTTP/2 protocol that was also used in the Rapid Reset vulnerability (CVE-2023-44487) which was exploited as a zero-day in the wild in August 2023 to October 2023, against multiple services and vendors.
The Rapid Reset vulnerability uses RST_STREAM frames sent from the client, in order to create an unbounded amount of concurrent streams - it was given a CVSS score of 7.5.
Rapid Reset was mostly mitigated by limiting the number/rate of RST_STREAM sent from the client, which does not mitigate the MadeYouReset attack - since it triggers the server to send a RST_STREAM.

### Suggested Mitigations for MadeYouReset
A quick and easy mitigation will be to limit the number/rate of RST_STREAMs sent from the server.
It is also possible to limit the number/rate of control frames sent by the client (e.g. WINDOW_UPDATE and PRIORITY), and treat protocol flow errors as a connection error.

As mentioned in our previous message, this is a protocol-level vulnerability that affects multiple vendors and implementations. Given its broad impact, it is the shared responsibility of all parties involved to handle the disclosure process carefully and coordinate mitigations effectively.


If you have any questions, we will be happy to clarify or schedule a Zoom call.

Gal, Anat and Yaniv.
Aliases
0
alias CVE-2025-55163
1
alias GHSA-prj3-ccx8-p6x4
Fixed_packages
0
url pkg:deb/debian/netty@1:4.1.48-4%2Bdeb11u2?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-4%2Bdeb11u2?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-4%252Bdeb11u2%3Fdistro=trixie
1
url pkg:deb/debian/netty@1:4.1.48-4%2Bdeb11u3?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-4%2Bdeb11u3?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-4%252Bdeb11u3%3Fdistro=trixie
2
url pkg:deb/debian/netty@1:4.1.48-7%2Bdeb12u1
purl pkg:deb/debian/netty@1:4.1.48-7%2Bdeb12u1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-7%252Bdeb12u1
3
url pkg:deb/debian/netty@1:4.1.48-7%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-7%2Bdeb12u1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-7%252Bdeb12u1%3Fdistro=trixie
4
url pkg:deb/debian/netty@1:4.1.48-7%2Bdeb12u2?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-7%2Bdeb12u2?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-7%252Bdeb12u2%3Fdistro=trixie
5
url pkg:deb/debian/netty@1:4.1.48-10?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-10?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-10%3Fdistro=trixie
6
url pkg:deb/debian/netty@1:4.1.48-10%2Bdeb13u1?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-10%2Bdeb13u1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-10%252Bdeb13u1%3Fdistro=trixie
7
url pkg:deb/debian/netty@1:4.1.48-11?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-11?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-11%3Fdistro=trixie
8
url pkg:deb/debian/netty@1:4.1.48-16?distro=trixie
purl pkg:deb/debian/netty@1:4.1.48-16?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-16%3Fdistro=trixie
9
url pkg:maven/io.grpc/grpc-netty-shaded@1.75.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.75.0
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.75.0
10
url pkg:maven/io.netty/netty-codec-http2@4.1.124.Final
purl pkg:maven/io.netty/netty-codec-http2@4.1.124.Final
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http2@4.1.124.Final
11
url pkg:maven/io.netty/netty-codec-http2@4.2.4.Final
purl pkg:maven/io.netty/netty-codec-http2@4.2.4.Final
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http2@4.2.4.Final
Affected_packages
0
url pkg:deb/debian/netty@1:3.1.0.CR1-1
purl pkg:deb/debian/netty@1:3.1.0.CR1-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2tr1-48cx-ubbh
1
vulnerability VCID-337s-x5xq-9kc1
2
vulnerability VCID-3mgs-vrus-q3ag
3
vulnerability VCID-4twn-m45z-yyg3
4
vulnerability VCID-5781-s1ny-q7ey
5
vulnerability VCID-81nf-zd3k-mud7
6
vulnerability VCID-8b9g-6r2j-tqhw
7
vulnerability VCID-8p2e-63th-gqge
8
vulnerability VCID-8p4t-8f51-h3dc
9
vulnerability VCID-9a4r-nbdk-37fu
10
vulnerability VCID-e92u-331h-bkcb
11
vulnerability VCID-hzxz-sqmu-s7e1
12
vulnerability VCID-m7b8-8zcj-uqey
13
vulnerability VCID-m9t3-3sxz-8faz
14
vulnerability VCID-mba8-bg91-77ak
15
vulnerability VCID-n9u5-a8js-hbf2
16
vulnerability VCID-qruf-r6dc-3ugj
17
vulnerability VCID-qyhp-twx4-vffc
18
vulnerability VCID-r7tw-km29-4bdp
19
vulnerability VCID-rewk-dvth-tubh
20
vulnerability VCID-swu5-a9h5-ffex
21
vulnerability VCID-ug8h-p8kf-t7e1
22
vulnerability VCID-xyc4-63ra-mfh2
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:3.1.0.CR1-1
1
url pkg:deb/debian/netty@1:3.2.6.Final-2
purl pkg:deb/debian/netty@1:3.2.6.Final-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-2tr1-48cx-ubbh
1
vulnerability VCID-337s-x5xq-9kc1
2
vulnerability VCID-3mgs-vrus-q3ag
3
vulnerability VCID-4twn-m45z-yyg3
4
vulnerability VCID-5781-s1ny-q7ey
5
vulnerability VCID-81nf-zd3k-mud7
6
vulnerability VCID-8b9g-6r2j-tqhw
7
vulnerability VCID-8p2e-63th-gqge
8
vulnerability VCID-8p4t-8f51-h3dc
9
vulnerability VCID-9a4r-nbdk-37fu
10
vulnerability VCID-e92u-331h-bkcb
11
vulnerability VCID-hzxz-sqmu-s7e1
12
vulnerability VCID-m7b8-8zcj-uqey
13
vulnerability VCID-m9t3-3sxz-8faz
14
vulnerability VCID-mba8-bg91-77ak
15
vulnerability VCID-n9u5-a8js-hbf2
16
vulnerability VCID-qruf-r6dc-3ugj
17
vulnerability VCID-qyhp-twx4-vffc
18
vulnerability VCID-r7tw-km29-4bdp
19
vulnerability VCID-rewk-dvth-tubh
20
vulnerability VCID-swu5-a9h5-ffex
21
vulnerability VCID-ug8h-p8kf-t7e1
22
vulnerability VCID-xyc4-63ra-mfh2
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:3.2.6.Final-2
2
url pkg:deb/debian/netty@1:4.1.7-2%2Bdeb9u1
purl pkg:deb/debian/netty@1:4.1.7-2%2Bdeb9u1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-337s-x5xq-9kc1
1
vulnerability VCID-3mgs-vrus-q3ag
2
vulnerability VCID-4twn-m45z-yyg3
3
vulnerability VCID-5781-s1ny-q7ey
4
vulnerability VCID-8b9g-6r2j-tqhw
5
vulnerability VCID-8p2e-63th-gqge
6
vulnerability VCID-8p4t-8f51-h3dc
7
vulnerability VCID-9a4r-nbdk-37fu
8
vulnerability VCID-e92u-331h-bkcb
9
vulnerability VCID-hzxz-sqmu-s7e1
10
vulnerability VCID-m7b8-8zcj-uqey
11
vulnerability VCID-m9t3-3sxz-8faz
12
vulnerability VCID-mba8-bg91-77ak
13
vulnerability VCID-n9u5-a8js-hbf2
14
vulnerability VCID-qruf-r6dc-3ugj
15
vulnerability VCID-qyhp-twx4-vffc
16
vulnerability VCID-r7tw-km29-4bdp
17
vulnerability VCID-rewk-dvth-tubh
18
vulnerability VCID-swu5-a9h5-ffex
19
vulnerability VCID-ug8h-p8kf-t7e1
20
vulnerability VCID-xyc4-63ra-mfh2
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.7-2%252Bdeb9u1
3
url pkg:deb/debian/netty@1:4.1.33-1%2Bdeb10u2
purl pkg:deb/debian/netty@1:4.1.33-1%2Bdeb10u2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-337s-x5xq-9kc1
1
vulnerability VCID-3mgs-vrus-q3ag
2
vulnerability VCID-4twn-m45z-yyg3
3
vulnerability VCID-5781-s1ny-q7ey
4
vulnerability VCID-8b9g-6r2j-tqhw
5
vulnerability VCID-8p2e-63th-gqge
6
vulnerability VCID-8p4t-8f51-h3dc
7
vulnerability VCID-9a4r-nbdk-37fu
8
vulnerability VCID-e92u-331h-bkcb
9
vulnerability VCID-hzxz-sqmu-s7e1
10
vulnerability VCID-m7b8-8zcj-uqey
11
vulnerability VCID-m9t3-3sxz-8faz
12
vulnerability VCID-mba8-bg91-77ak
13
vulnerability VCID-n9u5-a8js-hbf2
14
vulnerability VCID-qruf-r6dc-3ugj
15
vulnerability VCID-qyhp-twx4-vffc
16
vulnerability VCID-r7tw-km29-4bdp
17
vulnerability VCID-rewk-dvth-tubh
18
vulnerability VCID-swu5-a9h5-ffex
19
vulnerability VCID-ug8h-p8kf-t7e1
20
vulnerability VCID-xyc4-63ra-mfh2
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.33-1%252Bdeb10u2
4
url pkg:deb/debian/netty@1:4.1.48-4%2Bdeb11u2
purl pkg:deb/debian/netty@1:4.1.48-4%2Bdeb11u2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-337s-x5xq-9kc1
1
vulnerability VCID-4twn-m45z-yyg3
2
vulnerability VCID-8p2e-63th-gqge
3
vulnerability VCID-n9u5-a8js-hbf2
4
vulnerability VCID-qyhp-twx4-vffc
5
vulnerability VCID-rewk-dvth-tubh
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/netty@1:4.1.48-4%252Bdeb11u2
5
url pkg:maven/io.grpc/grpc-netty-shaded@1.9.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.9.0
6
url pkg:maven/io.grpc/grpc-netty-shaded@1.9.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.9.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.9.1
7
url pkg:maven/io.grpc/grpc-netty-shaded@1.10.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.10.0
8
url pkg:maven/io.grpc/grpc-netty-shaded@1.10.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.10.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.10.1
9
url pkg:maven/io.grpc/grpc-netty-shaded@1.11.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.11.0
10
url pkg:maven/io.grpc/grpc-netty-shaded@1.12.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.12.0
11
url pkg:maven/io.grpc/grpc-netty-shaded@1.12.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.12.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.12.1
12
url pkg:maven/io.grpc/grpc-netty-shaded@1.13.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.13.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.13.1
13
url pkg:maven/io.grpc/grpc-netty-shaded@1.13.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.13.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.13.2
14
url pkg:maven/io.grpc/grpc-netty-shaded@1.14.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.14.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.14.0
15
url pkg:maven/io.grpc/grpc-netty-shaded@1.15.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.15.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.15.0
16
url pkg:maven/io.grpc/grpc-netty-shaded@1.15.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.15.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.15.1
17
url pkg:maven/io.grpc/grpc-netty-shaded@1.16.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.16.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.16.0
18
url pkg:maven/io.grpc/grpc-netty-shaded@1.16.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.16.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.16.1
19
url pkg:maven/io.grpc/grpc-netty-shaded@1.17.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.17.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.17.0
20
url pkg:maven/io.grpc/grpc-netty-shaded@1.17.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.17.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.17.1
21
url pkg:maven/io.grpc/grpc-netty-shaded@1.18.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.18.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.18.0
22
url pkg:maven/io.grpc/grpc-netty-shaded@1.19.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.19.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.19.0
23
url pkg:maven/io.grpc/grpc-netty-shaded@1.20.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.20.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.20.0
24
url pkg:maven/io.grpc/grpc-netty-shaded@1.21.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.21.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.21.0
25
url pkg:maven/io.grpc/grpc-netty-shaded@1.21.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.21.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.21.1
26
url pkg:maven/io.grpc/grpc-netty-shaded@1.22.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.22.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.22.0
27
url pkg:maven/io.grpc/grpc-netty-shaded@1.22.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.22.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.22.1
28
url pkg:maven/io.grpc/grpc-netty-shaded@1.22.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.22.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.22.2
29
url pkg:maven/io.grpc/grpc-netty-shaded@1.22.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.22.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.22.3
30
url pkg:maven/io.grpc/grpc-netty-shaded@1.23.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.23.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.23.0
31
url pkg:maven/io.grpc/grpc-netty-shaded@1.23.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.23.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.23.1
32
url pkg:maven/io.grpc/grpc-netty-shaded@1.24.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.24.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.24.0
33
url pkg:maven/io.grpc/grpc-netty-shaded@1.24.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.24.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.24.1
34
url pkg:maven/io.grpc/grpc-netty-shaded@1.24.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.24.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.24.2
35
url pkg:maven/io.grpc/grpc-netty-shaded@1.25.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.25.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.25.0
36
url pkg:maven/io.grpc/grpc-netty-shaded@1.26.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.26.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.26.0
37
url pkg:maven/io.grpc/grpc-netty-shaded@1.26.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.26.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.26.1
38
url pkg:maven/io.grpc/grpc-netty-shaded@1.27.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.27.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.27.0
39
url pkg:maven/io.grpc/grpc-netty-shaded@1.27.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.27.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.27.1
40
url pkg:maven/io.grpc/grpc-netty-shaded@1.27.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.27.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.27.2
41
url pkg:maven/io.grpc/grpc-netty-shaded@1.28.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.28.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.28.0
42
url pkg:maven/io.grpc/grpc-netty-shaded@1.28.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.28.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.28.1
43
url pkg:maven/io.grpc/grpc-netty-shaded@1.29.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.29.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.29.0
44
url pkg:maven/io.grpc/grpc-netty-shaded@1.30.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.30.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.30.0
45
url pkg:maven/io.grpc/grpc-netty-shaded@1.30.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.30.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.30.1
46
url pkg:maven/io.grpc/grpc-netty-shaded@1.30.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.30.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.30.2
47
url pkg:maven/io.grpc/grpc-netty-shaded@1.31.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.31.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.31.0
48
url pkg:maven/io.grpc/grpc-netty-shaded@1.31.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.31.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.31.1
49
url pkg:maven/io.grpc/grpc-netty-shaded@1.31.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.31.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.31.2
50
url pkg:maven/io.grpc/grpc-netty-shaded@1.32.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.32.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.32.1
51
url pkg:maven/io.grpc/grpc-netty-shaded@1.32.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.32.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.32.2
52
url pkg:maven/io.grpc/grpc-netty-shaded@1.32.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.32.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.32.3
53
url pkg:maven/io.grpc/grpc-netty-shaded@1.33.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.33.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.33.0
54
url pkg:maven/io.grpc/grpc-netty-shaded@1.33.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.33.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.33.1
55
url pkg:maven/io.grpc/grpc-netty-shaded@1.34.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.34.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.34.0
56
url pkg:maven/io.grpc/grpc-netty-shaded@1.34.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.34.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.34.1
57
url pkg:maven/io.grpc/grpc-netty-shaded@1.35.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.35.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.35.0
58
url pkg:maven/io.grpc/grpc-netty-shaded@1.35.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.35.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.35.1
59
url pkg:maven/io.grpc/grpc-netty-shaded@1.36.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.36.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.36.0
60
url pkg:maven/io.grpc/grpc-netty-shaded@1.36.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.36.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.36.1
61
url pkg:maven/io.grpc/grpc-netty-shaded@1.36.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.36.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.36.2
62
url pkg:maven/io.grpc/grpc-netty-shaded@1.36.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.36.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.36.3
63
url pkg:maven/io.grpc/grpc-netty-shaded@1.37.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.37.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.37.0
64
url pkg:maven/io.grpc/grpc-netty-shaded@1.37.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.37.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.37.1
65
url pkg:maven/io.grpc/grpc-netty-shaded@1.38.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.38.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.38.0
66
url pkg:maven/io.grpc/grpc-netty-shaded@1.38.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.38.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.38.1
67
url pkg:maven/io.grpc/grpc-netty-shaded@1.39.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.39.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.39.0
68
url pkg:maven/io.grpc/grpc-netty-shaded@1.40.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.40.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.40.0
69
url pkg:maven/io.grpc/grpc-netty-shaded@1.40.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.40.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.40.1
70
url pkg:maven/io.grpc/grpc-netty-shaded@1.40.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.40.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.40.2
71
url pkg:maven/io.grpc/grpc-netty-shaded@1.41.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.41.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.41.0
72
url pkg:maven/io.grpc/grpc-netty-shaded@1.41.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.41.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.41.1
73
url pkg:maven/io.grpc/grpc-netty-shaded@1.41.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.41.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.41.2
74
url pkg:maven/io.grpc/grpc-netty-shaded@1.41.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.41.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.41.3
75
url pkg:maven/io.grpc/grpc-netty-shaded@1.42.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.42.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.42.0
76
url pkg:maven/io.grpc/grpc-netty-shaded@1.42.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.42.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.42.1
77
url pkg:maven/io.grpc/grpc-netty-shaded@1.42.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.42.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.42.2
78
url pkg:maven/io.grpc/grpc-netty-shaded@1.42.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.42.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.42.3
79
url pkg:maven/io.grpc/grpc-netty-shaded@1.43.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.43.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.43.0
80
url pkg:maven/io.grpc/grpc-netty-shaded@1.43.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.43.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.43.1
81
url pkg:maven/io.grpc/grpc-netty-shaded@1.43.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.43.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.43.2
82
url pkg:maven/io.grpc/grpc-netty-shaded@1.43.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.43.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.43.3
83
url pkg:maven/io.grpc/grpc-netty-shaded@1.44.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.44.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.44.0
84
url pkg:maven/io.grpc/grpc-netty-shaded@1.44.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.44.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.44.1
85
url pkg:maven/io.grpc/grpc-netty-shaded@1.44.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.44.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.44.2
86
url pkg:maven/io.grpc/grpc-netty-shaded@1.45.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.45.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.45.0
87
url pkg:maven/io.grpc/grpc-netty-shaded@1.45.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.45.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.45.1
88
url pkg:maven/io.grpc/grpc-netty-shaded@1.45.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.45.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.45.2
89
url pkg:maven/io.grpc/grpc-netty-shaded@1.45.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.45.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.45.3
90
url pkg:maven/io.grpc/grpc-netty-shaded@1.45.4
purl pkg:maven/io.grpc/grpc-netty-shaded@1.45.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.45.4
91
url pkg:maven/io.grpc/grpc-netty-shaded@1.46.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.46.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.46.0
92
url pkg:maven/io.grpc/grpc-netty-shaded@1.46.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.46.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.46.1
93
url pkg:maven/io.grpc/grpc-netty-shaded@1.47.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.47.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.47.0
94
url pkg:maven/io.grpc/grpc-netty-shaded@1.47.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.47.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.47.1
95
url pkg:maven/io.grpc/grpc-netty-shaded@1.48.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.48.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.48.0
96
url pkg:maven/io.grpc/grpc-netty-shaded@1.48.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.48.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.48.1
97
url pkg:maven/io.grpc/grpc-netty-shaded@1.48.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.48.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.48.2
98
url pkg:maven/io.grpc/grpc-netty-shaded@1.49.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.49.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.49.0
99
url pkg:maven/io.grpc/grpc-netty-shaded@1.49.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.49.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.49.1
100
url pkg:maven/io.grpc/grpc-netty-shaded@1.49.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.49.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.49.2
101
url pkg:maven/io.grpc/grpc-netty-shaded@1.50.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.50.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.50.0
102
url pkg:maven/io.grpc/grpc-netty-shaded@1.50.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.50.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.50.1
103
url pkg:maven/io.grpc/grpc-netty-shaded@1.50.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.50.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.50.2
104
url pkg:maven/io.grpc/grpc-netty-shaded@1.50.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.50.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.50.3
105
url pkg:maven/io.grpc/grpc-netty-shaded@1.51.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.51.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.51.0
106
url pkg:maven/io.grpc/grpc-netty-shaded@1.51.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.51.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.51.1
107
url pkg:maven/io.grpc/grpc-netty-shaded@1.51.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.51.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.51.3
108
url pkg:maven/io.grpc/grpc-netty-shaded@1.52.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.52.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.52.0
109
url pkg:maven/io.grpc/grpc-netty-shaded@1.52.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.52.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.52.1
110
url pkg:maven/io.grpc/grpc-netty-shaded@1.53.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.53.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.53.0
111
url pkg:maven/io.grpc/grpc-netty-shaded@1.54.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.54.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.54.0
112
url pkg:maven/io.grpc/grpc-netty-shaded@1.54.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.54.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.54.1
113
url pkg:maven/io.grpc/grpc-netty-shaded@1.54.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.54.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.54.2
114
url pkg:maven/io.grpc/grpc-netty-shaded@1.55.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.55.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.55.1
115
url pkg:maven/io.grpc/grpc-netty-shaded@1.55.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.55.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.55.3
116
url pkg:maven/io.grpc/grpc-netty-shaded@1.56.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.56.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.56.0
117
url pkg:maven/io.grpc/grpc-netty-shaded@1.56.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.56.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.56.1
118
url pkg:maven/io.grpc/grpc-netty-shaded@1.57.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.57.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.57.0
119
url pkg:maven/io.grpc/grpc-netty-shaded@1.57.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.57.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.57.1
120
url pkg:maven/io.grpc/grpc-netty-shaded@1.57.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.57.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.57.2
121
url pkg:maven/io.grpc/grpc-netty-shaded@1.58.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.58.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.58.0
122
url pkg:maven/io.grpc/grpc-netty-shaded@1.58.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.58.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.58.1
123
url pkg:maven/io.grpc/grpc-netty-shaded@1.59.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.59.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.59.0
124
url pkg:maven/io.grpc/grpc-netty-shaded@1.59.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.59.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.59.1
125
url pkg:maven/io.grpc/grpc-netty-shaded@1.60.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.60.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.60.0
126
url pkg:maven/io.grpc/grpc-netty-shaded@1.60.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.60.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.60.1
127
url pkg:maven/io.grpc/grpc-netty-shaded@1.60.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.60.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.60.2
128
url pkg:maven/io.grpc/grpc-netty-shaded@1.61.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.61.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.61.0
129
url pkg:maven/io.grpc/grpc-netty-shaded@1.61.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.61.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.61.1
130
url pkg:maven/io.grpc/grpc-netty-shaded@1.62.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.62.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.62.2
131
url pkg:maven/io.grpc/grpc-netty-shaded@1.63.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.63.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.63.0
132
url pkg:maven/io.grpc/grpc-netty-shaded@1.63.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.63.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.63.1
133
url pkg:maven/io.grpc/grpc-netty-shaded@1.63.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.63.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.63.2
134
url pkg:maven/io.grpc/grpc-netty-shaded@1.64.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.64.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.64.0
135
url pkg:maven/io.grpc/grpc-netty-shaded@1.64.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.64.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.64.1
136
url pkg:maven/io.grpc/grpc-netty-shaded@1.64.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.64.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.64.2
137
url pkg:maven/io.grpc/grpc-netty-shaded@1.65.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.65.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.65.0
138
url pkg:maven/io.grpc/grpc-netty-shaded@1.65.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.65.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.65.1
139
url pkg:maven/io.grpc/grpc-netty-shaded@1.66.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.66.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.66.0
140
url pkg:maven/io.grpc/grpc-netty-shaded@1.67.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.67.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.67.1
141
url pkg:maven/io.grpc/grpc-netty-shaded@1.68.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.68.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.68.0
142
url pkg:maven/io.grpc/grpc-netty-shaded@1.68.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.68.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.68.1
143
url pkg:maven/io.grpc/grpc-netty-shaded@1.68.2
purl pkg:maven/io.grpc/grpc-netty-shaded@1.68.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.68.2
144
url pkg:maven/io.grpc/grpc-netty-shaded@1.68.3
purl pkg:maven/io.grpc/grpc-netty-shaded@1.68.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.68.3
145
url pkg:maven/io.grpc/grpc-netty-shaded@1.69.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.69.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.69.0
146
url pkg:maven/io.grpc/grpc-netty-shaded@1.69.1
purl pkg:maven/io.grpc/grpc-netty-shaded@1.69.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.69.1
147
url pkg:maven/io.grpc/grpc-netty-shaded@1.70.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.70.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.70.0
148
url pkg:maven/io.grpc/grpc-netty-shaded@1.71.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.71.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.71.0
149
url pkg:maven/io.grpc/grpc-netty-shaded@1.72.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.72.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.72.0
150
url pkg:maven/io.grpc/grpc-netty-shaded@1.73.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.73.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.73.0
151
url pkg:maven/io.grpc/grpc-netty-shaded@1.74.0
purl pkg:maven/io.grpc/grpc-netty-shaded@1.74.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.grpc/grpc-netty-shaded@1.74.0
152
url pkg:maven/io.netty/netty-codec-http2@4.1.123.Final
purl pkg:maven/io.netty/netty-codec-http2@4.1.123.Final
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http2@4.1.123.Final
153
url pkg:maven/io.netty/netty-codec-http2@4.2.0.Alpha1
purl pkg:maven/io.netty/netty-codec-http2@4.2.0.Alpha1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-cs79-xzk6-4kgp
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http2@4.2.0.Alpha1
154
url pkg:maven/io.netty/netty-codec-http2@4.2.3.Final
purl pkg:maven/io.netty/netty-codec-http2@4.2.3.Final
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/io.netty/netty-codec-http2@4.2.3.Final
155
url pkg:rpm/redhat/eap7-jackson-annotations@2.8.11-2.redhat_00004.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-jackson-annotations@2.8.11-2.redhat_00004.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-annotations@2.8.11-2.redhat_00004.1.ep7%3Farch=el7
156
url pkg:rpm/redhat/eap7-jackson-annotations@2.10.4-4.redhat_00008.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jackson-annotations@2.10.4-4.redhat_00008.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-annotations@2.10.4-4.redhat_00008.1%3Farch=el7eap
157
url pkg:rpm/redhat/eap7-jackson-core@2.8.11-3.redhat_00004.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-jackson-core@2.8.11-3.redhat_00004.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-core@2.8.11-3.redhat_00004.1.ep7%3Farch=el7
158
url pkg:rpm/redhat/eap7-jackson-core@2.10.4-4.redhat_00008.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jackson-core@2.10.4-4.redhat_00008.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-core@2.10.4-4.redhat_00008.1%3Farch=el7eap
159
url pkg:rpm/redhat/eap7-jackson-databind@2.10.4-6.redhat_00008.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jackson-databind@2.10.4-6.redhat_00008.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-databind@2.10.4-6.redhat_00008.1%3Farch=el7eap
160
url pkg:rpm/redhat/eap7-jackson-jaxrs-providers@2.8.11-3.redhat_00004.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-jackson-jaxrs-providers@2.8.11-3.redhat_00004.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-jaxrs-providers@2.8.11-3.redhat_00004.1.ep7%3Farch=el7
161
url pkg:rpm/redhat/eap7-jackson-jaxrs-providers@2.10.4-4.redhat_00008.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jackson-jaxrs-providers@2.10.4-4.redhat_00008.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-jaxrs-providers@2.10.4-4.redhat_00008.1%3Farch=el7eap
162
url pkg:rpm/redhat/eap7-jackson-module-jaxb-annotations@2.8.11-3.redhat_00004.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-jackson-module-jaxb-annotations@2.8.11-3.redhat_00004.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-module-jaxb-annotations@2.8.11-3.redhat_00004.1.ep7%3Farch=el7
163
url pkg:rpm/redhat/eap7-jackson-modules-base@2.10.4-6.redhat_00008.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jackson-modules-base@2.10.4-6.redhat_00008.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-modules-base@2.10.4-6.redhat_00008.1%3Farch=el7eap
164
url pkg:rpm/redhat/eap7-jackson-modules-java8@2.8.11-2.redhat_00004.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-jackson-modules-java8@2.8.11-2.redhat_00004.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-modules-java8@2.8.11-2.redhat_00004.1.ep7%3Farch=el7
165
url pkg:rpm/redhat/eap7-jackson-modules-java8@2.10.4-3.redhat_00008.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jackson-modules-java8@2.10.4-3.redhat_00008.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jackson-modules-java8@2.10.4-3.redhat_00008.1%3Farch=el7eap
166
url pkg:rpm/redhat/eap7-jboss-server-migration@1.7.2-20.Final_redhat_00021.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jboss-server-migration@1.7.2-20.Final_redhat_00021.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-server-migration@1.7.2-20.Final_redhat_00021.1%3Farch=el7eap
167
url pkg:rpm/redhat/eap7-netty@4.1.63-3.Final_redhat_00004.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-netty@4.1.63-3.Final_redhat_00004.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty@4.1.63-3.Final_redhat_00004.1.ep7%3Farch=el7
168
url pkg:rpm/redhat/eap7-netty@4.1.63-6.Final_redhat_00004.1?arch=el7eap
purl pkg:rpm/redhat/eap7-netty@4.1.63-6.Final_redhat_00004.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty@4.1.63-6.Final_redhat_00004.1%3Farch=el7eap
169
url pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1%3Farch=el9eap
170
url pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1%3Farch=el7eap
171
url pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty@4.1.124-1.Final_redhat_00001.1%3Farch=el8eap
172
url pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1%3Farch=el7eap
173
url pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1%3Farch=el8eap
174
url pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.124-1.Final_redhat_00001.1%3Farch=el9eap
175
url pkg:rpm/redhat/eap7-undertow@1.4.18-18.SP16_redhat_00001.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-undertow@1.4.18-18.SP16_redhat_00001.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-undertow@1.4.18-18.SP16_redhat_00001.1.ep7%3Farch=el7
176
url pkg:rpm/redhat/eap7-undertow@2.0.41-6.SP7_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-undertow@2.0.41-6.SP7_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-undertow@2.0.41-6.SP7_redhat_00001.1%3Farch=el7eap
177
url pkg:rpm/redhat/eap7-wildfly@7.1.13-6.GA_redhat_00002.1.ep7?arch=el7
purl pkg:rpm/redhat/eap7-wildfly@7.1.13-6.GA_redhat_00002.1.ep7?arch=el7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.1.13-6.GA_redhat_00002.1.ep7%3Farch=el7
178
url pkg:rpm/redhat/eap7-wildfly@7.3.16-3.GA_redhat_00003.1?arch=el7eap
purl pkg:rpm/redhat/eap7-wildfly@7.3.16-3.GA_redhat_00003.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-pwnn-qx48-ykae
2
vulnerability VCID-xme8-usmd-vqg3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.3.16-3.GA_redhat_00003.1%3Farch=el7eap
179
url pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1?arch=el7eap
purl pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rvj-nz7h-m7ek
1
vulnerability VCID-8p2e-63th-gqge
2
vulnerability VCID-huxp-ctsp-fqay
3
vulnerability VCID-kk1t-t63f-rqg2
4
vulnerability VCID-ns3p-22xg-q3bz
5
vulnerability VCID-pwnn-qx48-ykae
6
vulnerability VCID-qh9g-f6d2-zkeg
7
vulnerability VCID-qqu7-yqc6-rqab
8
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1%3Farch=el7eap
180
url pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rvj-nz7h-m7ek
1
vulnerability VCID-8p2e-63th-gqge
2
vulnerability VCID-huxp-ctsp-fqay
3
vulnerability VCID-kk1t-t63f-rqg2
4
vulnerability VCID-ns3p-22xg-q3bz
5
vulnerability VCID-pwnn-qx48-ykae
6
vulnerability VCID-qh9g-f6d2-zkeg
7
vulnerability VCID-qqu7-yqc6-rqab
8
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1%3Farch=el8eap
181
url pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rvj-nz7h-m7ek
1
vulnerability VCID-8p2e-63th-gqge
2
vulnerability VCID-huxp-ctsp-fqay
3
vulnerability VCID-kk1t-t63f-rqg2
4
vulnerability VCID-ns3p-22xg-q3bz
5
vulnerability VCID-pwnn-qx48-ykae
6
vulnerability VCID-qh9g-f6d2-zkeg
7
vulnerability VCID-qqu7-yqc6-rqab
8
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.4.24-4.GA_redhat_00002.1%3Farch=el9eap
182
url pkg:rpm/redhat/eap8-apache-commons-lang@3.18.0-1.redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap8-apache-commons-lang@3.18.0-1.redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-commons-lang@3.18.0-1.redhat_00002.1%3Farch=el9eap
183
url pkg:rpm/redhat/eap8-apache-commons-lang@3.18.0-1.redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap8-apache-commons-lang@3.18.0-1.redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-commons-lang@3.18.0-1.redhat_00002.1%3Farch=el8eap
184
url pkg:rpm/redhat/eap8-apache-cxf@4.0.9-4.redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap8-apache-cxf@4.0.9-4.redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-cxf@4.0.9-4.redhat_00002.1%3Farch=el9eap
185
url pkg:rpm/redhat/eap8-apache-cxf@4.0.9-4.redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap8-apache-cxf@4.0.9-4.redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-cxf@4.0.9-4.redhat_00002.1%3Farch=el8eap
186
url pkg:rpm/redhat/eap8-apache-cxf@4.0.9-5.redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap8-apache-cxf@4.0.9-5.redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-cxf@4.0.9-5.redhat_00002.1%3Farch=el9eap
187
url pkg:rpm/redhat/eap8-apache-cxf@4.0.9-5.redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap8-apache-cxf@4.0.9-5.redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-cxf@4.0.9-5.redhat_00002.1%3Farch=el8eap
188
url pkg:rpm/redhat/eap8-apache-cxf-xjc-utils@4.1.0-1.redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap8-apache-cxf-xjc-utils@4.1.0-1.redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-cxf-xjc-utils@4.1.0-1.redhat_00001.1%3Farch=el9eap
189
url pkg:rpm/redhat/eap8-apache-cxf-xjc-utils@4.1.0-1.redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap8-apache-cxf-xjc-utils@4.1.0-1.redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-apache-cxf-xjc-utils@4.1.0-1.redhat_00001.1%3Farch=el8eap
190
url pkg:rpm/redhat/eap8-eap-product-conf-parent@800.9.1-3.GA_redhat_00004.1?arch=el8eap
purl pkg:rpm/redhat/eap8-eap-product-conf-parent@800.9.1-3.GA_redhat_00004.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-eap-product-conf-parent@800.9.1-3.GA_redhat_00004.1%3Farch=el8eap
191
url pkg:rpm/redhat/eap8-eap-product-conf-parent@800.9.1-3.GA_redhat_00004.1?arch=el9eap
purl pkg:rpm/redhat/eap8-eap-product-conf-parent@800.9.1-3.GA_redhat_00004.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-eap-product-conf-parent@800.9.1-3.GA_redhat_00004.1%3Farch=el9eap
192
url pkg:rpm/redhat/eap8-eap-product-conf-parent@801.0.1-2.GA_redhat_00003.1?arch=el9eap
purl pkg:rpm/redhat/eap8-eap-product-conf-parent@801.0.1-2.GA_redhat_00003.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-eap-product-conf-parent@801.0.1-2.GA_redhat_00003.1%3Farch=el9eap
193
url pkg:rpm/redhat/eap8-eap-product-conf-parent@801.0.1-2.GA_redhat_00003.1?arch=el8eap
purl pkg:rpm/redhat/eap8-eap-product-conf-parent@801.0.1-2.GA_redhat_00003.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-eap-product-conf-parent@801.0.1-2.GA_redhat_00003.1%3Farch=el8eap
194
url pkg:rpm/redhat/eap8-jbossws-cxf@7.3.4-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap8-jbossws-cxf@7.3.4-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-jbossws-cxf@7.3.4-1.Final_redhat_00001.1%3Farch=el9eap
195
url pkg:rpm/redhat/eap8-jbossws-cxf@7.3.4-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap8-jbossws-cxf@7.3.4-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-jbossws-cxf@7.3.4-1.Final_redhat_00001.1%3Farch=el8eap
196
url pkg:rpm/redhat/eap8-netty@4.1.127-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap8-netty@4.1.127-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-netty@4.1.127-1.Final_redhat_00001.1%3Farch=el8eap
197
url pkg:rpm/redhat/eap8-netty@4.1.127-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap8-netty@4.1.127-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-netty@4.1.127-1.Final_redhat_00001.1%3Farch=el9eap
198
url pkg:rpm/redhat/eap8-netty-transport-native-epoll@4.1.127-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap8-netty-transport-native-epoll@4.1.127-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-netty-transport-native-epoll@4.1.127-1.Final_redhat_00001.1%3Farch=el8eap
199
url pkg:rpm/redhat/eap8-netty-transport-native-epoll@4.1.127-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap8-netty-transport-native-epoll@4.1.127-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-netty-transport-native-epoll@4.1.127-1.Final_redhat_00001.1%3Farch=el9eap
200
url pkg:rpm/redhat/eap8-opensaml@4.3.2-2.redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap8-opensaml@4.3.2-2.redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-opensaml@4.3.2-2.redhat_00002.1%3Farch=el9eap
201
url pkg:rpm/redhat/eap8-opensaml@4.3.2-2.redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap8-opensaml@4.3.2-2.redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-opensaml@4.3.2-2.redhat_00002.1%3Farch=el8eap
202
url pkg:rpm/redhat/eap8-wildfly@8.0.9-8.GA_redhat_00008.1?arch=el9eap
purl pkg:rpm/redhat/eap8-wildfly@8.0.9-8.GA_redhat_00008.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-wildfly@8.0.9-8.GA_redhat_00008.1%3Farch=el9eap
203
url pkg:rpm/redhat/eap8-wildfly@8.0.9-8.GA_redhat_00008.1?arch=el8eap
purl pkg:rpm/redhat/eap8-wildfly@8.0.9-8.GA_redhat_00008.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-wildfly@8.0.9-8.GA_redhat_00008.1%3Farch=el8eap
204
url pkg:rpm/redhat/eap8-wildfly@8.1.0-55.GA_redhat_00016.1?arch=el9eap
purl pkg:rpm/redhat/eap8-wildfly@8.1.0-55.GA_redhat_00016.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-wildfly@8.1.0-55.GA_redhat_00016.1%3Farch=el9eap
205
url pkg:rpm/redhat/eap8-wildfly@8.1.0-55.GA_redhat_00016.1?arch=el8eap
purl pkg:rpm/redhat/eap8-wildfly@8.1.0-55.GA_redhat_00016.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-wildfly@8.1.0-55.GA_redhat_00016.1%3Farch=el8eap
206
url pkg:rpm/redhat/eap8-wss4j@3.0.4-1.redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap8-wss4j@3.0.4-1.redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-wss4j@3.0.4-1.redhat_00002.1%3Farch=el9eap
207
url pkg:rpm/redhat/eap8-wss4j@3.0.4-1.redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap8-wss4j@3.0.4-1.redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-wss4j@3.0.4-1.redhat_00002.1%3Farch=el8eap
208
url pkg:rpm/redhat/eap8-xml-security@3.0.5-1.redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap8-xml-security@3.0.5-1.redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-xml-security@3.0.5-1.redhat_00001.1%3Farch=el8eap
209
url pkg:rpm/redhat/eap8-xml-security@3.0.5-1.redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap8-xml-security@3.0.5-1.redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-8p2e-63th-gqge
1
vulnerability VCID-n9u5-a8js-hbf2
2
vulnerability VCID-wnc6-kzv8-3qen
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap8-xml-security@3.0.5-1.redhat_00001.1%3Farch=el9eap
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2025-55163.json
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2025-55163.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2025-55163
reference_id
reference_type
scores
0
value 0.00028
scoring_system epss
scoring_elements 0.07757
published_at 2026-04-02T12:55:00Z
1
value 0.00028
scoring_system epss
scoring_elements 0.07803
published_at 2026-04-04T12:55:00Z
2
value 0.00036
scoring_system epss
scoring_elements 0.10776
published_at 2026-04-12T12:55:00Z
3
value 0.00036
scoring_system epss
scoring_elements 0.10807
published_at 2026-04-11T12:55:00Z
4
value 0.00036
scoring_system epss
scoring_elements 0.10793
published_at 2026-04-09T12:55:00Z
5
value 0.00036
scoring_system epss
scoring_elements 0.10737
published_at 2026-04-08T12:55:00Z
6
value 0.00036
scoring_system epss
scoring_elements 0.1066
published_at 2026-04-07T12:55:00Z
7
value 0.00036
scoring_system epss
scoring_elements 0.10616
published_at 2026-04-16T12:55:00Z
8
value 0.00036
scoring_system epss
scoring_elements 0.10752
published_at 2026-04-13T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2025-55163
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-55163
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-55163
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/grpc/grpc-java/commit/6462ef9a11980e168c21d90bbc7245c728fd1a7a
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/grpc/grpc-java/commit/6462ef9a11980e168c21d90bbc7245c728fd1a7a
5
reference_url https://github.com/netty/netty
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/netty/netty
6
reference_url https://github.com/netty/netty/commit/be53dc3c9acd9af2e20d0c3c07cd77115a594cf1
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/netty/netty/commit/be53dc3c9acd9af2e20d0c3c07cd77115a594cf1
7
reference_url https://github.com/netty/netty/security/advisories/GHSA-prj3-ccx8-p6x4
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
2
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
3
value HIGH
scoring_system generic_textual
scoring_elements
4
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-13T14:37:06Z/
url https://github.com/netty/netty/security/advisories/GHSA-prj3-ccx8-p6x4
8
reference_url https://nvd.nist.gov/vuln/detail/CVE-2025-55163
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2025-55163
9
reference_url https://www.kb.cert.org/vuls/id/767506
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
url https://www.kb.cert.org/vuls/id/767506
10
reference_url http://www.openwall.com/lists/oss-security/2025/08/16/1
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value 8.2
scoring_system cvssv4
scoring_elements CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
2
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2025/08/16/1
11
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111105
reference_id 1111105
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111105
12
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2388252
reference_id 2388252
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2388252
13
reference_url https://github.com/advisories/GHSA-prj3-ccx8-p6x4
reference_id GHSA-prj3-ccx8-p6x4
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-prj3-ccx8-p6x4
14
reference_url https://access.redhat.com/errata/RHSA-2025:14004
reference_id RHSA-2025:14004
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:14004
15
reference_url https://access.redhat.com/errata/RHSA-2025:14008
reference_id RHSA-2025:14008
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:14008
16
reference_url https://access.redhat.com/errata/RHSA-2025:14197
reference_id RHSA-2025:14197
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:14197
17
reference_url https://access.redhat.com/errata/RHSA-2025:14911
reference_id RHSA-2025:14911
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:14911
18
reference_url https://access.redhat.com/errata/RHSA-2025:14919
reference_id RHSA-2025:14919
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:14919
19
reference_url https://access.redhat.com/errata/RHSA-2025:15612
reference_id RHSA-2025:15612
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:15612
20
reference_url https://access.redhat.com/errata/RHSA-2025:15697
reference_id RHSA-2025:15697
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:15697
21
reference_url https://access.redhat.com/errata/RHSA-2025:16407
reference_id RHSA-2025:16407
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:16407
22
reference_url https://access.redhat.com/errata/RHSA-2025:17298
reference_id RHSA-2025:17298
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:17298
23
reference_url https://access.redhat.com/errata/RHSA-2025:17299
reference_id RHSA-2025:17299
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:17299
24
reference_url https://access.redhat.com/errata/RHSA-2025:17317
reference_id RHSA-2025:17317
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:17317
25
reference_url https://access.redhat.com/errata/RHSA-2025:17318
reference_id RHSA-2025:17318
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:17318
26
reference_url https://access.redhat.com/errata/RHSA-2025:17501
reference_id RHSA-2025:17501
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:17501
27
reference_url https://access.redhat.com/errata/RHSA-2025:18989
reference_id RHSA-2025:18989
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:18989
28
reference_url https://access.redhat.com/errata/RHSA-2026:0742
reference_id RHSA-2026:0742
reference_type
scores
url https://access.redhat.com/errata/RHSA-2026:0742
Weaknesses
0
cwe_id 770
name Allocation of Resources Without Limits or Throttling
description The product allocates a reusable resource or group of resources on behalf of an actor without imposing any restrictions on the size or number of resources that can be allocated, in violation of the intended security policy for that actor.
1
cwe_id 937
name OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013.
2
cwe_id 1035
name OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017.
Exploits
Severity_range_score7.0 - 8.9
Exploitability0.5
Weighted_severity8.0
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-8p2e-63th-gqge