Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-45536 (GCVE-0-2026-45536)
Vulnerability from cvelistv5 – Published: 2026-06-12 14:12 – Updated: 2026-06-12 15:05| URL | Tags |
|---|---|
| https://github.com/netty/netty/security/advisorie… | x_refsource_CONFIRM |
| https://github.com/netty/netty/releases/tag/netty… | x_refsource_MISC |
| https://github.com/netty/netty/releases/tag/netty… | x_refsource_MISC |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-45536",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-06-12T15:05:26.043862Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-06-12T15:05:36.411Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "netty",
"vendor": "netty",
"versions": [
{
"status": "affected",
"version": "\u003e= 4.2.0.Final, \u003c 4.2.15.Final"
},
{
"status": "affected",
"version": "\u003c 4.1.135.Final"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) \u2014 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking \u2192 EAGAIN \u2192 Java maps to 0 \u2192 read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-200",
"description": "CWE-200: Exposure of Sensitive Information to an Unauthorized Actor",
"lang": "en",
"type": "CWE"
}
]
},
{
"descriptions": [
{
"cweId": "CWE-772",
"description": "CWE-772: Missing Release of Resource after Effective Lifetime",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-06-12T14:12:48.126Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9"
},
{
"name": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"name": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
}
],
"source": {
"advisory": "GHSA-w573-9ffj-6ff9",
"discovery": "UNKNOWN"
},
"title": "Netty: Unix-socket fd receive leaks descriptors when peer sends two at once"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-45536",
"datePublished": "2026-06-12T14:12:48.126Z",
"dateReserved": "2026-05-12T17:48:47.878Z",
"dateUpdated": "2026-06-12T15:05:36.411Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-45536",
"date": "2026-08-10",
"epss": "0.00136",
"percentile": "0.03438"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-45536\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-06-12T15:16:27.073\",\"lastModified\":\"2026-06-17T10:52:10.480\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) \u2014 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking \u2192 EAGAIN \u2192 Java maps to 0 \u2192 read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"netty\",\"product\":\"netty\",\"versions\":[{\"version\":\"\u003e= 4.2.0.Final, \u003c 4.2.15.Final\",\"status\":\"affected\"},{\"version\":\"\u003c 4.1.135.Final\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\"baseScore\":4.0,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"LOW\"},\"exploitabilityScore\":2.5,\"impactScore\":1.4}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-06-12T15:05:26.043862Z\",\"id\":\"CVE-2026-45536\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-200\"},{\"lang\":\"en\",\"value\":\"CWE-772\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:netty:netty:*:*:*:*:*:*:*:*\",\"versionEndExcluding\":\"4.1.135\",\"matchCriteriaId\":\"3097D962-A32D-4467-AAE7-F4CBA3A349D2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:netty:netty:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.2.0\",\"versionEndExcluding\":\"4.2.15\",\"matchCriteriaId\":\"413D4611-A46C-4BE4-AB2F-D86282F65984\"}]}]}],\"references\":[{\"url\":\"https://github.com/netty/netty/releases/tag/netty-4.1.135.Final\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Release Notes\"]},{\"url\":\"https://github.com/netty/netty/releases/tag/netty-4.2.15.Final\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Release Notes\"]},{\"url\":\"https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Vendor Advisory\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-08-04T21:23:08+00:00",
"cve": "CVE-2026-45536",
"id": "CVE-2026-45536",
"initial_release_date": "2026-06-12T14:12:48.126000+00:00",
"product_status:fixed": "1",
"product_status:known_affected": "38",
"product_status:known_not_affected": "9",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "netty-transport-native-epoll: netty-transport-native-kqueue: Netty: Denial of Service due to file descriptor leak in SCM_RIGHTS message handling",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-45536.json",
"version": "3"
},
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-45536\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-06-12T15:05:26.043862Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-06-12T15:05:29.688Z\"}}], \"cna\": {\"title\": \"Netty: Unix-socket fd receive leaks descriptors when peer sends two at once\", \"source\": {\"advisory\": \"GHSA-w573-9ffj-6ff9\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 4, \"attackVector\": \"LOCAL\", \"baseSeverity\": \"MEDIUM\", \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"LOW\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"NONE\"}}], \"affected\": [{\"vendor\": \"netty\", \"product\": \"netty\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003e= 4.2.0.Final, \u003c 4.2.15.Final\"}, {\"status\": \"affected\", \"version\": \"\u003c 4.1.135.Final\"}]}], \"references\": [{\"url\": \"https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9\", \"name\": \"https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9\", \"tags\": [\"x_refsource_CONFIRM\"]}, {\"url\": \"https://github.com/netty/netty/releases/tag/netty-4.1.135.Final\", \"name\": \"https://github.com/netty/netty/releases/tag/netty-4.1.135.Final\", \"tags\": [\"x_refsource_MISC\"]}, {\"url\": \"https://github.com/netty/netty/releases/tag/netty-4.2.15.Final\", \"name\": \"https://github.com/netty/netty/releases/tag/netty-4.2.15.Final\", \"tags\": [\"x_refsource_MISC\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) \\u2014 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking \\u2192 EAGAIN \\u2192 Java maps to 0 \\u2192 read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-200\", \"description\": \"CWE-200: Exposure of Sensitive Information to an Unauthorized Actor\"}]}, {\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-772\", \"description\": \"CWE-772: Missing Release of Resource after Effective Lifetime\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-06-12T14:12:48.126Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-45536\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-06-12T15:05:36.411Z\", \"dateReserved\": \"2026-05-12T17:48:47.878Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-06-12T14:12:48.126Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
cleanstart-2026-ww01909
Vulnerability from cleanstart
Package keycloak version 26.3.5-r3 fixes 24 vulnerabilities: CVE-2026-42583, CVE-2026-42579, CVE-2026-44893, CVE-2026-48059, CVE-2026-33870...
| URL | Type | |
|---|---|---|
{
"affected": [
{
"package": {
"ecosystem": "Alpine",
"name": "keycloak"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "26.3.5-r3"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"26.3.5-r3"
]
}
],
"credits": [],
"database_specific": {},
"details": "Package keycloak version 26.3.5-r3 fixes 24 vulnerabilities: CVE-2026-42583, CVE-2026-42579, CVE-2026-44893, CVE-2026-48059, CVE-2026-33870...",
"id": "CLEANSTART-2026-WW01909",
"modified": "2026-07-30T09:39:32Z",
"published": "2026-07-30T07:10:53Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/keycloak/keycloak"
}
],
"related": [],
"schema_version": "1.7.3",
"summary": "Security fixes in keycloak 26.3.5-r3",
"upstream": [
"CVE-2026-42583",
"CVE-2026-42579",
"CVE-2026-44893",
"CVE-2026-48059",
"CVE-2026-33870",
"CVE-2026-42584",
"CVE-2026-42587",
"CVE-2026-33871",
"CVE-2026-44249",
"CVE-2026-45416",
"CVE-2026-50010",
"CVE-2026-45674",
"CVE-2026-47691",
"CVE-2026-45536",
"CVE-2026-6860",
"CVE-2026-1002",
"CVE-2026-0636",
"CVE-2026-5588",
"CVE-2026-42198",
"CVE-2025-59250",
"CVE-2025-66021",
"ghsa-72hv-8253-57qq",
"CVE-2026-39852",
"CVE-2025-66560"
]
}
cleanstart-2026-yy96069
Vulnerability from cleanstart
Multiple security vulnerabilities affect the keycloak package. These issues are resolved in later releases. See references for individual vulnerability details.
{
"affected": [
{
"package": {
"ecosystem": "CleanStart",
"name": "keycloak"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "26.6.3-r2"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [],
"database_specific": {},
"details": "Multiple security vulnerabilities affect the keycloak package. These issues are resolved in later releases. See references for individual vulnerability details.",
"id": "CLEANSTART-2026-YY96069",
"modified": "2026-07-03T09:44:40Z",
"published": "2026-07-21T08:30:17.774242Z",
"references": [
{
"type": "ADVISORY",
"url": "https://github.com/cleanstart-dev/cleanstart-security-advisories/tree/main/advisories/2026/CLEANSTART-2026-YY96069.json"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2025-59250"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-0636"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-33870"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-33871"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-39852"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-41417"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42198"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42577"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42578"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42579"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42580"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42581"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42583"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42584"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42585"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-42587"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-44249"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-44893"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-45416"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-45536"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-45673"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-45674"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-47244"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-47691"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-48043"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-48059"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-50010"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-50020"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-50560"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-5588"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/CVE-2026-5598"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-3qp7-7mw8-wx86"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-563q-j3cm-6jxm"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-5pvg-856g-cp85"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-5x3r-wrvg-rp6q"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-676x-f7gg-47vc"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-72hv-8253-57qq"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-98qh-xjc8-98pq"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-c2gf-v879-257j"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-c3fc-8qff-9hwx"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-c653-97m9-rcg9"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-cc37-9q2j-3hfv"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-h2qv-fj59-j46j"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-hvcg-qmg6-jm4c"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-p93r-85wp-75v3"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-pwqr-wmgm-9rr8"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-rc95-pcm8-65v9"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-v8h7-rr48-vmmv"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-w573-9ffj-6ff9"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-w9fj-cfpg-grvv"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-wg6q-6289-32hp"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-x4gw-5cx5-pgmh"
},
{
"type": "WEB",
"url": "https://osv.dev/vulnerability/ghsa-xmv7-r254-6q78"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-59250"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-0636"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33870"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33871"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-39852"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41417"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42198"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42577"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42578"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42579"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42580"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42581"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42583"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42584"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42585"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42587"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44249"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44893"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45416"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45536"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45673"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45674"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47244"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47691"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48043"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48059"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50010"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50020"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50560"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5588"
},
{
"type": "WEB",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5598"
}
],
"related": [],
"schema_version": "1.7.3",
"summary": "Security fixes for CVE-2025-59250, CVE-2026-0636, CVE-2026-33870, CVE-2026-33871, CVE-2026-39852, CVE-2026-41417, CVE-2026-42198, CVE-2026-42577, CVE-2026-42578, CVE-2026-42579, CVE-2026-42580, CVE-2026-42581, CVE-2026-42583, CVE-2026-42584, CVE-2026-42585, CVE-2026-42587, CVE-2026-44249, CVE-2026-44893, CVE-2026-45416, CVE-2026-45536, CVE-2026-45673, CVE-2026-45674, CVE-2026-47244, CVE-2026-47691, CVE-2026-48043, CVE-2026-48059, CVE-2026-50010, CVE-2026-50020, CVE-2026-50560, CVE-2026-5588, CVE-2026-5598, ghsa-3qp7-7mw8-wx86, ghsa-563q-j3cm-6jxm, ghsa-5pvg-856g-cp85, ghsa-5x3r-wrvg-rp6q, ghsa-676x-f7gg-47vc, ghsa-72hv-8253-57qq, ghsa-98qh-xjc8-98pq, ghsa-c2gf-v879-257j, ghsa-c3fc-8qff-9hwx, ghsa-c653-97m9-rcg9, ghsa-cc37-9q2j-3hfv, ghsa-h2qv-fj59-j46j, ghsa-hvcg-qmg6-jm4c, ghsa-p93r-85wp-75v3, ghsa-pwqr-wmgm-9rr8, ghsa-rc95-pcm8-65v9, ghsa-v8h7-rr48-vmmv, ghsa-w573-9ffj-6ff9, ghsa-w9fj-cfpg-grvv, ghsa-wg6q-6289-32hp, ghsa-x4gw-5cx5-pgmh, ghsa-xmv7-r254-6q78 applied in versions: 26.5.6-r3, 26.6.1-r1, 26.6.3-r2",
"upstream": [
"CVE-2025-59250",
"CVE-2026-0636",
"CVE-2026-33870",
"CVE-2026-33871",
"CVE-2026-39852",
"CVE-2026-41417",
"CVE-2026-42198",
"CVE-2026-42577",
"CVE-2026-42578",
"CVE-2026-42579",
"CVE-2026-42580",
"CVE-2026-42581",
"CVE-2026-42583",
"CVE-2026-42584",
"CVE-2026-42585",
"CVE-2026-42587",
"CVE-2026-44249",
"CVE-2026-44893",
"CVE-2026-45416",
"CVE-2026-45536",
"CVE-2026-45673",
"CVE-2026-45674",
"CVE-2026-47244",
"CVE-2026-47691",
"CVE-2026-48043",
"CVE-2026-48059",
"CVE-2026-50010",
"CVE-2026-50020",
"CVE-2026-50560",
"CVE-2026-5588",
"CVE-2026-5598",
"ghsa-3qp7-7mw8-wx86",
"ghsa-563q-j3cm-6jxm",
"ghsa-5pvg-856g-cp85",
"ghsa-5x3r-wrvg-rp6q",
"ghsa-676x-f7gg-47vc",
"ghsa-72hv-8253-57qq",
"ghsa-98qh-xjc8-98pq",
"ghsa-c2gf-v879-257j",
"ghsa-c3fc-8qff-9hwx",
"ghsa-c653-97m9-rcg9",
"ghsa-cc37-9q2j-3hfv",
"ghsa-h2qv-fj59-j46j",
"ghsa-hvcg-qmg6-jm4c",
"ghsa-p93r-85wp-75v3",
"ghsa-pwqr-wmgm-9rr8",
"ghsa-rc95-pcm8-65v9",
"ghsa-v8h7-rr48-vmmv",
"ghsa-w573-9ffj-6ff9",
"ghsa-w9fj-cfpg-grvv",
"ghsa-wg6q-6289-32hp",
"ghsa-x4gw-5cx5-pgmh",
"ghsa-xmv7-r254-6q78"
]
}
cleanstart-2026-zh81233
Vulnerability from cleanstart
Package elasticsearch version 9.4.3-r1 fixes 7 vulnerabilities: ghsa-72hv-8253-57qq, CVE-2026-59949, CVE-2026-54399, CVE-2026-54428, CVE-2026-41715...
| URL | Type | |
|---|---|---|
{
"affected": [
{
"package": {
"ecosystem": "Alpine",
"name": "elasticsearch"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "9.4.3-r1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"9.4.3-r1"
]
}
],
"credits": [],
"database_specific": {},
"details": "Package elasticsearch version 9.4.3-r1 fixes 7 vulnerabilities: ghsa-72hv-8253-57qq, CVE-2026-59949, CVE-2026-54399, CVE-2026-54428, CVE-2026-41715...",
"id": "CLEANSTART-2026-ZH81233",
"modified": "2026-07-30T09:37:46Z",
"published": "2026-07-30T07:10:53Z",
"references": [
{
"type": "WEB",
"url": "https://www.elastic.co/products/elasticsearch"
}
],
"related": [],
"schema_version": "1.7.3",
"summary": "Security fixes in elasticsearch 9.4.3-r1",
"upstream": [
"ghsa-72hv-8253-57qq",
"CVE-2026-59949",
"CVE-2026-54399",
"CVE-2026-54428",
"CVE-2026-41715",
"CVE-2026-42579",
"CVE-2026-45536"
]
}
FKIE_CVE-2026-45536
Vulnerability from fkie_nvd - Published: 2026-06-12 15:16 - Updated: 2026-06-17 10:52| URL | Tags | ||
|---|---|---|---|
| security-advisories@github.com | https://github.com/netty/netty/releases/tag/netty-4.1.135.Final | Release Notes | |
| security-advisories@github.com | https://github.com/netty/netty/releases/tag/netty-4.2.15.Final | Release Notes | |
| security-advisories@github.com | https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9 | Vendor Advisory |
{
"affected": [
{
"affectedData": [
{
"product": "netty",
"vendor": "netty",
"versions": [
{
"status": "affected",
"version": "\u003e= 4.2.0.Final, \u003c 4.2.15.Final"
},
{
"status": "affected",
"version": "\u003c 4.1.135.Final"
}
]
}
],
"source": "security-advisories@github.com"
}
],
"configurations": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:a:netty:netty:*:*:*:*:*:*:*:*",
"matchCriteriaId": "3097D962-A32D-4467-AAE7-F4CBA3A349D2",
"versionEndExcluding": "4.1.135",
"vulnerable": true
},
{
"criteria": "cpe:2.3:a:netty:netty:*:*:*:*:*:*:*:*",
"matchCriteriaId": "413D4611-A46C-4BE4-AB2F-D86282F65984",
"versionEndExcluding": "4.2.15",
"versionStartIncluding": "4.2.0",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) \u2014 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking \u2192 EAGAIN \u2192 Java maps to 0 \u2192 read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue."
}
],
"id": "CVE-2026-45536",
"lastModified": "2026-06-17T10:52:10.480",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"exploitabilityScore": 2.5,
"impactScore": 1.4,
"source": "security-advisories@github.com",
"type": "Secondary"
}
],
"ssvcV203": [
{
"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"ssvcData": {
"id": "CVE-2026-45536",
"options": [
{
"exploitation": "none"
},
{
"automatable": "no"
},
{
"technicalImpact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-06-12T15:05:26.043862Z",
"version": "2.0.3"
}
}
]
},
"published": "2026-06-12T15:16:27.073",
"references": [
{
"source": "security-advisories@github.com",
"tags": [
"Release Notes"
],
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"source": "security-advisories@github.com",
"tags": [
"Release Notes"
],
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"source": "security-advisories@github.com",
"tags": [
"Vendor Advisory"
],
"url": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9"
}
],
"sourceIdentifier": "security-advisories@github.com",
"vulnStatus": "Analyzed",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "CWE-200"
},
{
"lang": "en",
"value": "CWE-772"
}
],
"source": "security-advisories@github.com",
"type": "Secondary"
}
]
}
GHSA-W573-9FFJ-6FF9
Vulnerability from github – Published: 2026-06-08 23:01 – Updated: 2026-06-12 19:29netty_unix_socket_recvFd sets msg_control to char control[CMSG_SPACE(sizeof(int))] (line 940) — 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check cmsg->cmsg_len == CMSG_LEN(sizeof(int)) (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking → EAGAIN → Java maps to 0 → read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default).
{
"affected": [
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 4.2.14.Final"
},
"package": {
"ecosystem": "Maven",
"name": "io.netty:netty-transport-native-epoll"
},
"ranges": [
{
"events": [
{
"introduced": "4.2.0.Final"
},
{
"fixed": "4.2.15.Final"
}
],
"type": "ECOSYSTEM"
}
]
},
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 4.2.14.Final"
},
"package": {
"ecosystem": "Maven",
"name": "io.netty:netty-transport-native-kqueue"
},
"ranges": [
{
"events": [
{
"introduced": "4.2.0.Final"
},
{
"fixed": "4.2.15.Final"
}
],
"type": "ECOSYSTEM"
}
]
},
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 4.1.134.Final"
},
"package": {
"ecosystem": "Maven",
"name": "io.netty:netty-transport-native-kqueue"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "4.1.135.Final"
}
],
"type": "ECOSYSTEM"
}
]
},
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 4.1.134.Final"
},
"package": {
"ecosystem": "Maven",
"name": "io.netty:netty-transport-native-epoll"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "4.1.135.Final"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2026-45536"
],
"database_specific": {
"cwe_ids": [
"CWE-200",
"CWE-772"
],
"github_reviewed": true,
"github_reviewed_at": "2026-06-08T23:01:33Z",
"nvd_published_at": "2026-06-12T15:16:27Z",
"severity": "MODERATE"
},
"details": "netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) \u2014 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking \u2192 EAGAIN \u2192 Java maps to 0 \u2192 read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default).",
"id": "GHSA-w573-9ffj-6ff9",
"modified": "2026-06-12T19:29:26Z",
"published": "2026-06-08T23:01:33Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45536"
},
{
"type": "PACKAGE",
"url": "https://github.com/netty/netty"
},
{
"type": "WEB",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"type": "WEB",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"type": "CVSS_V3"
}
],
"summary": "Netty: Unix-socket fd receive leaks descriptors when peer sends two at once"
}
OPENSUSE-SU-2026:11033-1
Vulnerability from csaf_opensuse - Published: 2026-06-15 00:00 - Updated: 2026-06-15 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64 | — |
Vendor Fix
|
| URL | Category |
|---|---|
| https://www.suse.com/support/security/rating/ | external |
| https://ftp.suse.com/pub/projects/security/csaf/o… | self |
| https://www.suse.com/security/cve/CVE-2026-44249/ | self |
| https://www.suse.com/security/cve/CVE-2026-44250/ | self |
| https://www.suse.com/security/cve/CVE-2026-44890/ | self |
| https://www.suse.com/security/cve/CVE-2026-44893/ | self |
| https://www.suse.com/security/cve/CVE-2026-45416/ | self |
| https://www.suse.com/security/cve/CVE-2026-45536/ | self |
| https://www.suse.com/security/cve/CVE-2026-45673/ | self |
| https://www.suse.com/security/cve/CVE-2026-45674/ | self |
| https://www.suse.com/security/cve/CVE-2026-46340/ | self |
| https://www.suse.com/security/cve/CVE-2026-47244/ | self |
| https://www.suse.com/security/cve/CVE-2026-47691/ | self |
| https://www.suse.com/security/cve/CVE-2026-48006/ | self |
| https://www.suse.com/security/cve/CVE-2026-48043/ | self |
| https://www.suse.com/security/cve/CVE-2026-48059/ | self |
| https://www.suse.com/security/cve/CVE-2026-50010/ | self |
| https://www.suse.com/security/cve/CVE-2026-50011/ | self |
| https://www.suse.com/security/cve/CVE-2026-50020/ | self |
| https://www.suse.com/security/cve/CVE-2026-50560/ | self |
| https://www.suse.com/security/cve/CVE-2026-44249 | external |
| https://bugzilla.suse.com/1268165 | external |
| https://www.suse.com/security/cve/CVE-2026-44250 | external |
| https://bugzilla.suse.com/1268169 | external |
| https://www.suse.com/security/cve/CVE-2026-44890 | external |
| https://bugzilla.suse.com/1268170 | external |
| https://www.suse.com/security/cve/CVE-2026-44893 | external |
| https://bugzilla.suse.com/1268244 | external |
| https://www.suse.com/security/cve/CVE-2026-45416 | external |
| https://bugzilla.suse.com/1268246 | external |
| https://www.suse.com/security/cve/CVE-2026-45536 | external |
| https://bugzilla.suse.com/1268247 | external |
| https://www.suse.com/security/cve/CVE-2026-45673 | external |
| https://bugzilla.suse.com/1268248 | external |
| https://www.suse.com/security/cve/CVE-2026-45674 | external |
| https://bugzilla.suse.com/1268249 | external |
| https://www.suse.com/security/cve/CVE-2026-46340 | external |
| https://bugzilla.suse.com/1268250 | external |
| https://www.suse.com/security/cve/CVE-2026-47244 | external |
| https://bugzilla.suse.com/1268251 | external |
| https://www.suse.com/security/cve/CVE-2026-47691 | external |
| https://bugzilla.suse.com/1268252 | external |
| https://www.suse.com/security/cve/CVE-2026-48006 | external |
| https://bugzilla.suse.com/1268255 | external |
| https://www.suse.com/security/cve/CVE-2026-48043 | external |
| https://bugzilla.suse.com/1268257 | external |
| https://www.suse.com/security/cve/CVE-2026-48059 | external |
| https://bugzilla.suse.com/1268258 | external |
| https://www.suse.com/security/cve/CVE-2026-50010 | external |
| https://bugzilla.suse.com/1268259 | external |
| https://www.suse.com/security/cve/CVE-2026-50011 | external |
| https://bugzilla.suse.com/1268260 | external |
| https://www.suse.com/security/cve/CVE-2026-50020 | external |
| https://bugzilla.suse.com/1268261 | external |
| https://www.suse.com/security/cve/CVE-2026-50560 | external |
| https://bugzilla.suse.com/1268262 | external |
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "netty-4.1.135-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the netty-4.1.135-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2026-11033",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_11033-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-44249 page",
"url": "https://www.suse.com/security/cve/CVE-2026-44249/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-44250 page",
"url": "https://www.suse.com/security/cve/CVE-2026-44250/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-44890 page",
"url": "https://www.suse.com/security/cve/CVE-2026-44890/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-44893 page",
"url": "https://www.suse.com/security/cve/CVE-2026-44893/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-45416 page",
"url": "https://www.suse.com/security/cve/CVE-2026-45416/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-45536 page",
"url": "https://www.suse.com/security/cve/CVE-2026-45536/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-45673 page",
"url": "https://www.suse.com/security/cve/CVE-2026-45673/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-45674 page",
"url": "https://www.suse.com/security/cve/CVE-2026-45674/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46340 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46340/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-47244 page",
"url": "https://www.suse.com/security/cve/CVE-2026-47244/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-47691 page",
"url": "https://www.suse.com/security/cve/CVE-2026-47691/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-48006 page",
"url": "https://www.suse.com/security/cve/CVE-2026-48006/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-48043 page",
"url": "https://www.suse.com/security/cve/CVE-2026-48043/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-48059 page",
"url": "https://www.suse.com/security/cve/CVE-2026-48059/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-50010 page",
"url": "https://www.suse.com/security/cve/CVE-2026-50010/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-50011 page",
"url": "https://www.suse.com/security/cve/CVE-2026-50011/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-50020 page",
"url": "https://www.suse.com/security/cve/CVE-2026-50020/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-50560 page",
"url": "https://www.suse.com/security/cve/CVE-2026-50560/"
}
],
"title": "netty-4.1.135-1.1 on GA media",
"tracking": {
"current_release_date": "2026-06-15T00:00:00Z",
"generator": {
"date": "2026-06-15T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:11033-1",
"initial_release_date": "2026-06-15T00:00:00Z",
"revision_history": [
{
"date": "2026-06-15T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "netty-4.1.135-1.1.aarch64",
"product": {
"name": "netty-4.1.135-1.1.aarch64",
"product_id": "netty-4.1.135-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "netty-bom-4.1.135-1.1.aarch64",
"product": {
"name": "netty-bom-4.1.135-1.1.aarch64",
"product_id": "netty-bom-4.1.135-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "netty-javadoc-4.1.135-1.1.aarch64",
"product": {
"name": "netty-javadoc-4.1.135-1.1.aarch64",
"product_id": "netty-javadoc-4.1.135-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "netty-parent-4.1.135-1.1.aarch64",
"product": {
"name": "netty-parent-4.1.135-1.1.aarch64",
"product_id": "netty-parent-4.1.135-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "netty-4.1.135-1.1.ppc64le",
"product": {
"name": "netty-4.1.135-1.1.ppc64le",
"product_id": "netty-4.1.135-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "netty-bom-4.1.135-1.1.ppc64le",
"product": {
"name": "netty-bom-4.1.135-1.1.ppc64le",
"product_id": "netty-bom-4.1.135-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "netty-javadoc-4.1.135-1.1.ppc64le",
"product": {
"name": "netty-javadoc-4.1.135-1.1.ppc64le",
"product_id": "netty-javadoc-4.1.135-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "netty-parent-4.1.135-1.1.ppc64le",
"product": {
"name": "netty-parent-4.1.135-1.1.ppc64le",
"product_id": "netty-parent-4.1.135-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "netty-4.1.135-1.1.s390x",
"product": {
"name": "netty-4.1.135-1.1.s390x",
"product_id": "netty-4.1.135-1.1.s390x"
}
},
{
"category": "product_version",
"name": "netty-bom-4.1.135-1.1.s390x",
"product": {
"name": "netty-bom-4.1.135-1.1.s390x",
"product_id": "netty-bom-4.1.135-1.1.s390x"
}
},
{
"category": "product_version",
"name": "netty-javadoc-4.1.135-1.1.s390x",
"product": {
"name": "netty-javadoc-4.1.135-1.1.s390x",
"product_id": "netty-javadoc-4.1.135-1.1.s390x"
}
},
{
"category": "product_version",
"name": "netty-parent-4.1.135-1.1.s390x",
"product": {
"name": "netty-parent-4.1.135-1.1.s390x",
"product_id": "netty-parent-4.1.135-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "netty-4.1.135-1.1.x86_64",
"product": {
"name": "netty-4.1.135-1.1.x86_64",
"product_id": "netty-4.1.135-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "netty-bom-4.1.135-1.1.x86_64",
"product": {
"name": "netty-bom-4.1.135-1.1.x86_64",
"product_id": "netty-bom-4.1.135-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "netty-javadoc-4.1.135-1.1.x86_64",
"product": {
"name": "netty-javadoc-4.1.135-1.1.x86_64",
"product_id": "netty-javadoc-4.1.135-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "netty-parent-4.1.135-1.1.x86_64",
"product": {
"name": "netty-parent-4.1.135-1.1.x86_64",
"product_id": "netty-parent-4.1.135-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-4.1.135-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64"
},
"product_reference": "netty-4.1.135-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-4.1.135-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le"
},
"product_reference": "netty-4.1.135-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-4.1.135-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-4.1.135-1.1.s390x"
},
"product_reference": "netty-4.1.135-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-4.1.135-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64"
},
"product_reference": "netty-4.1.135-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-bom-4.1.135-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64"
},
"product_reference": "netty-bom-4.1.135-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-bom-4.1.135-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le"
},
"product_reference": "netty-bom-4.1.135-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-bom-4.1.135-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x"
},
"product_reference": "netty-bom-4.1.135-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-bom-4.1.135-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64"
},
"product_reference": "netty-bom-4.1.135-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-javadoc-4.1.135-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64"
},
"product_reference": "netty-javadoc-4.1.135-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-javadoc-4.1.135-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le"
},
"product_reference": "netty-javadoc-4.1.135-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-javadoc-4.1.135-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x"
},
"product_reference": "netty-javadoc-4.1.135-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-javadoc-4.1.135-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64"
},
"product_reference": "netty-javadoc-4.1.135-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-parent-4.1.135-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64"
},
"product_reference": "netty-parent-4.1.135-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-parent-4.1.135-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le"
},
"product_reference": "netty-parent-4.1.135-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-parent-4.1.135-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x"
},
"product_reference": "netty-parent-4.1.135-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "netty-parent-4.1.135-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
},
"product_reference": "netty-parent-4.1.135-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-44249",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-44249"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. In netty-handler prior to versions 4.1.135.Final and 4.2.15.Final, an attacker can bypass IPv6 subnet rules due to an incorrect masking operation in IpSubnetFilterRule.compareTo(). Valid public IP addresses can bypass the restrictions. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-44249",
"url": "https://www.suse.com/security/cve/CVE-2026-44249"
},
{
"category": "external",
"summary": "SUSE Bug 1268165 for CVE-2026-44249",
"url": "https://bugzilla.suse.com/1268165"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-44249"
},
{
"cve": "CVE-2026-44250",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-44250"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. In netty-codec-redis prior to versions 4.1.135.Final and 4.2.15.Final, an attacker can cause DoS by sending a crafted Redis payload with deeply nested arrays. This forces the server to allocate a massive number of state objects and collections, leading to memory exhaustion and an OutOfMemoryError. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-44250",
"url": "https://www.suse.com/security/cve/CVE-2026-44250"
},
{
"category": "external",
"summary": "SUSE Bug 1268169 for CVE-2026-44250",
"url": "https://bugzilla.suse.com/1268169"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-44250"
},
{
"cve": "CVE-2026-44890",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-44890"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. In netty-codec-redis prior to versions 4.1.135.Final and 4.2.15.Final, an attacker can cause DoS by sending crafted Redis payloads across multiple connections without `\\r\\n`. This exhausts the server\u0027s direct memory pool (OutOfDirectMemoryError), preventing legitimate connections from being processed. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-44890",
"url": "https://www.suse.com/security/cve/CVE-2026-44890"
},
{
"category": "external",
"summary": "SUSE Bug 1268170 for CVE-2026-44890",
"url": "https://bugzilla.suse.com/1268170"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-44890"
},
{
"cve": "CVE-2026-44893",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-44893"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. In netty-codec-haproxy prior to versions 4.1.135.Final and 4.2.15.Final, when decoding a PP2_TYPE_SSL TLV, HAProxyMessage.readNextTLV() first calls `header.retainedSlice(header.readerIndex(), length)` and only then reads the 1-byte client field and 4-byte verify field. If the attacker sets the TLV length below 5, the subsequent readByte/readInt throws IndexOutOfBoundsException. HAProxyMessageDecoder only catches HAProxyProtocolException around this call, so the IOOBE propagates and the retained slice on the pooled cumulation buffer is never released. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-44893",
"url": "https://www.suse.com/security/cve/CVE-2026-44893"
},
{
"category": "external",
"summary": "SUSE Bug 1268244 for CVE-2026-44893",
"url": "https://bugzilla.suse.com/1268244"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-44893"
},
{
"cve": "CVE-2026-45416",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-45416"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, SslClientHelloHandler.decode() reads the 24-bit TLS handshake length and, when the ClientHello does not fit in the first record, eagerly allocates `ctx.alloc().buffer(handshakeLength)` (line 161). The guard at line 140 is `handshakeLength \u003e maxClientHelloLength \u0026\u0026 maxClientHelloLength != 0`, and the commonly-used SniHandler/AbstractSniHandler constructors (SniHandler(Mapping), SniHandler(AsyncMapping), AbstractSniHandler()) pass maxClientHelloLength=0 and handshakeTimeoutMillis=0, so the length guard is disabled and no timeout is scheduled. A 16 MiB request exceeds the default pooled chunk size and becomes a huge/unpooled allocation performed immediately. The buffer is retained in the handler until the channel closes. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-45416",
"url": "https://www.suse.com/security/cve/CVE-2026-45416"
},
{
"category": "external",
"summary": "SUSE Bug 1268246 for CVE-2026-45416",
"url": "https://bugzilla.suse.com/1268246"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-45416"
},
{
"cve": "CVE-2026-45536",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-45536"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) - 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking -\u003e EAGAIN -\u003e Java maps to 0 -\u003e read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-45536",
"url": "https://www.suse.com/security/cve/CVE-2026-45536"
},
{
"category": "external",
"summary": "SUSE Bug 1268247 for CVE-2026-45536",
"url": "https://bugzilla.suse.com/1268247"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-45536"
},
{
"cve": "CVE-2026-45673",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-45673"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, Netty\u0027s DNS resolver uses a predictable PRNG for generating DNS transaction IDs and defaults to a static UDP source port. This combination reduces the entropy of DNS queries, enabling DNS Cache Poisoning (Kaminsky attack). Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-45673",
"url": "https://www.suse.com/security/cve/CVE-2026-45673"
},
{
"category": "external",
"summary": "SUSE Bug 1268248 for CVE-2026-45673",
"url": "https://bugzilla.suse.com/1268248"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-45673"
},
{
"cve": "CVE-2026-45674",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-45674"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, Netty\u0027s DnsResolveContext fails to validate the origin (bailiwick) of CNAME records in DNS responses. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-45674",
"url": "https://www.suse.com/security/cve/CVE-2026-45674"
},
{
"category": "external",
"summary": "SUSE Bug 1268249 for CVE-2026-45674",
"url": "https://bugzilla.suse.com/1268249"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-45674"
},
{
"cve": "CVE-2026-46340",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46340"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. In versions of netty-transport-sctp prior to 4.1.135.Final and 4.2.15.Final, for each non-complete SctpMessage fragment the handler does `fragments.put(streamId, Unpooled.wrappedBuffer(frag, byteBuf))`, wrapping the previous accumulator and the new slice into a *new* CompositeByteBuf every time. After N fragments the accumulator is an N-deep chain of composites, each holding references and component arrays; readableBytes()/getBytes() on the final buffer recurse N levels. There is no limit on N, on total bytes, or on the number of streamIdentifiers an attacker can open (each gets its own map entry). A peer that never sets the `complete` flag can grow this structure indefinitely from tiny 1-byte DATA chunks. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46340",
"url": "https://www.suse.com/security/cve/CVE-2026-46340"
},
{
"category": "external",
"summary": "SUSE Bug 1268250 for CVE-2026-46340",
"url": "https://bugzilla.suse.com/1268250"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-46340"
},
{
"cve": "CVE-2026-47244",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-47244"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, DefaultHttp2Connection.DefaultEndpoint initialises maxActiveStreams/maxStreams to Integer.MAX_VALUE, and Http2Settings never inserts SETTINGS_MAX_CONCURRENT_STREAMS by default (Http2Settings.java:305-307 only clamps a user-supplied value). Unless the application explicitly calls initialSettings().maxConcurrentStreams(n), a Netty HTTP/2 server advertises no limit and enforces none locally. Each open stream allocates a DefaultStream object, PropertyMap slots, flow-controller state and IntObjectHashMap entry; with ~2^30 permissible odd stream IDs a single TCP connection can create hundreds of thousands of long-lived stream objects. This is also the precondition for CVE-2023-44487-style Rapid-Reset amplification, where the absence of a low concurrent cap multiplies backend work. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-47244",
"url": "https://www.suse.com/security/cve/CVE-2026-47244"
},
{
"category": "external",
"summary": "SUSE Bug 1268251 for CVE-2026-47244",
"url": "https://bugzilla.suse.com/1268251"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-47244"
},
{
"cve": "CVE-2026-47691",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-47691"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, Netty\u0027s `DnsResolveContext` insufficiently validates the bailiwick of NS records, enabling DNS Cache Poisoning. An attacker controlling an authoritative name server for a subdomain can poison the cache for parent domains (like `.co.uk`). In `io.netty.resolver.dns.DnsResolveContext.AuthoritativeNameServerList#add` method accepts any NS record from the AUTHORITY section as long as the record\u0027s name is a suffix of the questionName. Subsequently, the `handleWithAdditional` method caches the associated A records from the ADDITIONAL section directly into the `authoritativeDnsServerCache` under the parent domain\u0027s key. This bypasses standard bailiwick rules, where a server authoritative for a subdomain should not be trusted to provide authoritative records for its parent. The poisoned cache is then used for all future resolutions under the parent domain\u0027s key. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-47691",
"url": "https://www.suse.com/security/cve/CVE-2026-47691"
},
{
"category": "external",
"summary": "SUSE Bug 1268252 for CVE-2026-47691",
"url": "https://bugzilla.suse.com/1268252"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-47691"
},
{
"cve": "CVE-2026-48006",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-48006"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, the RedisArrayAggregator handler permanently leaks pooled direct-memory buffers when a Redis pipeline connection closes before a RESP array aggregate completes. The handler retains child messages in per-handler state (`depths` field) but defines no `channelInactive`, `handlerRemoved`, or `exceptionCaught` method to release them when the pipeline tears down. Because the leaked buffers are slices of `PooledByteBufAllocator` chunks, they prevent those chunks from being returned to the JVM-wide direct-memory pool. Repeated connection churn by any network peer monotonically drains this shared pool, eventually causing allocation failures on all Netty channels in the process. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-48006",
"url": "https://www.suse.com/security/cve/CVE-2026-48006"
},
{
"category": "external",
"summary": "SUSE Bug 1268255 for CVE-2026-48006",
"url": "https://bugzilla.suse.com/1268255"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-48006"
},
{
"cve": "CVE-2026-48043",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-48043"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. In netty-codec-http2 prior to versions 4.1.135.Final and 4.2.15.Final, the `DelegatingDecompressorFrameListener` class orchestrates HTTP/2 decompression by embedding a per-stream `EmbeddedChannel` that runs the appropriate decompression codec (gzip, deflate, zstd) and forwards decompressed chunks to a wrapped listener. Each decompressed chunk is a pooled `ByteBuf` handed to an anonymous `ChannelInboundHandlerAdapter` tail handler, which becomes the sole owner responsible for releasing it. A remote peer could send frames that would result in the flow-controller throwing and so trigger a resource leak which at the end might take down the whole JVM due OOME. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-48043",
"url": "https://www.suse.com/security/cve/CVE-2026-48043"
},
{
"category": "external",
"summary": "SUSE Bug 1268257 for CVE-2026-48043",
"url": "https://bugzilla.suse.com/1268257"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-48043"
},
{
"cve": "CVE-2026-48059",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-48059"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, the HAProxy PROXY protocol v2 codec in netty leaks native or heap memory on every connection when a client sends a syntactically valid header containing nested `PP2_TYPE_SSL` TLVs (type-length-value records) at depth two or greater. The leak occurs on the successful parse path - no exception is thrown, the message fires downstream, the decoder removes itself, and the application releases the `HAProxyMessage` normally. Yet the underlying cumulation buffer (a pooled, potentially direct `ByteBuf` allocated by the channel) remains permanently pinned. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-48059",
"url": "https://www.suse.com/security/cve/CVE-2026-48059"
},
{
"category": "external",
"summary": "SUSE Bug 1268258 for CVE-2026-48059",
"url": "https://bugzilla.suse.com/1268258"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-48059"
},
{
"cve": "CVE-2026-50010",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-50010"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, SimpleTrustManagerFactory.engineGetTrustManagers() and related paths wrap any user-supplied plain X509TrustManager in X509TrustManagerWrapper, which extends X509ExtendedTrustManager but implements the 3-arg checkServerTrusted(chain, authType, SSLEngine) by discarding the SSLEngine and calling the 2-arg delegate. Because the object now IS an X509ExtendedTrustManager, neither SunJSSE\u0027s internal AbstractTrustManagerWrapper nor Netty\u0027s own OpenSslX509TrustManagerWrapper will re-wrap it to add endpoint-identification. Consequently, even though Netty 4.2 sets endpointIdentificationAlgorithm=\"HTTPS\" by default, a client built with `SslContextBuilder.forClient().trustManager(somePlainX509TrustManager)` performs no hostname verification at all. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-50010",
"url": "https://www.suse.com/security/cve/CVE-2026-50010"
},
{
"category": "external",
"summary": "SUSE Bug 1268259 for CVE-2026-50010",
"url": "https://bugzilla.suse.com/1268259"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-50010"
},
{
"cve": "CVE-2026-50011",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-50011"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, RedisArrayAggregator pre-allocates ArrayList with initial capacity equal to the RESP array element count declared in an array header. That count is taken from the wire before the corresponding child messages exist. A small malicious header can claim a huge initial capacity. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-50011",
"url": "https://www.suse.com/security/cve/CVE-2026-50011"
},
{
"category": "external",
"summary": "SUSE Bug 1268260 for CVE-2026-50011",
"url": "https://bugzilla.suse.com/1268260"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-50011"
},
{
"cve": "CVE-2026-50020",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-50020"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, before reading the first request-line, `HttpObjectDecoder` skips every byte for which `Character.isISOControl(b)` is `true` (0x00-0x1F and 0x7F) as well as all whitespace. RFC 9112 2.2 only asks servers to ignore empty CRLF lines preceding the request-line - a carefully scoped robustness allowance intended to handle HTTP/1.0 POST workarounds. Silently absorbing NUL bytes, SOH, STX, and other non-CRLF control characters goes significantly beyond this, and can be exploited for request-boundary confusion in pipelined or multiplexed transports where a front-end component treats those bytes differently. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-50020",
"url": "https://www.suse.com/security/cve/CVE-2026-50020"
},
{
"category": "external",
"summary": "SUSE Bug 1268261 for CVE-2026-50020",
"url": "https://bugzilla.suse.com/1268261"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-50020"
},
{
"cve": "CVE-2026-50560",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-50560"
}
],
"notes": [
{
"category": "general",
"text": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, Netty HTTP/2 max header size handling produces an attack similar to HTTP/2 Rapid Reset. There is a setting in the http2 specification called `SETTINGS_MAX_HEADER_LIST_SIZE`. When a client sends that setting to Netty, it appears that Netty will behave as follows: read the request; proxy the request to the origin; attempt to produce a response; and create an exception while writing the headers for the response. Functionally, this should be similar to the http2 reset attack, but with a different on-the-wire signature. Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-50560",
"url": "https://www.suse.com/security/cve/CVE-2026-50560"
},
{
"category": "external",
"summary": "SUSE Bug 1268262 for CVE-2026-50560",
"url": "https://bugzilla.suse.com/1268262"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:netty-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-bom-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-javadoc-4.1.135-1.1.x86_64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.aarch64",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.ppc64le",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.s390x",
"openSUSE Tumbleweed:netty-parent-4.1.135-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-15T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-50560"
}
]
}
RHSA-2026:50085
Vulnerability from csaf_redhat - Published: 2026-08-04 13:59 - Updated: 2026-08-08 16:33A flaw was found in Netty. A remote attacker can bypass the configured decompression limit in the HttpContentDecompressor by sending a specially crafted compressed payload using Brotli (br), Zstandard (zstd), or Snappy content encodings. This can lead to unbounded memory allocation, resulting in an out-of-memory Denial of Service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-handler, a component of the Netty network application framework. A remote attacker can exploit an incorrect masking operation in the IpSubnetFilterRule.compareTo() function to bypass configured IPv6 subnet rules. This allows valid public IP addresses to circumvent intended network restrictions, potentially leading to unauthorized access or exposure of services.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-codec-redis. A remote attacker can exploit this vulnerability by sending a specially crafted Redis payload containing deeply nested arrays. This action forces the server to allocate a large number of state objects and collections, leading to memory exhaustion. Consequently, this can result in a Denial of Service (DoS) condition, rendering the affected server unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-codec-redis. A remote attacker can exploit this vulnerability by sending specially crafted Redis payloads across multiple connections without proper termination. This can exhaust the server's direct memory pool, leading to a Denial of Service (DoS) condition where legitimate connections cannot be processed.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-codec-haproxy, a component of the Netty network application framework. A remote attacker can exploit this vulnerability by sending a specially crafted HAProxy message with a malformed PP2_TYPE_SSL TLV (Type-Length-Value) header. This can lead to an IndexOutOfBoundsException and prevent the release of retained memory, ultimately causing a Denial of Service (DoS) condition for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty, a network application framework. A remote attacker can exploit this vulnerability by sending a crafted TLS (Transport Layer Security) ClientHello message. This can lead to an eager allocation of a large memory buffer, causing a Denial of Service (DoS) due to excessive memory consumption. The issue occurs in the `SslClientHelloHandler.decode()` method when processing the TLS handshake length.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty, a network application framework. A local attacker could exploit a vulnerability in the `netty_unix_socket_recvFd` function when handling `SCM_RIGHTS` messages in `Epoll` or `KQueue DomainSocketChannel` with `DomainSocketReadMode.FILE_DESCRIPTORS` enabled. Incorrect handling of file descriptors could lead to a resource leak, resulting in a Denial of Service (DoS) due to exhaustion of available file descriptors.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty's DNS resolver component. This vulnerability arises from the use of a predictable pseudo-random number generator (PRNG) for DNS transaction IDs and a static User Datagram Protocol (UDP) source port. This combination significantly reduces the randomness of DNS queries, making it easier for a remote attacker to perform DNS Cache Poisoning, also known as a Kaminsky attack. Successful exploitation could allow an attacker to redirect network traffic to malicious servers.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty's DnsResolveContext. This vulnerability allows a remote attacker to achieve information disclosure or data manipulation by crafting malicious DNS responses. The flaw occurs because the DnsResolveContext fails to validate the origin (bailiwick) of CNAME records in DNS responses, which could enable an attacker to redirect network traffic or intercept sensitive data from affected applications.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-transport-sctp. A remote attacker can exploit this vulnerability by sending specially crafted, non-complete Stream Control Transmission Protocol (SCTP) message fragments. This can lead to unbounded memory growth within the application, causing a Denial of Service (DoS) condition. The affected component fails to limit the size or number of these fragments, allowing an attacker to consume excessive system resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty, a network application framework. A remote attacker can exploit this vulnerability by sending a large number of HTTP/2 stream requests to a Netty HTTP/2 server. If the server does not explicitly limit concurrent streams, it can lead to the allocation of numerous long-lived stream objects. This excessive resource consumption can result in a denial of service (DoS), making the server unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty's `DnsResolveContext`. An attacker controlling an authoritative name server for a subdomain can exploit this vulnerability by providing crafted NS records that are insufficiently validated. This allows the attacker to poison the DNS cache for parent domains, bypassing standard bailiwick rules. Consequently, future DNS resolutions for the affected parent domain will use the poisoned cache, potentially redirecting users to malicious servers and leading to information disclosure or integrity compromise.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-codec-redis. A remote attacker can exploit this vulnerability by repeatedly closing Redis pipeline connections before a Redis array aggregate completes. This leads to a permanent leak of direct-memory buffers, which prevents memory chunks from being returned to the shared memory pool. Over time, this can exhaust the available memory, causing a Denial of Service (DoS) for all Netty channels in the process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in netty-codec-http2. A remote attacker could send specially crafted frames that cause a resource leak within the `DelegatingDecompressorFrameListener` class. This resource leak could lead to an Out Of Memory Error (OOME), potentially causing a Denial of Service (DoS) by taking down the entire Java Virtual Machine (JVM).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in the Netty HAProxy PROXY protocol v2 codec. A remote attacker can exploit this vulnerability by sending a specially crafted HAProxy PROXY protocol v2 header with nested `PP2_TYPE_SSL` type-length-value (TLV) records. This can lead to a memory leak, causing the underlying cumulation buffer to remain permanently pinned and potentially resulting in a Denial of Service (DoS) due to resource exhaustion.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty, a network application framework. This vulnerability allows a remote attacker to bypass hostname verification due to improper handling of user-supplied trust managers. When a client is configured with a plain X.509 Trust Manager (X509TrustManager), it fails to perform necessary hostname checks, enabling an attacker to impersonate a legitimate server. This could lead to sensitive information disclosure or man-in-the-middle attacks.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty, a network application framework. The RedisArrayAggregator component pre-allocates memory based on the declared element count in a Redis array header. A remote attacker can exploit this by sending a small, malicious Redis array header that claims a huge initial capacity, leading to excessive memory pre-allocation. This can result in a denial of service (DoS) due to resource exhaustion.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty. The HttpObjectDecoder component, which processes incoming HTTP requests, incorrectly skips certain control characters and whitespace before reading the first request line. This behavior, which goes beyond standard HTTP protocol requirements, can lead to request-boundary confusion in systems that use pipelined or multiplexed transports. An attacker could exploit this to cause a front-end component to misinterpret HTTP request boundaries, potentially resulting in low integrity impact, such as unintended data manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
A flaw was found in Netty, a network application framework. A remote attacker can exploit a vulnerability in the HTTP/2 (Hypertext Transfer Protocol version 2) maximum header size handling. By sending a specific SETTINGS_MAX_HEADER_LIST_SIZE setting, an attacker can cause Netty to produce an exception when writing response headers. This issue is similar to an HTTP/2 Rapid Reset attack and can lead to a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat JBoss Enterprise Application Platform 8.1
Red Hat / Red Hat JBoss Enterprise Application Platform
|
cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9
|
— |
Vendor Fix
fix
Workaround
|
| URL | Category |
|---|---|
| https://access.redhat.com/errata/RHSA-2026:50085 | self |
| https://access.redhat.com/security/updates/classi… | external |
| https://docs.redhat.com/en/documentation/red_hat_… | external |
| https://docs.redhat.com/en/documentation/red_hat_… | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2477220 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488053 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488062 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488081 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488383 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488386 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488388 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488391 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488394 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488399 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488400 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488407 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488413 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488421 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488429 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488433 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488437 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488439 | external |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488442 | external |
| https://issues.redhat.com/browse/JBEAP-33612 | external |
| https://security.access.redhat.com/data/csaf/v2/a… | self |
| https://access.redhat.com/security/cve/CVE-2026-42587 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2477220 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-42587 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-42587 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-44249 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488081 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-44249 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-44249 | external |
| https://github.com/netty/netty/releases/tag/netty… | external |
| https://github.com/netty/netty/releases/tag/netty… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-44250 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488062 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-44250 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-44250 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-44890 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488053 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-44890 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-44890 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-44893 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488383 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-44893 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-44893 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-45416 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488391 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-45416 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-45416 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-45536 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488394 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-45536 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-45536 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-45673 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488386 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-45673 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-45673 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-45674 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488400 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-45674 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-45674 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-46340 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488388 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-46340 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-46340 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-47244 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488399 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-47244 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-47244 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-47691 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488439 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-47691 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-47691 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-48006 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488433 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-48006 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-48006 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-48043 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488442 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-48043 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-48043 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-48059 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488437 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-48059 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-48059 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-50010 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488429 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-50010 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-50010 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-50011 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488413 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-50011 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-50011 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-50020 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488421 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-50020 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-50020 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/security/cve/CVE-2026-50560 | self |
| https://bugzilla.redhat.com/show_bug.cgi?id=2488407 | external |
| https://www.cve.org/CVERecord?id=CVE-2026-50560 | external |
| https://nvd.nist.gov/vuln/detail/CVE-2026-50560 | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://www.rfc-editor.org/rfc/rfc9113.html#name-… | external |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "JBoss EAP XP 6.0.5.1 release on the EAP 8.1 base. See references for release notes.",
"title": "Topic"
},
{
"category": "general",
"text": "A security update is now available for Red Hat JBoss Enterprise Application Platform 8.1.7.1, XP 6.0.5.1. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.\n\nSecurity Fix(es):\n\n* memory exhaustion in io.netty:netty-codec-haproxy (CVE-2026-48059)\n\n* DNS cache poisoning in io.netty:netty-resolver-dns (CVE-2026-47691)\n\n* DDoS in io.netty:netty-codec-http2 (CVE-2026-50560)\n\n* memory exhaustion in io.netty:netty-codec-redis (CVE-2026-50011)\n\n* memory exhaustion in io.netty:netty-codec-redis (CVE-2026-44250)\n\n* memory exhaustion in io.netty:netty-codec-redis (CVE-2026-44890)\n\n* IPv6 subnet filter bypass in io.netty:netty-handler (CVE-2026-44249)\n\n* request smuggling in io.netty:netty-codec-http (CVE-2026-50020)\n\n* memory leak in io.netty:netty-codec-haproxy (CVE-2026-44893)\n\n* TLS hostname verification accidentally disabled in io.netty:netty-handler (CVE-2026-50010)\n\n* DNS cache poisoning in io.netty:netty-resolver-dns (CVE-2026-45673)\n\n* excessive memory usage from SNIHandler in io.netty:netty-handler (CVE-2026-45416)\n\n* file descriptor leak in io.netty:netty-transport-native-epoll and io.netty:netty-transport-native-kqueue (CVE-2026-45536)\n\n* DNS cache poisoning in io.netty:netty-resolver-dns (CVE-2026-45674)\n\n* memory exhaustion in io.netty:netty-transport-sctp (CVE-2026-46340)\n\n* denial of service in io.netty:netty-codec-http2 (CVE-2026-47244)\n\n* memory exhaustion in io.netty:netty-codec-redis (CVE-2026-48006)\n\n* memory exhaustion in io.netty:netty-codec-http2 (CVE-2026-48043)\n\n* netty-codec-http2: Netty: Denial of Service via unbounded memory allocation in HTTP content decompression (CVE-2026-42587)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:50085",
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_jboss_enterprise_application_platform/8.1",
"url": "https://docs.redhat.com/en/documentation/red_hat_jboss_enterprise_application_platform/8.1"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_jboss_enterprise_application_platform/8.1/html-single/red_hat_jboss_eap_xp_6.0_release_notes/index",
"url": "https://docs.redhat.com/en/documentation/red_hat_jboss_enterprise_application_platform/8.1/html-single/red_hat_jboss_eap_xp_6.0_release_notes/index"
},
{
"category": "external",
"summary": "2477220",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2477220"
},
{
"category": "external",
"summary": "2488053",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488053"
},
{
"category": "external",
"summary": "2488062",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488062"
},
{
"category": "external",
"summary": "2488081",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488081"
},
{
"category": "external",
"summary": "2488383",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488383"
},
{
"category": "external",
"summary": "2488386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488386"
},
{
"category": "external",
"summary": "2488388",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488388"
},
{
"category": "external",
"summary": "2488391",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488391"
},
{
"category": "external",
"summary": "2488394",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488394"
},
{
"category": "external",
"summary": "2488399",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488399"
},
{
"category": "external",
"summary": "2488400",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488400"
},
{
"category": "external",
"summary": "2488407",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488407"
},
{
"category": "external",
"summary": "2488413",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488413"
},
{
"category": "external",
"summary": "2488421",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488421"
},
{
"category": "external",
"summary": "2488429",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488429"
},
{
"category": "external",
"summary": "2488433",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488433"
},
{
"category": "external",
"summary": "2488437",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488437"
},
{
"category": "external",
"summary": "2488439",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488439"
},
{
"category": "external",
"summary": "2488442",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488442"
},
{
"category": "external",
"summary": "JBEAP-33612",
"url": "https://issues.redhat.com/browse/JBEAP-33612"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_50085.json"
}
],
"title": "Red Hat Security Advisory: Red Hat JBoss Enterprise Application Platform 8.1.7.1 XP 6.0.5.1 release",
"tracking": {
"current_release_date": "2026-08-08T16:33:21+00:00",
"generator": {
"date": "2026-08-08T16:33:21+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.12"
}
},
"id": "RHSA-2026:50085",
"initial_release_date": "2026-08-04T13:59:30+00:00",
"revision_history": [
{
"date": "2026-08-04T13:59:30+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-08-04T13:59:30+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-08-08T16:33:21+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat JBoss Enterprise Application Platform 8.1",
"product": {
"name": "Red Hat JBoss Enterprise Application Platform 8.1",
"product_id": "Red Hat JBoss Enterprise Application Platform 8.1",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:jboss_enterprise_application_platform:8.1::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat JBoss Enterprise Application Platform"
}
],
"category": "vendor",
"name": "Red Hat"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-42587",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-05-13T19:01:35.415881+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2477220"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty. A remote attacker can bypass the configured decompression limit in the HttpContentDecompressor by sending a specially crafted compressed payload using Brotli (br), Zstandard (zstd), or Snappy content encodings. This can lead to unbounded memory allocation, resulting in an out-of-memory Denial of Service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty: io.netty/netty-codec-http: io.netty/netty-codec-http2: Netty: Denial of Service via unbounded memory allocation in HTTP content decompression",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service vulnerability in Netty\u0027s HTTP content decompression. A remote attacker can exploit this flaw by sending specially crafted compressed payloads using Brotli, Zstandard, or Snappy encodings, bypassing configured decompression limits. This leads to unbounded memory allocation, potentially causing an out-of-memory condition and rendering affected Red Hat systems unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42587"
},
{
"category": "external",
"summary": "RHBZ#2477220",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2477220"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42587",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42587"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42587",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42587"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-f6hv-jmp6-3vwv",
"url": "https://github.com/netty/netty/security/advisories/GHSA-f6hv-jmp6-3vwv"
}
],
"release_date": "2026-05-13T18:22:21.699000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty: io.netty/netty-codec-http: io.netty/netty-codec-http2: Netty: Denial of Service via unbounded memory allocation in HTTP content decompression"
},
{
"cve": "CVE-2026-44249",
"cwe": {
"id": "CWE-1287",
"name": "Improper Validation of Specified Type of Input"
},
"discovery_date": "2026-06-11T22:02:05.327173+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488081"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-handler, a component of the Netty network application framework. A remote attacker can exploit an incorrect masking operation in the IpSubnetFilterRule.compareTo() function to bypass configured IPv6 subnet rules. This allows valid public IP addresses to circumvent intended network restrictions, potentially leading to unauthorized access or exposure of services.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-handler: netty-handler: IPv6 subnet rule bypass due to incorrect masking operation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability in netty-handler is rated as Important because a remote attacker can bypass configured IPv6 subnet filtering rules. This flaw, stemming from an incorrect masking operation, could allow unauthorized access to or exposure of services that are intended to be network-restricted within Red Hat products utilizing the affected Netty component.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44249"
},
{
"category": "external",
"summary": "RHBZ#2488081",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488081"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44249",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44249"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44249",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44249"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-3qp7-7mw8-wx86",
"url": "https://github.com/netty/netty/security/advisories/GHSA-3qp7-7mw8-wx86"
}
],
"release_date": "2026-06-11T20:46:14.110000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-handler: netty-handler: IPv6 subnet rule bypass due to incorrect masking operation"
},
{
"cve": "CVE-2026-44250",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-11T22:01:16.373607+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488062"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-codec-redis. A remote attacker can exploit this vulnerability by sending a specially crafted Redis payload containing deeply nested arrays. This action forces the server to allocate a large number of state objects and collections, leading to memory exhaustion. Consequently, this can result in a Denial of Service (DoS) condition, rendering the affected server unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-redis: netty-codec-redis: Denial of Service via crafted Redis payload with deeply nested arrays",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service vulnerability in netty-codec-redis, affecting Red Hat products that process Redis payloads. A remote attacker can exhaust server memory by sending a crafted Redis payload with deeply nested arrays, leading to an OutOfMemoryError and rendering the service unresponsive. This impact is significant due to the potential for complete service disruption without authentication.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44250"
},
{
"category": "external",
"summary": "RHBZ#2488062",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488062"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44250",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44250"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44250",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44250"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-3244-j874-rhc2",
"url": "https://github.com/netty/netty/security/advisories/GHSA-3244-j874-rhc2"
}
],
"release_date": "2026-06-11T20:49:00.487000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "To mitigate this issue, restrict network access to services utilizing netty-codec-redis to trusted clients and networks only. Implement firewall rules to limit exposure of the Redis service or the application using it to prevent unauthenticated remote attackers from sending malicious payloads. This may impact legitimate client connections if not configured carefully. A service restart may be required for firewall rule changes to take effect.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-redis: netty-codec-redis: Denial of Service via crafted Redis payload with deeply nested arrays"
},
{
"cve": "CVE-2026-44890",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-11T22:00:53.322242+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488053"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-codec-redis. A remote attacker can exploit this vulnerability by sending specially crafted Redis payloads across multiple connections without proper termination. This can exhaust the server\u0027s direct memory pool, leading to a Denial of Service (DoS) condition where legitimate connections cannot be processed.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-redis: netty-codec-redis: Denial of Service via crafted Redis payloads",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is rated as Important as it allows a remote, unauthenticated attacker to cause a denial of service in applications utilizing `netty-codec-redis` or `netty-handler`. By sending specially crafted Redis payloads without proper termination, an attacker can exhaust the server\u0027s direct memory pool, preventing legitimate connections and disrupting service availability. This impacts Red Hat products that process Redis traffic via affected Netty components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44890"
},
{
"category": "external",
"summary": "RHBZ#2488053",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488053"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44890",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44890"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44890",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44890"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-6ghj-frrj-jjj3",
"url": "https://github.com/netty/netty/security/advisories/GHSA-6ghj-frrj-jjj3"
}
],
"release_date": "2026-06-11T20:52:50.980000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-redis: netty-codec-redis: Denial of Service via crafted Redis payloads"
},
{
"cve": "CVE-2026-44893",
"cwe": {
"id": "CWE-805",
"name": "Buffer Access with Incorrect Length Value"
},
"discovery_date": "2026-06-12T15:01:18.066312+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488383"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-codec-haproxy, a component of the Netty network application framework. A remote attacker can exploit this vulnerability by sending a specially crafted HAProxy message with a malformed PP2_TYPE_SSL TLV (Type-Length-Value) header. This can lead to an IndexOutOfBoundsException and prevent the release of retained memory, ultimately causing a Denial of Service (DoS) condition for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-haproxy: Netty-codec-haproxy: Denial of Service via malformed HAProxy message",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is rated as Important because a remote, unauthenticated attacker can trigger a denial of service in applications utilizing `netty-codec-haproxy`. By sending a specially crafted HAProxy message with a malformed SSL TLV header, an attacker can cause an `IndexOutOfBoundsException`, leading to unreleased memory and resource exhaustion. This can render the affected application unresponsive.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44893"
},
{
"category": "external",
"summary": "RHBZ#2488383",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488383"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44893",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44893"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44893",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44893"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-cc37-9q2j-3hfv",
"url": "https://github.com/netty/netty/security/advisories/GHSA-cc37-9q2j-3hfv"
}
],
"release_date": "2026-06-12T14:00:25.801000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-haproxy: Netty-codec-haproxy: Denial of Service via malformed HAProxy message"
},
{
"cve": "CVE-2026-45416",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-12T15:01:45.671884+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488391"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty, a network application framework. A remote attacker can exploit this vulnerability by sending a crafted TLS (Transport Layer Security) ClientHello message. This can lead to an eager allocation of a large memory buffer, causing a Denial of Service (DoS) due to excessive memory consumption. The issue occurs in the `SslClientHelloHandler.decode()` method when processing the TLS handshake length.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-handler: Netty: Denial of Service due to eager buffer allocation in TLS handshake",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability in Netty is rated as Important. It allows a remote attacker to trigger a denial of service by sending a specially crafted TLS ClientHello message. The flaw arises from an eager, unbounded memory allocation during the TLS handshake, particularly when default configurations disable the maximum client hello length guard, leading to excessive resource consumption in affected Red Hat products utilizing Netty.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-45416"
},
{
"category": "external",
"summary": "RHBZ#2488391",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488391"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-45416",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45416"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-45416",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45416"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-x4gw-5cx5-pgmh",
"url": "https://github.com/netty/netty/security/advisories/GHSA-x4gw-5cx5-pgmh"
}
],
"release_date": "2026-06-12T14:10:05.585000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "To mitigate this issue, configure applications utilizing Netty\u0027s `SslClientHelloHandler` to specify a non-zero value for the `maxClientHelloLength` parameter. This will enable the internal length validation, preventing the eager allocation of large memory buffers when processing crafted TLS ClientHello messages. Refer to your specific application\u0027s documentation for details on configuring Netty\u0027s TLS handler. A restart of the affected application or service is required for the configuration changes to take effect.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-handler: Netty: Denial of Service due to eager buffer allocation in TLS handshake"
},
{
"cve": "CVE-2026-45536",
"cwe": {
"id": "CWE-167",
"name": "Improper Handling of Additional Special Element"
},
"discovery_date": "2026-06-12T15:01:55.919712+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488394"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty, a network application framework. A local attacker could exploit a vulnerability in the `netty_unix_socket_recvFd` function when handling `SCM_RIGHTS` messages in `Epoll` or `KQueue DomainSocketChannel` with `DomainSocketReadMode.FILE_DESCRIPTORS` enabled. Incorrect handling of file descriptors could lead to a resource leak, resulting in a Denial of Service (DoS) due to exhaustion of available file descriptors.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-transport-native-epoll: netty-transport-native-kqueue: Netty: Denial of Service due to file descriptor leak in SCM_RIGHTS message handling",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Moderate impact flaw in Netty can lead to a denial of service due to file descriptor exhaustion. The vulnerability requires a local attacker and is only exploitable when applications explicitly enable `DomainSocketReadMode.FILE_DESCRIPTORS` in `Epoll` or `KQueue DomainSocketChannel`, which is not a default configuration in Red Hat products. This significantly reduces the attack surface to specific, custom deployments.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-45536"
},
{
"category": "external",
"summary": "RHBZ#2488394",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488394"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-45536",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45536"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-45536",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45536"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9",
"url": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9"
}
],
"release_date": "2026-06-12T14:12:48.126000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "To mitigate this issue, ensure that `DomainSocketReadMode.FILE_DESCRIPTORS` is not enabled in applications utilizing Netty\u0027s `Epoll` or `KQueue DomainSocketChannel`. This feature is not enabled by default, and disabling it prevents the file descriptor leak that could lead to a Denial of Service.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "netty-transport-native-epoll: netty-transport-native-kqueue: Netty: Denial of Service due to file descriptor leak in SCM_RIGHTS message handling"
},
{
"cve": "CVE-2026-45673",
"cwe": {
"id": "CWE-1241",
"name": "Use of Predictable Algorithm in Random Number Generator"
},
"discovery_date": "2026-06-12T15:01:28.171757+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty\u0027s DNS resolver component. This vulnerability arises from the use of a predictable pseudo-random number generator (PRNG) for DNS transaction IDs and a static User Datagram Protocol (UDP) source port. This combination significantly reduces the randomness of DNS queries, making it easier for a remote attacker to perform DNS Cache Poisoning, also known as a Kaminsky attack. Successful exploitation could allow an attacker to redirect network traffic to malicious servers.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-resolver-dns: Netty DNS resolver: DNS Cache Poisoning via predictable transaction IDs",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Moderate: This flaw in Netty\u0027s DNS resolver could allow a remote attacker to perform DNS cache poisoning. The vulnerability stems from the use of a predictable pseudo-random number generator for DNS transaction IDs and a static UDP source port, which reduces the entropy of DNS queries. This makes it easier for an attacker to redirect network traffic to malicious servers, potentially leading to traffic interception or Man-in-the-Middle attacks for applications using the default Netty DNS resolver in Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-45673"
},
{
"category": "external",
"summary": "RHBZ#2488386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-45673",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45673"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-45673",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45673"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-xmv7-r254-6q78",
"url": "https://github.com/netty/netty/security/advisories/GHSA-xmv7-r254-6q78"
}
],
"release_date": "2026-06-12T14:16:03.968000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "netty-resolver-dns: Netty DNS resolver: DNS Cache Poisoning via predictable transaction IDs"
},
{
"cve": "CVE-2026-45674",
"cwe": {
"id": "CWE-346",
"name": "Origin Validation Error"
},
"discovery_date": "2026-06-12T15:02:15.565158+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488400"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty\u0027s DnsResolveContext. This vulnerability allows a remote attacker to achieve information disclosure or data manipulation by crafting malicious DNS responses. The flaw occurs because the DnsResolveContext fails to validate the origin (bailiwick) of CNAME records in DNS responses, which could enable an attacker to redirect network traffic or intercept sensitive data from affected applications.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-resolver-dns: Netty: Information disclosure and data manipulation due to improper CNAME record validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Important severity flaw in Netty\u0027s DnsResolveContext allows a remote attacker to achieve information disclosure or data manipulation. By crafting malicious DNS responses, an attacker could redirect network traffic or intercept sensitive data, impacting applications utilizing Netty for DNS resolution in Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-45674"
},
{
"category": "external",
"summary": "RHBZ#2488400",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488400"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-45674",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45674"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-45674",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45674"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-676x-f7gg-47vc",
"url": "https://github.com/netty/netty/security/advisories/GHSA-676x-f7gg-47vc"
}
],
"release_date": "2026-06-12T14:17:50.203000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-resolver-dns: Netty: Information disclosure and data manipulation due to improper CNAME record validation"
},
{
"cve": "CVE-2026-46340",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-12T15:01:34.090215+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488388"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-transport-sctp. A remote attacker can exploit this vulnerability by sending specially crafted, non-complete Stream Control Transmission Protocol (SCTP) message fragments. This can lead to unbounded memory growth within the application, causing a Denial of Service (DoS) condition. The affected component fails to limit the size or number of these fragments, allowing an attacker to consume excessive system resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-transport-sctp: Netty-transport-sctp: Denial of Service due to unbounded memory growth from SctpMessage fragments",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "An Important denial of service flaw exists in `netty-transport-sctp`, a component used across various Red Hat products. A remote, unauthenticated attacker can exploit this vulnerability by sending fragmented Stream Control Transmission Protocol (SCTP) messages without the completion flag. This leads to unbounded memory growth and resource exhaustion, causing a complete denial of service for applications utilizing the affected Netty component.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46340"
},
{
"category": "external",
"summary": "RHBZ#2488388",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488388"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46340",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46340"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46340",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46340"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-5xrh-qmmq-w6ch",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5xrh-qmmq-w6ch"
}
],
"release_date": "2026-06-12T14:19:48.855000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-transport-sctp: Netty-transport-sctp: Denial of Service due to unbounded memory growth from SctpMessage fragments"
},
{
"cve": "CVE-2026-47244",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-12T15:02:11.516632+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488399"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty, a network application framework. A remote attacker can exploit this vulnerability by sending a large number of HTTP/2 stream requests to a Netty HTTP/2 server. If the server does not explicitly limit concurrent streams, it can lead to the allocation of numerous long-lived stream objects. This excessive resource consumption can result in a denial of service (DoS), making the server unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-http2: Netty: Denial of Service via uncontrolled HTTP/2 concurrent streams",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Moderate impact flaw in Netty\u0027s HTTP/2 implementation can lead to a denial of service in Red Hat products that utilize Netty as an HTTP/2 server without explicitly configured limits on concurrent streams. An attacker can exhaust server resources by initiating numerous HTTP/2 stream requests, rendering the service unavailable. The impact is limited to denial of service and requires a specific server configuration to be exploitable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-47244"
},
{
"category": "external",
"summary": "RHBZ#2488399",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488399"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-47244",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47244"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-47244",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47244"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-5x3r-wrvg-rp6q",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5x3r-wrvg-rp6q"
}
],
"release_date": "2026-06-12T14:23:50.316000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Configure affected applications using Netty HTTP/2 servers to explicitly set a maximum concurrent streams limit. Consult product-specific documentation for instructions on how to apply this configuration. Additionally, restrict network access to affected services to trusted clients and networks by implementing firewall rules or other network access controls. This may impact legitimate traffic if not carefully configured.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "netty-codec-http2: Netty: Denial of Service via uncontrolled HTTP/2 concurrent streams"
},
{
"cve": "CVE-2026-47691",
"cwe": {
"id": "CWE-346",
"name": "Origin Validation Error"
},
"discovery_date": "2026-06-12T16:02:45.855856+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488439"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty\u0027s `DnsResolveContext`. An attacker controlling an authoritative name server for a subdomain can exploit this vulnerability by providing crafted NS records that are insufficiently validated. This allows the attacker to poison the DNS cache for parent domains, bypassing standard bailiwick rules. Consequently, future DNS resolutions for the affected parent domain will use the poisoned cache, potentially redirecting users to malicious servers and leading to information disclosure or integrity compromise.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "io.netty/netty-resolver-dns: Netty has Insufficient Bailiwick Validation for NS Records",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Important flaw in Netty\u0027s DNS resolution component, `netty-resolver-dns`, allows for DNS cache poisoning. An attacker with control over an authoritative name server for a subdomain could exploit this vulnerability to inject malicious DNS records into the cache of parent domains. This could lead to redirection of network traffic, impacting the integrity and availability of services relying on DNS resolution within affected Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-47691"
},
{
"category": "external",
"summary": "RHBZ#2488439",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488439"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-47691",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47691"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-47691",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47691"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-5pvg-856g-cp85",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5pvg-856g-cp85"
}
],
"release_date": "2026-06-12T14:33:16.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "io.netty/netty-resolver-dns: Netty has Insufficient Bailiwick Validation for NS Records"
},
{
"cve": "CVE-2026-48006",
"cwe": {
"id": "CWE-772",
"name": "Missing Release of Resource after Effective Lifetime"
},
"discovery_date": "2026-06-12T16:02:27.195680+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488433"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-codec-redis. A remote attacker can exploit this vulnerability by repeatedly closing Redis pipeline connections before a Redis array aggregate completes. This leads to a permanent leak of direct-memory buffers, which prevents memory chunks from being returned to the shared memory pool. Over time, this can exhaust the available memory, causing a Denial of Service (DoS) for all Netty channels in the process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-redis: Netty\u0027s Lack of Lifecycle Cleanup Leads to Pooled ByteBuf Leak in RedisArrayAggregator",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service vulnerability in Netty\u0027s RedisArrayAggregator. Repeated connection churn by a network peer can lead to a permanent leak of direct-memory buffers, eventually exhausting the JVM-wide direct-memory pool. This can cause allocation failures across all Netty channels, impacting the availability and stability of Red Hat products utilizing Netty for Redis communication.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-48006"
},
{
"category": "external",
"summary": "RHBZ#2488433",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488433"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-48006",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48006"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-48006",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48006"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-6jv9-x5w9-2ccm",
"url": "https://github.com/netty/netty/security/advisories/GHSA-6jv9-x5w9-2ccm"
}
],
"release_date": "2026-06-12T14:36:44.416000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-redis: Netty\u0027s Lack of Lifecycle Cleanup Leads to Pooled ByteBuf Leak in RedisArrayAggregator"
},
{
"cve": "CVE-2026-48043",
"cwe": {
"id": "CWE-772",
"name": "Missing Release of Resource after Effective Lifetime"
},
"discovery_date": "2026-06-12T16:02:56.371830+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488442"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in netty-codec-http2. A remote attacker could send specially crafted frames that cause a resource leak within the `DelegatingDecompressorFrameListener` class. This resource leak could lead to an Out Of Memory Error (OOME), potentially causing a Denial of Service (DoS) by taking down the entire Java Virtual Machine (JVM).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-http2: netty-codec-http2: Denial of Service due to resource leak",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw in netty-codec-http2, affecting Red Hat products that utilize HTTP/2 communication with decompression. A remote attacker can exploit a resource leak in the `DelegatingDecompressorFrameListener` by sending malformed HTTP/2 frames, potentially leading to an Out Of Memory Error and causing the Java Virtual Machine to terminate. This could disrupt service availability in affected deployments.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-48043"
},
{
"category": "external",
"summary": "RHBZ#2488442",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488442"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-48043",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48043"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-48043",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48043"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-c2gf-v879-257j",
"url": "https://github.com/netty/netty/security/advisories/GHSA-c2gf-v879-257j"
}
],
"release_date": "2026-06-12T14:39:52.498000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-http2: netty-codec-http2: Denial of Service due to resource leak"
},
{
"cve": "CVE-2026-48059",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-06-12T16:02:40.032749+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488437"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Netty HAProxy PROXY protocol v2 codec. A remote attacker can exploit this vulnerability by sending a specially crafted HAProxy PROXY protocol v2 header with nested `PP2_TYPE_SSL` type-length-value (TLV) records. This can lead to a memory leak, causing the underlying cumulation buffer to remain permanently pinned and potentially resulting in a Denial of Service (DoS) due to resource exhaustion.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-haproxy: Netty HAProxy PROXY protocol v2 codec: Denial of Service via memory leak from crafted PROXY protocol headers",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important flaw in the Netty HAProxy PROXY protocol v2 codec, which can lead to a denial of service. A remote attacker can trigger a memory leak by sending a specially crafted HAProxy PROXY protocol v2 header with deeply nested SSL TLV records, causing resource exhaustion in affected Red Hat products that utilize this codec.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-48059"
},
{
"category": "external",
"summary": "RHBZ#2488437",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488437"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-48059",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48059"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-48059",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48059"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-h2qv-fj59-j46j",
"url": "https://github.com/netty/netty/security/advisories/GHSA-h2qv-fj59-j46j"
}
],
"release_date": "2026-06-12T14:42:44.677000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-haproxy: Netty HAProxy PROXY protocol v2 codec: Denial of Service via memory leak from crafted PROXY protocol headers"
},
{
"cve": "CVE-2026-50010",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-06-12T16:02:13.735675+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488429"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty, a network application framework. This vulnerability allows a remote attacker to bypass hostname verification due to improper handling of user-supplied trust managers. When a client is configured with a plain X.509 Trust Manager (X509TrustManager), it fails to perform necessary hostname checks, enabling an attacker to impersonate a legitimate server. This could lead to sensitive information disclosure or man-in-the-middle attacks.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-handler: Netty: Improper trust manager handling leads to hostname verification bypass",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important flaw in Netty that affects Red Hat products utilizing the `netty-handler` component, including various Red Hat AMQ, Enterprise Application Platform, and OpenShift offerings. The vulnerability arises when a Netty client is configured with a plain X.509 Trust Manager, leading to a bypass of hostname verification. This oversight allows a remote attacker to perform man-in-the-middle attacks by impersonating a legitimate server, potentially compromising sensitive data.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-50010"
},
{
"category": "external",
"summary": "RHBZ#2488429",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488429"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-50010",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50010"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-50010",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50010"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-c653-97m9-rcg9",
"url": "https://github.com/netty/netty/security/advisories/GHSA-c653-97m9-rcg9"
}
],
"release_date": "2026-06-12T14:50:43.151000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-handler: Netty: Improper trust manager handling leads to hostname verification bypass"
},
{
"cve": "CVE-2026-50011",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-12T16:01:17.003045+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488413"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty, a network application framework. The RedisArrayAggregator component pre-allocates memory based on the declared element count in a Redis array header. A remote attacker can exploit this by sending a small, malicious Redis array header that claims a huge initial capacity, leading to excessive memory pre-allocation. This can result in a denial of service (DoS) due to resource exhaustion.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-redis: Netty: Denial of Service via malicious Redis array header",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service vulnerability in Netty\u0027s RedisArrayAggregator component. A remote, unauthenticated attacker can exploit this flaw by sending a specially crafted Redis array header, causing excessive memory pre-allocation and leading to resource exhaustion. This can disrupt services utilizing Netty for Redis communication.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-50011"
},
{
"category": "external",
"summary": "RHBZ#2488413",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488413"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-50011",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50011"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-50011",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50011"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-5w86-c3rq-vjj7",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5w86-c3rq-vjj7"
}
],
"release_date": "2026-06-12T14:52:18.042000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "To mitigate this issue, restrict network access to services that utilize the netty-codec-redis component and process Redis traffic. Configure firewalls or network access control lists (ACLs) to limit connections to these services from trusted networks or localhost only. This reduces the attack surface by preventing untrusted remote attackers from sending malicious Redis array headers. Consult product-specific documentation for detailed instructions on configuring network access for affected Red Hat products. Reloading or restarting services may be required for network configuration changes to take effect, which could temporarily impact availability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "netty-codec-redis: Netty: Denial of Service via malicious Redis array header"
},
{
"cve": "CVE-2026-50020",
"cwe": {
"id": "CWE-444",
"name": "Inconsistent Interpretation of HTTP Requests (\u0027HTTP Request/Response Smuggling\u0027)"
},
"discovery_date": "2026-06-12T16:01:51.804290+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488421"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty. The HttpObjectDecoder component, which processes incoming HTTP requests, incorrectly skips certain control characters and whitespace before reading the first request line. This behavior, which goes beyond standard HTTP protocol requirements, can lead to request-boundary confusion in systems that use pipelined or multiplexed transports. An attacker could exploit this to cause a front-end component to misinterpret HTTP request boundaries, potentially resulting in low integrity impact, such as unintended data manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-http: Netty: Data manipulation via request-boundary confusion in HttpObjectDecoder",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Moderate flaw in Netty\u0027s HttpObjectDecoder could lead to data manipulation in Red Hat products utilizing pipelined or multiplexed HTTP transports. The vulnerability arises from the decoder\u0027s over-permissive handling of control characters and whitespace, which can cause front-end components to misinterpret HTTP request boundaries. Exploitation requires a specific network configuration where front-end and back-end components process HTTP requests inconsistently, limiting the immediate impact on default installations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-50020"
},
{
"category": "external",
"summary": "RHBZ#2488421",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488421"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-50020",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50020"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-50020",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50020"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-hvcg-qmg6-jm4c",
"url": "https://github.com/netty/netty/security/advisories/GHSA-hvcg-qmg6-jm4c"
}
],
"release_date": "2026-06-12T14:55:32.165000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "netty-codec-http: Netty: Data manipulation via request-boundary confusion in HttpObjectDecoder"
},
{
"cve": "CVE-2026-50560",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-12T16:00:59.240952+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2488407"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Netty, a network application framework. A remote attacker can exploit a vulnerability in the HTTP/2 (Hypertext Transfer Protocol version 2) maximum header size handling. By sending a specific SETTINGS_MAX_HEADER_LIST_SIZE setting, an attacker can cause Netty to produce an exception when writing response headers. This issue is similar to an HTTP/2 Rapid Reset attack and can lead to a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "netty-codec-http2: Netty: Denial of Service due to HTTP/2 max header size handling",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in Netty\u0027s HTTP/2 protocol handling is rated Moderate. A remote, unauthenticated attacker can trigger a denial of service by sending a crafted `SETTINGS_MAX_HEADER_LIST_SIZE` frame, causing an exception during response header processing. This can disrupt services utilizing Netty for HTTP/2 communication.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-50560"
},
{
"category": "external",
"summary": "RHBZ#2488407",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2488407"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-50560",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50560"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-50560",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-50560"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
},
{
"category": "external",
"summary": "https://github.com/netty/netty/security/advisories/GHSA-563q-j3cm-6jxm",
"url": "https://github.com/netty/netty/security/advisories/GHSA-563q-j3cm-6jxm"
},
{
"category": "external",
"summary": "https://www.rfc-editor.org/rfc/rfc9113.html#name-defined-settings",
"url": "https://www.rfc-editor.org/rfc/rfc9113.html#name-defined-settings"
}
],
"release_date": "2026-06-12T14:59:59.901000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-04T13:59:30+00:00",
"details": "Before applying the update, make sure all previously released errata relevant to your system have been applied. Also, back up your existing installation, including all applications, configuration files, databases and database settings. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat JBoss Enterprise Application Platform 8.1"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "netty-codec-http2: Netty: Denial of Service due to HTTP/2 max header size handling"
}
]
}
ubuntu-cve-2026-45536
Vulnerability from osv_ubuntu
Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to char control[CMSG_SPACE(sizeof(int))] (line 940) — 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check cmsg->cmsg_len == CMSG_LEN(sizeof(int)) (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking → EAGAIN → Java maps to 0 → read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue.
{
"affected": [
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:3.2.6.Final-2+deb8u2ubuntu0.1~esm1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:14.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:3.2.6.Final-2+deb8u2ubuntu0.1~esm1?arch=source\u0026distro=esm-infra-legacy/trusty"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:3.2.6.Final-2",
"1:3.2.6.Final-2+deb8u2build0.14.04.1~esm1",
"1:3.2.6.Final-2+deb8u2ubuntu0.1~esm1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:4.0.34-1ubuntu0.1~esm4"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:16.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.0.34-1ubuntu0.1~esm4?arch=source\u0026distro=esm-apps-legacy/xenial"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:3.2.6.Final-2",
"1:4.0.32-1",
"1:4.0.33-1",
"1:4.0.34-1",
"1:4.0.34-1ubuntu0.1~esm1",
"1:4.0.34-1ubuntu0.1~esm2",
"1:4.0.34-1ubuntu0.1~esm3",
"1:4.0.34-1ubuntu0.1~esm4"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:4.1.7-4ubuntu0.1+esm6"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:18.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.1.7-4ubuntu0.1+esm6?arch=source\u0026distro=esm-apps/bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:4.1.7-4",
"1:4.1.7-4ubuntu0.1~esm1",
"1:4.1.7-4ubuntu0.1",
"1:4.1.7-4ubuntu0.1+esm1",
"1:4.1.7-4ubuntu0.1+esm2",
"1:4.1.7-4ubuntu0.1+esm3",
"1:4.1.7-4ubuntu0.1+esm4",
"1:4.1.7-4ubuntu0.1+esm5",
"1:4.1.7-4ubuntu0.1+esm6"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:4.1.45-1ubuntu0.1~esm6"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:20.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.1.45-1ubuntu0.1~esm6?arch=source\u0026distro=esm-apps/focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:4.1.33-1",
"1:4.1.33-2",
"1:4.1.33-3",
"1:4.1.45-1",
"1:4.1.45-1ubuntu0.1~esm1",
"1:4.1.45-1ubuntu0.1~esm2",
"1:4.1.45-1ubuntu0.1~esm3",
"1:4.1.45-1ubuntu0.1~esm4",
"1:4.1.45-1ubuntu0.1~esm6"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:4.1.48-4+deb11u2ubuntu0.1+esm3"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:22.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.1.48-4+deb11u2ubuntu0.1+esm3?arch=source\u0026distro=esm-apps/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:4.1.48-4",
"1:4.1.48-4+deb11u1build0.22.04.1",
"1:4.1.48-4+deb11u2build0.22.04.1",
"1:4.1.48-4+deb11u2ubuntu0.1~esm1",
"1:4.1.48-4+deb11u2ubuntu0.1~esm2",
"1:4.1.48-4+deb11u2ubuntu0.1",
"1:4.1.48-4+deb11u2ubuntu0.1+esm1",
"1:4.1.48-4+deb11u2ubuntu0.1+esm3"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:4.1.48-9ubuntu0.1+esm3"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:24.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.1.48-9ubuntu0.1+esm3?arch=source\u0026distro=esm-apps/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:4.1.48-7",
"1:4.1.48-8",
"1:4.1.48-9",
"1:4.1.48-9ubuntu0.1~esm1",
"1:4.1.48-9ubuntu0.1~esm2",
"1:4.1.48-9ubuntu0.1",
"1:4.1.48-9ubuntu0.1+esm1",
"1:4.1.48-9ubuntu0.1+esm3"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-java",
"binary_version": "1:4.1.48-10ubuntu0.25.10.2"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.1.48-10ubuntu0.25.10.2?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:4.1.48-10",
"1:4.1.48-10ubuntu0.25.10.1",
"1:4.1.48-10ubuntu0.25.10.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libnetty-buffer-java",
"binary_version": "1:4.1.48-16ubuntu0.1~esm2"
},
{
"binary_name": "libnetty-common-java",
"binary_version": "1:4.1.48-16ubuntu0.1~esm2"
},
{
"binary_name": "libnetty-java",
"binary_version": "1:4.1.48-16ubuntu0.1~esm2"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:26.04:LTS",
"name": "netty",
"purl": "pkg:deb/ubuntu/netty@1:4.1.48-16ubuntu0.1~esm2?arch=source\u0026distro=esm-apps/resolute"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1:4.1.48-10",
"1:4.1.48-11",
"1:4.1.48-12",
"1:4.1.48-13",
"1:4.1.48-14",
"1:4.1.48-16",
"1:4.1.48-16ubuntu0.1~esm2"
]
}
],
"aliases": [],
"details": "Netty is a network application framework for development of protocol servers and clients. Prior to versions 4.1.135.Final and 4.2.15.Final, netty_unix_socket_recvFd sets msg_control to `char control[CMSG_SPACE(sizeof(int))]` (line 940) \u2014 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent check `cmsg-\u003ecmsg_len == CMSG_LEN(sizeof(int))` (line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking \u2192 EAGAIN \u2192 Java maps to 0 \u2192 read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default). Versions 4.1.135.Final and 4.2.15.Final patch the issue.",
"id": "UBUNTU-CVE-2026-45536",
"modified": "2026-06-17T04:29:55Z",
"published": "2026-06-12T15:16:00Z",
"references": [
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2026-45536"
},
{
"type": "REPORT",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45536"
},
{
"type": "REPORT",
"url": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9"
},
{
"type": "REPORT",
"url": "https://github.com/netty/netty/releases/tag/netty-4.1.135.Final"
},
{
"type": "REPORT",
"url": "https://github.com/netty/netty/releases/tag/netty-4.2.15.Final"
}
],
"related": [],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"type": "CVSS_V3"
},
{
"score": "medium",
"type": "Ubuntu"
}
],
"upstream": [
"CVE-2026-45536"
]
}
WID-SEC-W-2026-1814
Vulnerability from csaf_certbund - Published: 2026-06-07 22:00 - Updated: 2026-08-04 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM App Connect Enterprise
IBM
|
cpe:/a:ibm:app_connect_enterprise:professional
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Sterling Connect:Direct
IBM
|
cpe:/a:ibm:sterling_connect%3adirect:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Data Grid 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:data_grid_8
|
Data Grid 8 | |
|
IBM SPSS Analytic Server
IBM / SPSS
|
cpe:/a:ibm:spss:analytic_server
|
Analytic Server | |
|
Open Source Netty <4.1.135.Final
Open Source / Netty
|
<4.1.135.Final | ||
|
Open Source Netty <4.2.15.Final
Open Source / Netty
|
<4.2.15.Final |
| URL | Category |
|---|---|
| https://wid.cert-bund.de/.well-known/csaf/white/2… | self |
| https://wid.cert-bund.de/portal/wid/securityadvis… | self |
| https://github.com/netty/netty/security/advisories/ | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://github.com/netty/netty/security/advisorie… | external |
| https://access.redhat.com/errata/RHSA-2026:26018 | external |
| https://access.redhat.com/errata/RHSA-2026:26017 | external |
| https://access.redhat.com/errata/RHSA-2026:26586 | external |
| https://access.redhat.com/errata/RHSA-2026:28573 | external |
| https://www.ibm.com/support/pages/node/7277997 | external |
| https://access.redhat.com/errata/RHSA-2026:34608 | external |
| https://access.redhat.com/errata/RHSA-2026:36820 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:37390 | external |
| https://www.ibm.com/support/pages/node/7279709 | external |
| https://access.redhat.com/errata/RHSA-2026:41951 | external |
| https://www.ibm.com/support/pages/node/7280887 | external |
| https://access.redhat.com/errata/RHSA-2026:48124 | external |
| https://access.redhat.com/errata/RHSA-2026:48151 | external |
| https://access.redhat.com/errata/RHSA-2026:49700 | external |
| https://access.redhat.com/errata/RHSA-2026:49701 | external |
| https://access.redhat.com/errata/RHSA-2026:50085 | external |
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Netty ist ein asynchrones, ereignisgesteuertes Netzwerk-Anwendungs-Framework f\u00fcr die schnelle Entwicklung von wartbaren, hochleistungsf\u00e4higen Protokollservern und -clients.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Netty ausnutzen, um Sicherheitsvorkehrungen zu umgehen, Daten zu manipulieren, vertrauliche Informationen offenzulegen oder einen Denial-of-Service-Zustand herbeizuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Sonstiges\n- UNIX",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-1814 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-1814.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-1814 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-1814"
},
{
"category": "external",
"summary": "Netty Security Advisories vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-3244-j874-rhc2 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-3244-j874-rhc2"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-4grm-h2qv-h6w6 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-4grm-h2qv-h6w6"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-5pvg-856g-cp85 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5pvg-856g-cp85"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-5w86-c3rq-vjj7 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5w86-c3rq-vjj7"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-5x3r-wrvg-rp6q vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5x3r-wrvg-rp6q"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-5xrh-qmmq-w6ch vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-5xrh-qmmq-w6ch"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-676x-f7gg-47vc vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-676x-f7gg-47vc"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-6ghj-frrj-jjj3 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-6ghj-frrj-jjj3"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-6jv9-x5w9-2ccm vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-6jv9-x5w9-2ccm"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-c2gf-v879-257j vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-c2gf-v879-257j"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-c2rx-5r8w-8xr2 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-c2rx-5r8w-8xr2"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-c653-97m9-rcg9 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-c653-97m9-rcg9"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-cc37-9q2j-3hfv vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-cc37-9q2j-3hfv"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-cmm3-54f8-px4j vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-cmm3-54f8-px4j"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-cq4q-cv5g-r8q5 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-cq4q-cv5g-r8q5"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-h2qv-fj59-j46j vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-h2qv-fj59-j46j"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-hvcg-qmg6-jm4c vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-hvcg-qmg6-jm4c"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-w573-9ffj-6ff9 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-w573-9ffj-6ff9"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-x4gw-5cx5-pgmh vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-x4gw-5cx5-pgmh"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-xmv7-r254-6q78 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-xmv7-r254-6q78"
},
{
"category": "external",
"summary": "GitHub Security Advisory GHSA-xmv7-r254-6q78 vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-3qp7-7mw8-wx86"
},
{
"category": "external",
"summary": "Netty Security Advisories vom 2026-06-07",
"url": "https://github.com/netty/netty/security/advisories/GHSA-563q-j3cm-6jxm"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26018 vom 2026-06-17",
"url": "https://access.redhat.com/errata/RHSA-2026:26018"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26017 vom 2026-06-17",
"url": "https://access.redhat.com/errata/RHSA-2026:26017"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26586 vom 2026-06-18",
"url": "https://access.redhat.com/errata/RHSA-2026:26586"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:28573 vom 2026-06-24",
"url": "https://access.redhat.com/errata/RHSA-2026:28573"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7277997 vom 2026-06-25",
"url": "https://www.ibm.com/support/pages/node/7277997"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:34608 vom 2026-07-02",
"url": "https://access.redhat.com/errata/RHSA-2026:34608"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:36820 vom 2026-07-08",
"url": "https://access.redhat.com/errata/RHSA-2026:36820"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2802-1 vom 2026-07-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027331.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:37390 vom 2026-07-09",
"url": "https://access.redhat.com/errata/RHSA-2026:37390"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7279709 vom 2026-07-10",
"url": "https://www.ibm.com/support/pages/node/7279709"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:41951 vom 2026-07-20",
"url": "https://access.redhat.com/errata/RHSA-2026:41951"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7280887 vom 2026-07-23",
"url": "https://www.ibm.com/support/pages/node/7280887"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:48124 vom 2026-07-29",
"url": "https://access.redhat.com/errata/RHSA-2026:48124"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:48151 vom 2026-07-29",
"url": "https://access.redhat.com/errata/RHSA-2026:48151"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:49700 vom 2026-08-03",
"url": "https://access.redhat.com/errata/RHSA-2026:49700"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:49701 vom 2026-08-03",
"url": "https://access.redhat.com/errata/RHSA-2026:49701"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:50085 vom 2026-08-04",
"url": "https://access.redhat.com/errata/RHSA-2026:50085"
}
],
"source_lang": "en-US",
"title": "Netty: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-08-04T22:00:00.000+00:00",
"generator": {
"date": "2026-08-05T09:02:42.922+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-1814",
"initial_release_date": "2026-06-07T22:00:00.000+00:00",
"revision_history": [
{
"date": "2026-06-07T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-06-08T22:00:00.000+00:00",
"number": "2",
"summary": "CVE erg\u00e4nzt"
},
{
"date": "2026-06-11T22:00:00.000+00:00",
"number": "3",
"summary": "Referenz(en) aufgenommen: EUVD-2026-36327, EUVD-2026-36357, EUVD-2026-36356"
},
{
"date": "2026-06-14T22:00:00.000+00:00",
"number": "4",
"summary": "Referenz(en) aufgenommen: EUVD-2026-36432, EUVD-2026-36450, EUVD-2026-36471, EUVD-2026-36465, EUVD-2026-36459, EUVD-2026-36451, EUVD-2026-36445, EUVD-2026-36457, EUVD-2026-36494, EUVD-2026-36468, EUVD-2026-36436, EUVD-2026-36439, EUVD-2026-36435, EUVD-2026-36489, EUVD-2026-36492"
},
{
"date": "2026-06-15T22:00:00.000+00:00",
"number": "5",
"summary": "Referenz(en) aufgenommen: CVE-2026-50009"
},
{
"date": "2026-06-17T22:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-23T22:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-25T22:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2026-07-01T22:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-07-08T22:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-07-09T22:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von Red Hat und IBM aufgenommen"
},
{
"date": "2026-07-20T22:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-07-22T22:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2026-07-29T22:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-08-03T22:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-08-04T22:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von Red Hat aufgenommen"
}
],
"status": "final",
"version": "16"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "IBM App Connect Enterprise",
"product": {
"name": "IBM App Connect Enterprise",
"product_id": "T037507",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:app_connect_enterprise:professional"
}
}
},
{
"branches": [
{
"category": "product_version",
"name": "Analytic Server",
"product": {
"name": "IBM SPSS Analytic Server",
"product_id": "T011787",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spss:analytic_server"
}
}
}
],
"category": "product_name",
"name": "SPSS"
},
{
"category": "product_name",
"name": "IBM Sterling Connect:Direct",
"product": {
"name": "IBM Sterling Connect:Direct",
"product_id": "T045428",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:sterling_connect%3adirect:-"
}
}
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c4.2.15.Final",
"product": {
"name": "Open Source Netty \u003c4.2.15.Final",
"product_id": "T055037"
}
},
{
"category": "product_version",
"name": "4.2.15.Final",
"product": {
"name": "Open Source Netty 4.2.15.Final",
"product_id": "T055037-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:netty:netty:4.2.15.final"
}
}
},
{
"category": "product_version_range",
"name": "\u003c4.1.135.Final",
"product": {
"name": "Open Source Netty \u003c4.1.135.Final",
"product_id": "T055038"
}
},
{
"category": "product_version",
"name": "4.1.135.Final",
"product": {
"name": "Open Source Netty 4.1.135.Final",
"product_id": "T055038-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:netty:netty:4.1.135.final"
}
}
}
],
"category": "product_name",
"name": "Netty"
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
},
{
"category": "product_version",
"name": "Data Grid 8",
"product": {
"name": "Red Hat Enterprise Linux Data Grid 8",
"product_id": "T056825",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:data_grid_8"
}
}
}
],
"category": "product_name",
"name": "Enterprise Linux"
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-44249",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-44249"
},
{
"cve": "CVE-2026-44250",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-44250"
},
{
"cve": "CVE-2026-44890",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-44890"
},
{
"cve": "CVE-2026-44892",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-44892"
},
{
"cve": "CVE-2026-44893",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-44893"
},
{
"cve": "CVE-2026-44894",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-44894"
},
{
"cve": "CVE-2026-45416",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-45416"
},
{
"cve": "CVE-2026-45536",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-45536"
},
{
"cve": "CVE-2026-45673",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-45673"
},
{
"cve": "CVE-2026-45674",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-45674"
},
{
"cve": "CVE-2026-46340",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-46340"
},
{
"cve": "CVE-2026-47244",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-47244"
},
{
"cve": "CVE-2026-47691",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-47691"
},
{
"cve": "CVE-2026-48006",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-48006"
},
{
"cve": "CVE-2026-48043",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-48043"
},
{
"cve": "CVE-2026-48059",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-48059"
},
{
"cve": "CVE-2026-48748",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-48748"
},
{
"cve": "CVE-2026-50009",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-50009"
},
{
"cve": "CVE-2026-50010",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-50010"
},
{
"cve": "CVE-2026-50020",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-50020"
},
{
"cve": "CVE-2026-50560",
"product_status": {
"known_affected": [
"T037507",
"T002207",
"T045428",
"67646",
"T056825",
"T011787",
"T055038",
"T055037"
]
},
"release_date": "2026-06-07T22:00:00.000+00:00",
"title": "CVE-2026-50560"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.