File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22# See https://aquasecurity.github.io/trivy/v0.35/docs/vulnerability/examples/filter/
33# for more details
44
5- # gnutls DoS vulnerability via crafted ClientHello - not impactful as gnutls is not used by our Java service
6- # See: UID2-6655
7- CVE-2026-1584 exp:2026-08-27
8- # gnutls DoS vulnerability via DTLS zero-length record - not impactful as gnutls is not used by our Java service
9- # See: UID2-7008
10- CVE-2026-33845 exp:2026-11-04
11- # gnutls DoS vulnerability via heap buffer overflow in DTLS handshake - not impactful as gnutls is not used by our Java service
12- # See: UID2-7012
13- CVE-2026-33846 exp:2026-11-05
14-
155# jackson-core async parser DoS - not exploitable, services only use synchronous ObjectMapper API
166# See: UID2-6670
177GHSA-72hv-8253-57qq exp:2026-09-01
8+
9+ # CVE-2026-42577 — netty-transport-native-epoll DoS via RST on half-closed TCP connection.
10+ # Advisory: https://github.com/netty/netty/security/advisories/GHSA-rwm7-x88c-3g2p
11+ # Server-side bug; netty maintainers backported the fix only to 4.2.13.Final and we run on
12+ # vert.x 4 / netty 4.1.x. This service sits behind authenticated load balancers (mTLS / API
13+ # gateway) so anonymous external attackers cannot reach the netty epoll socket directly;
14+ # LB-level connection limits and idle timeouts further cap the blast radius. CVSS impact is
15+ # Availability only (C:N/I:N/A:H). Tracking via UID2-7035; revisit on vert.x 5 migration.
16+ CVE-2026-42577 exp:2026-06-08
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ COPY ./target/${JAR_NAME}-${JAR_VERSION}-sources.jar /app
1616COPY ./conf/default-config.json /app/conf/
1717COPY ./conf/*.xml /app/conf/
1818
19- RUN apk add --no-cache --upgrade libpng libcrypto3 libssl3 musl musl-utils && adduser -D uid2-core && mkdir -p /app && chmod 705 -R /app && mkdir -p /app/file-uploads && chmod 777 -R /app/file-uploads && mkdir -p /app/pod_terminating && chmod 777 -R /app/pod_terminating
19+ RUN apk add --no-cache --upgrade libpng libcrypto3 libssl3 musl musl-utils gnutls && adduser -D uid2-core && mkdir -p /app && chmod 705 -R /app && mkdir -p /app/file-uploads && chmod 777 -R /app/file-uploads && mkdir -p /app/pod_terminating && chmod 777 -R /app/pod_terminating
2020USER uid2-core
2121
2222CMD java \
Original file line number Diff line number Diff line change 2525 <launcher .class>io.vertx.core.Launcher</launcher .class>
2626
2727 <uid2-shared .version>11.4.16</uid2-shared .version>
28- <netty .version>4.1.132 .Final</netty .version>
28+ <netty .version>4.1.133 .Final</netty .version>
2929 <image .version>${project.version} </image .version>
3030 </properties >
3131
You can’t perform that action at this time.
0 commit comments