Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2024-43897 (GCVE-0-2024-43897)
Vulnerability from cvelistv5 – Published: 2024-08-26 10:10 – Updated: 2026-05-11 20:31
VLAI
EPSS
Title
net: drop bad gso csum_start and offset in virtio_net_hdr
Summary
In the Linux kernel, the following vulnerability has been resolved:
net: drop bad gso csum_start and offset in virtio_net_hdr
Tighten csum_start and csum_offset checks in virtio_net_hdr_to_skb
for GSO packets.
The function already checks that a checksum requested with
VIRTIO_NET_HDR_F_NEEDS_CSUM is in skb linear. But for GSO packets
this might not hold for segs after segmentation.
Syzkaller demonstrated to reach this warning in skb_checksum_help
offset = skb_checksum_start_offset(skb);
ret = -EINVAL;
if (WARN_ON_ONCE(offset >= skb_headlen(skb)))
By injecting a TSO packet:
WARNING: CPU: 1 PID: 3539 at net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0
ip_do_fragment+0x209/0x1b20 net/ipv4/ip_output.c:774
ip_finish_output_gso net/ipv4/ip_output.c:279 [inline]
__ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301
iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82
ip_tunnel_xmit+0x2296/0x2c70 net/ipv4/ip_tunnel.c:813
__gre_xmit net/ipv4/ip_gre.c:469 [inline]
ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661
__netdev_start_xmit include/linux/netdevice.h:4850 [inline]
netdev_start_xmit include/linux/netdevice.h:4864 [inline]
xmit_one net/core/dev.c:3595 [inline]
dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611
__dev_queue_xmit+0x1b97/0x3c90 net/core/dev.c:4261
packet_snd net/packet/af_packet.c:3073 [inline]
The geometry of the bad input packet at tcp_gso_segment:
[ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0
[ 52.003050][ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244
[ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(size=1552 type=3 segs=0))
[ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536
ip_summed=3 complete_sw=0 valid=0 level=0)
Mitigate with stricter input validation.
csum_offset: for GSO packets, deduce the correct value from gso_type.
This is already done for USO. Extend it to TSO. Let UFO be:
udp[46]_ufo_fragment ignores these fields and always computes the
checksum in software.
csum_start: finding the real offset requires parsing to the transport
header. Do not add a parser, use existing segmentation parsing. Thanks
to SKB_GSO_DODGY, that also catches bad packets that are hw offloaded.
Again test both TSO and USO. Do not test UFO for the above reason, and
do not test UDP tunnel offload.
GSO packet are almost always CHECKSUM_PARTIAL. USO packets may be
CHECKSUM_NONE since commit 10154dbded6d6 ("udp: Allow GSO transmit
from devices with no checksum offload"), but then still these fields
are initialized correctly in udp4_hwcsum/udp6_hwcsum_outgoing. So no
need to test for ip_summed == CHECKSUM_PARTIAL first.
This revises an existing fix mentioned in the Fixes tag, which broke
small packets with GSO offload, as detected by kselftests.
Severity
No CVSS data available.
SSVC
Exploitation: none
Automatable: no
Technical Impact: partial
CISA Coordinator (v2.0.3)
Assigner
References
6 references
Impacted products
2 products
| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
27874ca77bd2b05a3779c7b3a5c75d8dd7f0b40f , < 413e785a89f8bde0d4156a54b8ac2fa003c06756
(git)
Affected: 5b1997487a3f3373b0f580c8a20b56c1b64b0775 , < f01c5e335fbb7fb612d40f14a3c02e2612a43d3b (git) Affected: 90d41ebe0cd4635f6410471efc1dd71b33e894cf , < 6772c4868a8e7ad5305957cdb834ce881793acb7 (git) Affected: e9164903b8b303c34723177b02fe91e49e3c4cd7 , < 2edbb3e8838c672cd7e247e47989df9d03fc6668 (git) Affected: e269d79c7d35aa3808b1f3c1737d63dab504ddc8 , < 89add40066f9ed9abe5f7f886fe5789ff7e0c50e (git) |
|
| Linux | Linux |
Affected:
5.15.165 , < 5.15.167
(semver)
Affected: 6.1.103 , < 6.1.107 (semver) Affected: 6.6.44 , < 6.6.46 (semver) Affected: 6.10.3 , < 6.10.5 (semver) |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2024-43897",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2024-09-10T15:29:03.207414Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2024-09-12T17:33:08.236Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
},
{
"providerMetadata": {
"dateUpdated": "2025-11-03T22:06:59.989Z",
"orgId": "af854a3a-2127-422b-91ae-364da2661108",
"shortName": "CVE"
},
"references": [
{
"url": "https://lists.debian.org/debian-lts-announce/2025/01/msg00001.html"
}
],
"title": "CVE Program Container"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/virtio_net.h",
"net/ipv4/tcp_offload.c",
"net/ipv4/udp_offload.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "413e785a89f8bde0d4156a54b8ac2fa003c06756",
"status": "affected",
"version": "27874ca77bd2b05a3779c7b3a5c75d8dd7f0b40f",
"versionType": "git"
},
{
"lessThan": "f01c5e335fbb7fb612d40f14a3c02e2612a43d3b",
"status": "affected",
"version": "5b1997487a3f3373b0f580c8a20b56c1b64b0775",
"versionType": "git"
},
{
"lessThan": "6772c4868a8e7ad5305957cdb834ce881793acb7",
"status": "affected",
"version": "90d41ebe0cd4635f6410471efc1dd71b33e894cf",
"versionType": "git"
},
{
"lessThan": "2edbb3e8838c672cd7e247e47989df9d03fc6668",
"status": "affected",
"version": "e9164903b8b303c34723177b02fe91e49e3c4cd7",
"versionType": "git"
},
{
"lessThan": "89add40066f9ed9abe5f7f886fe5789ff7e0c50e",
"status": "affected",
"version": "e269d79c7d35aa3808b1f3c1737d63dab504ddc8",
"versionType": "git"
}
]
},
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/virtio_net.h",
"net/ipv4/tcp_offload.c",
"net/ipv4/udp_offload.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "5.15.167",
"status": "affected",
"version": "5.15.165",
"versionType": "semver"
},
{
"lessThan": "6.1.107",
"status": "affected",
"version": "6.1.103",
"versionType": "semver"
},
{
"lessThan": "6.6.46",
"status": "affected",
"version": "6.6.44",
"versionType": "semver"
},
{
"lessThan": "6.10.5",
"status": "affected",
"version": "6.10.3",
"versionType": "semver"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "5.15.167",
"versionStartIncluding": "5.15.165",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.1.107",
"versionStartIncluding": "6.1.103",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.6.46",
"versionStartIncluding": "6.6.44",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.10.5",
"versionStartIncluding": "6.10.3",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: drop bad gso csum_start and offset in virtio_net_hdr\n\nTighten csum_start and csum_offset checks in virtio_net_hdr_to_skb\nfor GSO packets.\n\nThe function already checks that a checksum requested with\nVIRTIO_NET_HDR_F_NEEDS_CSUM is in skb linear. But for GSO packets\nthis might not hold for segs after segmentation.\n\nSyzkaller demonstrated to reach this warning in skb_checksum_help\n\n\toffset = skb_checksum_start_offset(skb);\n\tret = -EINVAL;\n\tif (WARN_ON_ONCE(offset \u003e= skb_headlen(skb)))\n\nBy injecting a TSO packet:\n\nWARNING: CPU: 1 PID: 3539 at net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0\n ip_do_fragment+0x209/0x1b20 net/ipv4/ip_output.c:774\n ip_finish_output_gso net/ipv4/ip_output.c:279 [inline]\n __ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301\n iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82\n ip_tunnel_xmit+0x2296/0x2c70 net/ipv4/ip_tunnel.c:813\n __gre_xmit net/ipv4/ip_gre.c:469 [inline]\n ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661\n __netdev_start_xmit include/linux/netdevice.h:4850 [inline]\n netdev_start_xmit include/linux/netdevice.h:4864 [inline]\n xmit_one net/core/dev.c:3595 [inline]\n dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611\n __dev_queue_xmit+0x1b97/0x3c90 net/core/dev.c:4261\n packet_snd net/packet/af_packet.c:3073 [inline]\n\nThe geometry of the bad input packet at tcp_gso_segment:\n\n[ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0\n[ 52.003050][ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244\n[ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(size=1552 type=3 segs=0))\n[ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536\nip_summed=3 complete_sw=0 valid=0 level=0)\n\nMitigate with stricter input validation.\n\ncsum_offset: for GSO packets, deduce the correct value from gso_type.\nThis is already done for USO. Extend it to TSO. Let UFO be:\nudp[46]_ufo_fragment ignores these fields and always computes the\nchecksum in software.\n\ncsum_start: finding the real offset requires parsing to the transport\nheader. Do not add a parser, use existing segmentation parsing. Thanks\nto SKB_GSO_DODGY, that also catches bad packets that are hw offloaded.\nAgain test both TSO and USO. Do not test UFO for the above reason, and\ndo not test UDP tunnel offload.\n\nGSO packet are almost always CHECKSUM_PARTIAL. USO packets may be\nCHECKSUM_NONE since commit 10154dbded6d6 (\"udp: Allow GSO transmit\nfrom devices with no checksum offload\"), but then still these fields\nare initialized correctly in udp4_hwcsum/udp6_hwcsum_outgoing. So no\nneed to test for ip_summed == CHECKSUM_PARTIAL first.\n\nThis revises an existing fix mentioned in the Fixes tag, which broke\nsmall packets with GSO offload, as detected by kselftests."
}
],
"providerMetadata": {
"dateUpdated": "2026-05-11T20:31:54.698Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/413e785a89f8bde0d4156a54b8ac2fa003c06756"
},
{
"url": "https://git.kernel.org/stable/c/f01c5e335fbb7fb612d40f14a3c02e2612a43d3b"
},
{
"url": "https://git.kernel.org/stable/c/6772c4868a8e7ad5305957cdb834ce881793acb7"
},
{
"url": "https://git.kernel.org/stable/c/2edbb3e8838c672cd7e247e47989df9d03fc6668"
},
{
"url": "https://git.kernel.org/stable/c/89add40066f9ed9abe5f7f886fe5789ff7e0c50e"
}
],
"title": "net: drop bad gso csum_start and offset in virtio_net_hdr",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2024-43897",
"datePublished": "2024-08-26T10:10:53.972Z",
"dateReserved": "2024-08-17T09:11:59.291Z",
"dateUpdated": "2026-05-11T20:31:54.698Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2024-43897",
"date": "2026-06-06",
"epss": "0.00025",
"percentile": "0.074"
},
"fkie_nvd": {
"configurations": "[{\"nodes\": [{\"operator\": \"OR\", \"negate\": false, \"cpeMatch\": [{\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"5.15.165\", \"versionEndExcluding\": \"6.1.107\", \"matchCriteriaId\": \"25C86ED2-0FD4-4A8A-9106-A059D760DE96\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"6.6.44\", \"versionEndExcluding\": \"6.6.46\", \"matchCriteriaId\": \"83875505-0CFF-44AD-A3E1-BE3F8B866F43\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"6.10.3\", \"versionEndExcluding\": \"6.10.5\", \"matchCriteriaId\": \"ECD67C7B-CA88-4F2B-B232-AE23DDFBA7D2\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.11:rc1:*:*:*:*:*:*\", \"matchCriteriaId\": \"8B3CE743-2126-47A3-8B7C-822B502CF119\"}]}]}]",
"descriptions": "[{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet: drop bad gso csum_start and offset in virtio_net_hdr\\n\\nTighten csum_start and csum_offset checks in virtio_net_hdr_to_skb\\nfor GSO packets.\\n\\nThe function already checks that a checksum requested with\\nVIRTIO_NET_HDR_F_NEEDS_CSUM is in skb linear. But for GSO packets\\nthis might not hold for segs after segmentation.\\n\\nSyzkaller demonstrated to reach this warning in skb_checksum_help\\n\\n\\toffset = skb_checksum_start_offset(skb);\\n\\tret = -EINVAL;\\n\\tif (WARN_ON_ONCE(offset \u003e= skb_headlen(skb)))\\n\\nBy injecting a TSO packet:\\n\\nWARNING: CPU: 1 PID: 3539 at net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0\\n ip_do_fragment+0x209/0x1b20 net/ipv4/ip_output.c:774\\n ip_finish_output_gso net/ipv4/ip_output.c:279 [inline]\\n __ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301\\n iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82\\n ip_tunnel_xmit+0x2296/0x2c70 net/ipv4/ip_tunnel.c:813\\n __gre_xmit net/ipv4/ip_gre.c:469 [inline]\\n ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661\\n __netdev_start_xmit include/linux/netdevice.h:4850 [inline]\\n netdev_start_xmit include/linux/netdevice.h:4864 [inline]\\n xmit_one net/core/dev.c:3595 [inline]\\n dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611\\n __dev_queue_xmit+0x1b97/0x3c90 net/core/dev.c:4261\\n packet_snd net/packet/af_packet.c:3073 [inline]\\n\\nThe geometry of the bad input packet at tcp_gso_segment:\\n\\n[ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0\\n[ 52.003050][ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244\\n[ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(size=1552 type=3 segs=0))\\n[ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536\\nip_summed=3 complete_sw=0 valid=0 level=0)\\n\\nMitigate with stricter input validation.\\n\\ncsum_offset: for GSO packets, deduce the correct value from gso_type.\\nThis is already done for USO. Extend it to TSO. Let UFO be:\\nudp[46]_ufo_fragment ignores these fields and always computes the\\nchecksum in software.\\n\\ncsum_start: finding the real offset requires parsing to the transport\\nheader. Do not add a parser, use existing segmentation parsing. Thanks\\nto SKB_GSO_DODGY, that also catches bad packets that are hw offloaded.\\nAgain test both TSO and USO. Do not test UFO for the above reason, and\\ndo not test UDP tunnel offload.\\n\\nGSO packet are almost always CHECKSUM_PARTIAL. USO packets may be\\nCHECKSUM_NONE since commit 10154dbded6d6 (\\\"udp: Allow GSO transmit\\nfrom devices with no checksum offload\\\"), but then still these fields\\nare initialized correctly in udp4_hwcsum/udp6_hwcsum_outgoing. So no\\nneed to test for ip_summed == CHECKSUM_PARTIAL first.\\n\\nThis revises an existing fix mentioned in the Fixes tag, which broke\\nsmall packets with GSO offload, as detected by kselftests.\"}, {\"lang\": \"es\", \"value\": \"En el kernel de Linux, se resolvi\\u00f3 la siguiente vulnerabilidad: net: elimine gso csum_start incorrecto y offset en virtio_net_hdr. Apriete las comprobaciones de csum_start y csum_offset en virtio_net_hdr_to_skb para paquetes GSO. La funci\\u00f3n ya comprueba que una suma de comprobaci\\u00f3n solicitada con VIRTIO_NET_HDR_F_NEEDS_CSUM est\\u00e9 en skb lineal. Pero para los paquetes OSG esto podr\\u00eda no ser v\\u00e1lido para los segmentos posteriores a la segmentaci\\u00f3n. Syzkaller demostr\\u00f3 alcanzar esta advertencia en skb_checksum_help offset = skb_checksum_start_offset(skb); ret = -EINVAL; if (WARN_ON_ONCE(offset \u0026gt;= skb_headlen(skb))) Al inyectar un paquete TSO: ADVERTENCIA: CPU: 1 PID: 3539 en net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0 ip_do_fragment+0x209/0x1b20 net/ipv4 /ip_output.c:774 ip_finish_output_gso net/ipv4/ip_output.c:279 [en l\\u00ednea] __ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301 iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82 +0x2296 /0x2c70 net/ipv4/ip_tunnel.c:813 __gre_xmit net/ipv4/ip_gre.c:469 [en l\\u00ednea] ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661 __netdev_start_xmit include/linux/netdevice.h:4850 [en l\\u00ednea ] netdev_start_xmit include/linux/netdevice.h:4864 [en l\\u00ednea] xmit_one net/core/dev.c:3595 [en l\\u00ednea] dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611 __dev_queue_xmit+0x1b97/0x3c90 net/core/ dev.c:4261 paquete_snd net/packet/af_packet.c:3073 [en l\\u00ednea] La geometr\\u00eda del paquete de entrada incorrecto en tcp_gso_segment: [ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0 [ 52.003050] [ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244 [ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(tama\\u00f1o=1552 tipo=3 segs=0)) [ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536 ip_summed=3 complete_sw=0 valid=0 nivel=0) Mitigar con una validaci\\u00f3n de entrada m\\u00e1s estricta. csum_offset: para paquetes GSO, deduzca el valor correcto de gso_type. Esto ya est\\u00e1 hecho para la OSU. Ampliarlo a TSO. Sea UFO: udp[46]_ufo_fragment ignora estos campos y siempre calcula la suma de comprobaci\\u00f3n en el software. csum_start: encontrar el desplazamiento real requiere analizar el encabezado de transporte. No agregue un analizador, utilice el an\\u00e1lisis de segmentaci\\u00f3n existente. Gracias a SKB_GSO_DODGY, eso tambi\\u00e9n detecta paquetes defectuosos que se descargan correctamente. Nuevamente pruebe tanto TSO como USO. No pruebe UFO por el motivo anterior y no pruebe la descarga del t\\u00fanel UDP. Los paquetes OSG casi siempre son CHECKSUM_PARTIAL. Los paquetes USO pueden ser CHECKSUM_NONE desde el commit 10154dbded6d6 (\\\"udp: Permitir transmisi\\u00f3n GSO desde dispositivos sin descarga de suma de verificaci\\u00f3n\\\"), pero a\\u00fan as\\u00ed estos campos se inicializan correctamente en udp4_hwcsum/udp6_hwcsum_outgoing. Por lo tanto, no es necesario probar primero ip_summed == CHECKSUM_PARTIAL. Esto revisa una soluci\\u00f3n existente mencionada en la etiqueta Correcciones, que romp\\u00eda paquetes peque\\u00f1os con la descarga GSO, seg\\u00fan lo detectado por kselftests.\"}]",
"id": "CVE-2024-43897",
"lastModified": "2024-09-12T12:15:50.297",
"metrics": "{\"cvssMetricV31\": [{\"source\": \"nvd@nist.gov\", \"type\": \"Primary\", \"cvssData\": {\"version\": \"3.1\", \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\", \"baseScore\": 5.5, \"baseSeverity\": \"MEDIUM\", \"attackVector\": \"LOCAL\", \"attackComplexity\": \"LOW\", \"privilegesRequired\": \"LOW\", \"userInteraction\": \"NONE\", \"scope\": \"UNCHANGED\", \"confidentialityImpact\": \"NONE\", \"integrityImpact\": \"NONE\", \"availabilityImpact\": \"HIGH\"}, \"exploitabilityScore\": 1.8, \"impactScore\": 3.6}]}",
"published": "2024-08-26T11:15:04.437",
"references": "[{\"url\": \"https://git.kernel.org/stable/c/2edbb3e8838c672cd7e247e47989df9d03fc6668\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}, {\"url\": \"https://git.kernel.org/stable/c/413e785a89f8bde0d4156a54b8ac2fa003c06756\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}, {\"url\": \"https://git.kernel.org/stable/c/6772c4868a8e7ad5305957cdb834ce881793acb7\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}, {\"url\": \"https://git.kernel.org/stable/c/89add40066f9ed9abe5f7f886fe5789ff7e0c50e\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}, {\"url\": \"https://git.kernel.org/stable/c/f01c5e335fbb7fb612d40f14a3c02e2612a43d3b\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}]",
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Modified",
"weaknesses": "[{\"source\": \"nvd@nist.gov\", \"type\": \"Primary\", \"description\": [{\"lang\": \"en\", \"value\": \"NVD-CWE-noinfo\"}]}]"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2024-43897\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-08-26T11:15:04.437\",\"lastModified\":\"2025-11-03T22:18:18.917\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet: drop bad gso csum_start and offset in virtio_net_hdr\\n\\nTighten csum_start and csum_offset checks in virtio_net_hdr_to_skb\\nfor GSO packets.\\n\\nThe function already checks that a checksum requested with\\nVIRTIO_NET_HDR_F_NEEDS_CSUM is in skb linear. But for GSO packets\\nthis might not hold for segs after segmentation.\\n\\nSyzkaller demonstrated to reach this warning in skb_checksum_help\\n\\n\\toffset = skb_checksum_start_offset(skb);\\n\\tret = -EINVAL;\\n\\tif (WARN_ON_ONCE(offset \u003e= skb_headlen(skb)))\\n\\nBy injecting a TSO packet:\\n\\nWARNING: CPU: 1 PID: 3539 at net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0\\n ip_do_fragment+0x209/0x1b20 net/ipv4/ip_output.c:774\\n ip_finish_output_gso net/ipv4/ip_output.c:279 [inline]\\n __ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301\\n iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82\\n ip_tunnel_xmit+0x2296/0x2c70 net/ipv4/ip_tunnel.c:813\\n __gre_xmit net/ipv4/ip_gre.c:469 [inline]\\n ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661\\n __netdev_start_xmit include/linux/netdevice.h:4850 [inline]\\n netdev_start_xmit include/linux/netdevice.h:4864 [inline]\\n xmit_one net/core/dev.c:3595 [inline]\\n dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611\\n __dev_queue_xmit+0x1b97/0x3c90 net/core/dev.c:4261\\n packet_snd net/packet/af_packet.c:3073 [inline]\\n\\nThe geometry of the bad input packet at tcp_gso_segment:\\n\\n[ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0\\n[ 52.003050][ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244\\n[ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(size=1552 type=3 segs=0))\\n[ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536\\nip_summed=3 complete_sw=0 valid=0 level=0)\\n\\nMitigate with stricter input validation.\\n\\ncsum_offset: for GSO packets, deduce the correct value from gso_type.\\nThis is already done for USO. Extend it to TSO. Let UFO be:\\nudp[46]_ufo_fragment ignores these fields and always computes the\\nchecksum in software.\\n\\ncsum_start: finding the real offset requires parsing to the transport\\nheader. Do not add a parser, use existing segmentation parsing. Thanks\\nto SKB_GSO_DODGY, that also catches bad packets that are hw offloaded.\\nAgain test both TSO and USO. Do not test UFO for the above reason, and\\ndo not test UDP tunnel offload.\\n\\nGSO packet are almost always CHECKSUM_PARTIAL. USO packets may be\\nCHECKSUM_NONE since commit 10154dbded6d6 (\\\"udp: Allow GSO transmit\\nfrom devices with no checksum offload\\\"), but then still these fields\\nare initialized correctly in udp4_hwcsum/udp6_hwcsum_outgoing. So no\\nneed to test for ip_summed == CHECKSUM_PARTIAL first.\\n\\nThis revises an existing fix mentioned in the Fixes tag, which broke\\nsmall packets with GSO offload, as detected by kselftests.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se resolvi\u00f3 la siguiente vulnerabilidad: net: elimine gso csum_start incorrecto y offset en virtio_net_hdr. Apriete las comprobaciones de csum_start y csum_offset en virtio_net_hdr_to_skb para paquetes GSO. La funci\u00f3n ya comprueba que una suma de comprobaci\u00f3n solicitada con VIRTIO_NET_HDR_F_NEEDS_CSUM est\u00e9 en skb lineal. Pero para los paquetes OSG esto podr\u00eda no ser v\u00e1lido para los segmentos posteriores a la segmentaci\u00f3n. Syzkaller demostr\u00f3 alcanzar esta advertencia en skb_checksum_help offset = skb_checksum_start_offset(skb); ret = -EINVAL; if (WARN_ON_ONCE(offset \u0026gt;= skb_headlen(skb))) Al inyectar un paquete TSO: ADVERTENCIA: CPU: 1 PID: 3539 en net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0 ip_do_fragment+0x209/0x1b20 net/ipv4 /ip_output.c:774 ip_finish_output_gso net/ipv4/ip_output.c:279 [en l\u00ednea] __ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301 iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82 +0x2296 /0x2c70 net/ipv4/ip_tunnel.c:813 __gre_xmit net/ipv4/ip_gre.c:469 [en l\u00ednea] ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661 __netdev_start_xmit include/linux/netdevice.h:4850 [en l\u00ednea ] netdev_start_xmit include/linux/netdevice.h:4864 [en l\u00ednea] xmit_one net/core/dev.c:3595 [en l\u00ednea] dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611 __dev_queue_xmit+0x1b97/0x3c90 net/core/ dev.c:4261 paquete_snd net/packet/af_packet.c:3073 [en l\u00ednea] La geometr\u00eda del paquete de entrada incorrecto en tcp_gso_segment: [ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0 [ 52.003050] [ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244 [ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(tama\u00f1o=1552 tipo=3 segs=0)) [ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536 ip_summed=3 complete_sw=0 valid=0 nivel=0) Mitigar con una validaci\u00f3n de entrada m\u00e1s estricta. csum_offset: para paquetes GSO, deduzca el valor correcto de gso_type. Esto ya est\u00e1 hecho para la OSU. Ampliarlo a TSO. Sea UFO: udp[46]_ufo_fragment ignora estos campos y siempre calcula la suma de comprobaci\u00f3n en el software. csum_start: encontrar el desplazamiento real requiere analizar el encabezado de transporte. No agregue un analizador, utilice el an\u00e1lisis de segmentaci\u00f3n existente. Gracias a SKB_GSO_DODGY, eso tambi\u00e9n detecta paquetes defectuosos que se descargan correctamente. Nuevamente pruebe tanto TSO como USO. No pruebe UFO por el motivo anterior y no pruebe la descarga del t\u00fanel UDP. Los paquetes OSG casi siempre son CHECKSUM_PARTIAL. Los paquetes USO pueden ser CHECKSUM_NONE desde el commit 10154dbded6d6 (\\\"udp: Permitir transmisi\u00f3n GSO desde dispositivos sin descarga de suma de verificaci\u00f3n\\\"), pero a\u00fan as\u00ed estos campos se inicializan correctamente en udp4_hwcsum/udp6_hwcsum_outgoing. Por lo tanto, no es necesario probar primero ip_summed == CHECKSUM_PARTIAL. Esto revisa una soluci\u00f3n existente mencionada en la etiqueta Correcciones, que romp\u00eda paquetes peque\u00f1os con la descarga GSO, seg\u00fan lo detectado por kselftests.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"NVD-CWE-noinfo\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.15.165\",\"versionEndExcluding\":\"6.1.107\",\"matchCriteriaId\":\"25C86ED2-0FD4-4A8A-9106-A059D760DE96\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.6.44\",\"versionEndExcluding\":\"6.6.46\",\"matchCriteriaId\":\"83875505-0CFF-44AD-A3E1-BE3F8B866F43\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.10.3\",\"versionEndExcluding\":\"6.10.5\",\"matchCriteriaId\":\"ECD67C7B-CA88-4F2B-B232-AE23DDFBA7D2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.11:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"8B3CE743-2126-47A3-8B7C-822B502CF119\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/2edbb3e8838c672cd7e247e47989df9d03fc6668\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/413e785a89f8bde0d4156a54b8ac2fa003c06756\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/6772c4868a8e7ad5305957cdb834ce881793acb7\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/89add40066f9ed9abe5f7f886fe5789ff7e0c50e\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f01c5e335fbb7fb612d40f14a3c02e2612a43d3b\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://lists.debian.org/debian-lts-announce/2025/01/msg00001.html\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"https://lists.debian.org/debian-lts-announce/2025/01/msg00001.html\"}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2025-11-03T22:06:59.989Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-43897\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-09-10T15:29:03.207414Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2024-09-11T12:42:15.309Z\"}}], \"cna\": {\"title\": \"net: drop bad gso csum_start and offset in virtio_net_hdr\", \"affected\": [{\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"27874ca77bd2b05a3779c7b3a5c75d8dd7f0b40f\", \"lessThan\": \"413e785a89f8bde0d4156a54b8ac2fa003c06756\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"5b1997487a3f3373b0f580c8a20b56c1b64b0775\", \"lessThan\": \"f01c5e335fbb7fb612d40f14a3c02e2612a43d3b\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"90d41ebe0cd4635f6410471efc1dd71b33e894cf\", \"lessThan\": \"6772c4868a8e7ad5305957cdb834ce881793acb7\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"e9164903b8b303c34723177b02fe91e49e3c4cd7\", \"lessThan\": \"2edbb3e8838c672cd7e247e47989df9d03fc6668\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"e269d79c7d35aa3808b1f3c1737d63dab504ddc8\", \"lessThan\": \"89add40066f9ed9abe5f7f886fe5789ff7e0c50e\", \"versionType\": \"git\"}], \"programFiles\": [\"include/linux/virtio_net.h\", \"net/ipv4/tcp_offload.c\", \"net/ipv4/udp_offload.c\"], \"defaultStatus\": \"unaffected\"}, {\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"5.15.165\", \"lessThan\": \"5.15.167\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"6.1.103\", \"lessThan\": \"6.1.107\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"6.6.44\", \"lessThan\": \"6.6.46\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"6.10.3\", \"lessThan\": \"6.10.5\", \"versionType\": \"semver\"}], \"programFiles\": [\"include/linux/virtio_net.h\", \"net/ipv4/tcp_offload.c\", \"net/ipv4/udp_offload.c\"], \"defaultStatus\": \"unaffected\"}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/413e785a89f8bde0d4156a54b8ac2fa003c06756\"}, {\"url\": \"https://git.kernel.org/stable/c/f01c5e335fbb7fb612d40f14a3c02e2612a43d3b\"}, {\"url\": \"https://git.kernel.org/stable/c/6772c4868a8e7ad5305957cdb834ce881793acb7\"}, {\"url\": \"https://git.kernel.org/stable/c/2edbb3e8838c672cd7e247e47989df9d03fc6668\"}, {\"url\": \"https://git.kernel.org/stable/c/89add40066f9ed9abe5f7f886fe5789ff7e0c50e\"}], \"x_generator\": {\"engine\": \"bippy-1.2.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet: drop bad gso csum_start and offset in virtio_net_hdr\\n\\nTighten csum_start and csum_offset checks in virtio_net_hdr_to_skb\\nfor GSO packets.\\n\\nThe function already checks that a checksum requested with\\nVIRTIO_NET_HDR_F_NEEDS_CSUM is in skb linear. But for GSO packets\\nthis might not hold for segs after segmentation.\\n\\nSyzkaller demonstrated to reach this warning in skb_checksum_help\\n\\n\\toffset = skb_checksum_start_offset(skb);\\n\\tret = -EINVAL;\\n\\tif (WARN_ON_ONCE(offset \u003e= skb_headlen(skb)))\\n\\nBy injecting a TSO packet:\\n\\nWARNING: CPU: 1 PID: 3539 at net/core/dev.c:3284 skb_checksum_help+0x3d0/0x5b0\\n ip_do_fragment+0x209/0x1b20 net/ipv4/ip_output.c:774\\n ip_finish_output_gso net/ipv4/ip_output.c:279 [inline]\\n __ip_finish_output+0x2bd/0x4b0 net/ipv4/ip_output.c:301\\n iptunnel_xmit+0x50c/0x930 net/ipv4/ip_tunnel_core.c:82\\n ip_tunnel_xmit+0x2296/0x2c70 net/ipv4/ip_tunnel.c:813\\n __gre_xmit net/ipv4/ip_gre.c:469 [inline]\\n ipgre_xmit+0x759/0xa60 net/ipv4/ip_gre.c:661\\n __netdev_start_xmit include/linux/netdevice.h:4850 [inline]\\n netdev_start_xmit include/linux/netdevice.h:4864 [inline]\\n xmit_one net/core/dev.c:3595 [inline]\\n dev_hard_start_xmit+0x261/0x8c0 net/core/dev.c:3611\\n __dev_queue_xmit+0x1b97/0x3c90 net/core/dev.c:4261\\n packet_snd net/packet/af_packet.c:3073 [inline]\\n\\nThe geometry of the bad input packet at tcp_gso_segment:\\n\\n[ 52.003050][ T8403] skb len=12202 headroom=244 headlen=12093 tailroom=0\\n[ 52.003050][ T8403] mac=(168,24) mac_len=24 net=(192,52) trans=244\\n[ 52.003050][ T8403] shinfo(txflags=0 nr_frags=1 gso(size=1552 type=3 segs=0))\\n[ 52.003050][ T8403] csum(0x60000c7 start=199 offset=1536\\nip_summed=3 complete_sw=0 valid=0 level=0)\\n\\nMitigate with stricter input validation.\\n\\ncsum_offset: for GSO packets, deduce the correct value from gso_type.\\nThis is already done for USO. Extend it to TSO. Let UFO be:\\nudp[46]_ufo_fragment ignores these fields and always computes the\\nchecksum in software.\\n\\ncsum_start: finding the real offset requires parsing to the transport\\nheader. Do not add a parser, use existing segmentation parsing. Thanks\\nto SKB_GSO_DODGY, that also catches bad packets that are hw offloaded.\\nAgain test both TSO and USO. Do not test UFO for the above reason, and\\ndo not test UDP tunnel offload.\\n\\nGSO packet are almost always CHECKSUM_PARTIAL. USO packets may be\\nCHECKSUM_NONE since commit 10154dbded6d6 (\\\"udp: Allow GSO transmit\\nfrom devices with no checksum offload\\\"), but then still these fields\\nare initialized correctly in udp4_hwcsum/udp6_hwcsum_outgoing. So no\\nneed to test for ip_summed == CHECKSUM_PARTIAL first.\\n\\nThis revises an existing fix mentioned in the Fixes tag, which broke\\nsmall packets with GSO offload, as detected by kselftests.\"}], \"cpeApplicability\": [{\"nodes\": [{\"negate\": false, \"cpeMatch\": [{\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"5.15.167\", \"versionStartIncluding\": \"5.15.165\"}, {\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.1.107\", \"versionStartIncluding\": \"6.1.103\"}, {\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.6.46\", \"versionStartIncluding\": \"6.6.44\"}, {\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.10.5\", \"versionStartIncluding\": \"6.10.3\"}], \"operator\": \"OR\"}]}], \"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2026-05-11T20:31:54.698Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2024-43897\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-05-11T20:31:54.698Z\", \"dateReserved\": \"2024-08-17T09:11:59.291Z\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"datePublished\": \"2024-08-26T10:10:53.972Z\", \"assignerShortName\": \"Linux\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
WID-SEC-W-2024-1927
Vulnerability from csaf_certbund - Published: 2024-08-26 22:00 - Updated: 2025-06-04 22:00Summary
Linux Kernel: Mehrere Schwachstellen
Severity
Mittel
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung: Der Kernel stellt den Kern des Linux Betriebssystems dar.
Angriff: Ein lokaler Angreifer kann mehrere Schwachstellen in Linux Kernel ausnutzen, um einen Denial of Service Angriff durchzuführen oder einen nicht spezifizierten Angriff durchzuführen.
Betroffene Betriebssysteme: - Linux
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM QRadar SIEM <7.5.0 UP11
IBM / QRadar SIEM
|
<7.5.0 UP11 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Linux Kernel <5.4.282
Open Source / Linux Kernel
|
<5.4.282 | ||
|
Open Source Linux Kernel <6.11-rc2
Open Source / Linux Kernel
|
<6.11-rc2 | ||
|
Open Source Linux Kernel <6.6.47
Open Source / Linux Kernel
|
<6.6.47 | ||
|
Open Source Linux Kernel <6.10.6
Open Source / Linux Kernel
|
<6.10.6 | ||
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel <6.1.105
Open Source / Linux Kernel
|
<6.1.105 | ||
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Open Source Linux Kernel <5.15.165
Open Source / Linux Kernel
|
<5.15.165 | ||
|
Open Source Linux Kernel <5.10.224
Open Source / Linux Kernel
|
<5.10.224 | ||
|
Open Source Linux Kernel <4.19.320
Open Source / Linux Kernel
|
<4.19.320 | ||
|
Open Source Linux Kernel <6.11-rc3
Open Source / Linux Kernel
|
<6.11-rc3 | ||
|
Open Source Linux Kernel <6.10.5
Open Source / Linux Kernel
|
<6.10.5 | ||
|
Open Source Linux Kernel <6.11-rc1
Open Source / Linux Kernel
|
<6.11-rc1 | ||
|
Open Source Linux Kernel <6.6.46
Open Source / Linux Kernel
|
<6.6.46 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Broadcom Brocade SANnav
Broadcom
|
cpe:/a:broadcom:brocade_sannav:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM InfoSphere Guardium
IBM
|
cpe:/a:ibm:infosphere_guardium:-
|
— |
References
136 references
{
"document": {
"aggregate_severity": {
"text": "mittel"
},
"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": "Der Kernel stellt den Kern des Linux Betriebssystems dar.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein lokaler Angreifer kann mehrere Schwachstellen in Linux Kernel ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"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-2024-1927 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-1927.json"
},
{
"category": "self",
"summary": "WID-SEC-2024-1927 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-1927"
},
{
"category": "external",
"summary": "Linux CVE Announcements vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43885 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082652-CVE-2024-43885-3500@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43886 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082657-CVE-2024-43886-0726@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43887 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082658-CVE-2024-43887-93bf@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43888 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082659-CVE-2024-43888-5beb@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43889 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082600-CVE-2024-43889-4d0b@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43890 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082601-CVE-2024-43890-1c3a@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43891 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082603-CVE-2024-43891-a69d@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43892 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082604-CVE-2024-43892-584a@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43893 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082605-CVE-2024-43893-25dd@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43894 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082607-CVE-2024-43894-aeee@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43895 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082608-CVE-2024-43895-d3c0@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-43897 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082611-CVE-2024-43897-d473@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-44938 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082616-CVE-2024-44938-fc08@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-44939 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082619-CVE-2024-44939-cf96@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-44940 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082619-CVE-2024-44940-249f@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-44941 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082620-CVE-2024-44941-143e@gregkh/T/"
},
{
"category": "external",
"summary": "Linux CVE Announcement CVE-2024-44942 vom 2024-08-26",
"url": "https://lore.kernel.org/linux-cve-announce/2024082620-CVE-2024-44942-651a@gregkh/T/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3194-1 vom 2024-09-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-September/019400.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3195-1 vom 2024-09-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-September/019407.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3189-1 vom 2024-09-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-September/019404.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3190-1 vom 2024-09-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-September/019403.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3209-1 vom 2024-09-11",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/YNWVZVIFSX7PLBJX3I3PDZ4MIBERTN2Y/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3227-1 vom 2024-09-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-September/019430.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3383-1 vom 2024-09-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-September/019497.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3408-1 vom 2024-09-24",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/TGC7PQ5QNGEZWYIHCKH2KPZMGYJ4VN6B/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3483-1 vom 2024-09-29",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/2HO244EHQ65DPDJ2NOBAXLG7QYWSCUMA/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3483-1 vom 2024-09-29",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/2HO244EHQ65DPDJ2NOBAXLG7QYWSCUMA/"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-5782 vom 2024-10-03",
"url": "https://lists.debian.org/debian-security-announce/2024/msg00195.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-3912 vom 2024-10-07",
"url": "https://lists.debian.org/debian-lts-announce/2024/10/msg00003.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3551-1 vom 2024-10-08",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/Q7MIMQMCXNGMVS32KLTADYTPQCKF5HWU/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3553-1 vom 2024-10-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-October/019560.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3566-1 vom 2024-10-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-October/019578.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3559-1 vom 2024-10-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-October/019575.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3569-1 vom 2024-10-09",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/6GBL67LQ3MUSYQCQRQH2AZH3XWILTO5A/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3564-1 vom 2024-10-09",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/R7FS3QARF7WUPH5GFL22NW3G3SDO2C7Z/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3561-1 vom 2024-10-09",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/LSUY4BSWS5WR46CHS4FPBIJIRLKHRDHV/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3587-1 vom 2024-10-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-October/019588.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3592-1 vom 2024-10-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-October/019589.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:3591-1 vom 2024-10-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-October/019587.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12782 vom 2024-10-14",
"url": "https://linux.oracle.com/errata/ELSA-2024-12782.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12780 vom 2024-10-14",
"url": "https://linux.oracle.com/errata/ELSA-2024-12780.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7069-1 vom 2024-10-16",
"url": "https://ubuntu.com/security/notices/USN-7069-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7069-2 vom 2024-10-17",
"url": "https://ubuntu.com/security/notices/USN-7069-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7088-1 vom 2024-10-31",
"url": "https://ubuntu.com/security/notices/USN-7088-1"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:8870 vom 2024-11-05",
"url": "https://access.redhat.com/errata/RHSA-2024:8870"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7088-2 vom 2024-11-04",
"url": "https://ubuntu.com/security/notices/USN-7088-2"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:8856 vom 2024-11-05",
"url": "https://access.redhat.com/errata/RHSA-2024:8856"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-8856 vom 2024-11-06",
"url": "https://linux.oracle.com/errata/ELSA-2024-8856.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7088-3 vom 2024-11-06",
"url": "https://ubuntu.com/security/notices/USN-7088-3"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2024:8870 vom 2024-11-08",
"url": "https://errata.build.resf.org/RLSA-2024:8870"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7100-1 vom 2024-11-11",
"url": "https://ubuntu.com/security/notices/USN-7100-1"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:9315 vom 2024-11-12",
"url": "https://access.redhat.com/errata/RHSA-2024:9315"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7100-2 vom 2024-11-12",
"url": "https://ubuntu.com/security/notices/USN-7100-2"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12815 vom 2024-11-13",
"url": "https://linux.oracle.com/errata/ELSA-2024-12815.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7110-1 vom 2024-11-14",
"url": "https://ubuntu.com/security/notices/USN-7110-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7088-5 vom 2024-11-14",
"url": "https://ubuntu.com/security/notices/USN-7088-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7121-1 vom 2024-11-20",
"url": "https://ubuntu.com/security/notices/USN-7121-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7119-1 vom 2024-11-20",
"url": "https://ubuntu.com/security/notices/USN-7119-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7121-2 vom 2024-11-20",
"url": "https://ubuntu.com/security/notices/USN-7121-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7121-3 vom 2024-11-25",
"url": "https://ubuntu.com/security/notices/USN-7121-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7144-1 vom 2024-12-09",
"url": "https://ubuntu.com/security/notices/USN-7144-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12868 vom 2024-12-09",
"url": "https://linux.oracle.com/errata/ELSA-2024-12868.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7148-1 vom 2024-12-10",
"url": "https://ubuntu.com/security/notices/USN-7148-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7154-1 vom 2024-12-12",
"url": "https://ubuntu.com/security/notices/USN-7154-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7156-1 vom 2024-12-12",
"url": "https://ubuntu.com/security/notices/USN-7156-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7155-1 vom 2024-12-12",
"url": "https://ubuntu.com/security/notices/USN-7155-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7159-1 vom 2024-12-12",
"url": "https://ubuntu.com/security/notices/USN-7159-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4315-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/LQPWDP54GSTHYCV4CTCOE67D2ANVPPUW/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4364-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020019.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7159-2 vom 2024-12-18",
"url": "https://ubuntu.com/security/notices/USN-7159-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7173-1 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7173-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7166-1 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7166-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7159-2 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7159-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7159-2 vom 2024-12-18",
"url": "https://ubuntu.com/security/notices/USN-7166-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/WFOJHFFEHK42VPQ6XLZWB77H5OEJ3FF4/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020028.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/WFOJHFFEHK42VPQ6XLZWB77H5OEJ3FF4/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7159-4 vom 2024-12-20",
"url": "https://ubuntu.com/security/notices/USN-7159-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7173-2 vom 2024-12-20",
"url": "https://ubuntu.com/security/notices/USN-7173-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7166-3 vom 2024-12-20",
"url": "https://ubuntu.com/security/notices/USN-7166-3"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4008 vom 2025-01-03",
"url": "https://lists.debian.org/debian-lts-announce/2025/01/msg00001.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7186-1 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7186-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7154-2 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7154-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7159-5 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7159-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7196-1 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7196-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7194-1 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7194-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7195-1 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7195-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7186-2 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7186-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7195-2 vom 2025-01-14",
"url": "https://ubuntu.com/security/notices/USN-7195-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7173-3 vom 2025-01-15",
"url": "https://ubuntu.com/security/notices/USN-7173-3"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7181933 vom 2025-01-29",
"url": "https://www.ibm.com/support/pages/node/7181933"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7182335 vom 2025-02-03",
"url": "https://www.ibm.com/support/pages/node/7182335"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20095 vom 2025-02-11",
"url": "https://linux.oracle.com/errata/ELSA-2025-20095.html"
},
{
"category": "external",
"summary": "Brocade Security Advisory BSA-2025-2889 vom 2025-02-13",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/25416"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4075 vom 2025-03-01",
"url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00002.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:2270 vom 2025-03-05",
"url": "https://access.redhat.com/errata/RHSA-2025:2270"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1912 vom 2025-03-05",
"url": "https://access.redhat.com/errata/RHSA-2025:1912"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7332-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7332-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7332-2 vom 2025-03-11",
"url": "https://ubuntu.com/security/notices/USN-7332-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7342-1 vom 2025-03-11",
"url": "https://ubuntu.com/security/notices/USN-7342-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7344-1 vom 2025-03-11",
"url": "https://ubuntu.com/security/notices/USN-7344-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7332-3 vom 2025-03-13",
"url": "https://ubuntu.com/security/notices/USN-7332-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7344-2 vom 2025-03-13",
"url": "https://ubuntu.com/security/notices/USN-7344-2"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:2705 vom 2025-03-18",
"url": "https://access.redhat.com/errata/RHSA-2025:2705"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:3021 vom 2025-03-19",
"url": "https://access.redhat.com/errata/RHSA-2025:3021"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7387-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7387-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7388-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7388-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7393-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7393-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7390-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7390-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7387-3 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7387-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7387-2 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7387-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-2 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7392-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7392-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7391-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7391-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7389-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7389-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-3 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7392-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7401-1 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7401-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-4 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7392-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7407-1 vom 2025-04-02",
"url": "https://ubuntu.com/security/notices/USN-7407-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7413-1 vom 2025-04-03",
"url": "https://ubuntu.com/security/notices/USN-7413-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7421-1 vom 2025-04-07",
"url": "https://ubuntu.com/security/notices/USN-7421-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7458-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7458-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7463-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7463-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7459-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7459-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7459-2 vom 2025-04-28",
"url": "https://ubuntu.com/security/notices/USN-7459-2"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:6966 vom 2025-05-13",
"url": "https://access.redhat.com/errata/RHSA-2025:6966"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4178 vom 2025-05-26",
"url": "https://lists.debian.org/debian-lts-announce/2025/05/msg00030.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7539-1 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7539-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7540-1 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7540-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20047-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021306.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20073-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021282.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20077-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021265.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20044-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021334.html"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2025-06-04T22:00:00.000+00:00",
"generator": {
"date": "2025-06-05T06:14:41.951+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.3.12"
}
},
"id": "WID-SEC-W-2024-1927",
"initial_release_date": "2024-08-26T22:00:00.000+00:00",
"revision_history": [
{
"date": "2024-08-26T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2024-09-10T22:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-09-11T22:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-09-12T22:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-09-23T22:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-09-29T22:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-10-03T22:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2024-10-07T22:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2024-10-08T22:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-10-09T22:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-10-10T22:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-10-14T22:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-10-15T22:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-10-17T22:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-10-31T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-11-04T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von Red Hat und Ubuntu aufgenommen"
},
{
"date": "2024-11-05T23:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-11-10T23:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2024-11-11T23:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-11-12T23:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von Red Hat und Ubuntu aufgenommen"
},
{
"date": "2024-11-14T23:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-11-19T23:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-11-20T23:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-11-25T23:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-12-09T23:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Ubuntu und Oracle Linux aufgenommen"
},
{
"date": "2024-12-10T23:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-12-12T23:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-12-15T23:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-12-17T23:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2024-12-18T23:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-12-22T23:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-02T23:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-01-06T23:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-09T23:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-14T23:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-15T23:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-29T23:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-02-03T23:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-02-10T23:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-02-13T23:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von BROCADE aufgenommen"
},
{
"date": "2025-03-02T23:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-03-04T23:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-03-05T23:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-11T23:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-12T23:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-17T23:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-03-18T23:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-03-27T23:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-30T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-01T22:00:00.000+00:00",
"number": "50",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-02T22:00:00.000+00:00",
"number": "51",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-03T22:00:00.000+00:00",
"number": "52",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-07T22:00:00.000+00:00",
"number": "53",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-24T22:00:00.000+00:00",
"number": "54",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-28T22:00:00.000+00:00",
"number": "55",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-13T22:00:00.000+00:00",
"number": "56",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-26T22:00:00.000+00:00",
"number": "57",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-05-27T22:00:00.000+00:00",
"number": "58",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-06-04T22:00:00.000+00:00",
"number": "59",
"summary": "Neue Updates von SUSE aufgenommen"
}
],
"status": "final",
"version": "59"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Broadcom Brocade SANnav",
"product": {
"name": "Broadcom Brocade SANnav",
"product_id": "T034392",
"product_identification_helper": {
"cpe": "cpe:/a:broadcom:brocade_sannav:-"
}
}
}
],
"category": "vendor",
"name": "Broadcom"
},
{
"branches": [
{
"category": "product_name",
"name": "Debian Linux",
"product": {
"name": "Debian Linux",
"product_id": "2951",
"product_identification_helper": {
"cpe": "cpe:/o:debian:debian_linux:-"
}
}
}
],
"category": "vendor",
"name": "Debian"
},
{
"branches": [
{
"category": "product_name",
"name": "IBM InfoSphere Guardium",
"product": {
"name": "IBM InfoSphere Guardium",
"product_id": "T002366",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:infosphere_guardium:-"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP11",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP11",
"product_id": "T040749"
}
},
{
"category": "product_version",
"name": "7.5.0 UP11",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP11",
"product_id": "T040749-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up11"
}
}
}
],
"category": "product_name",
"name": "QRadar SIEM"
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c6.11-rc3",
"product": {
"name": "Open Source Linux Kernel \u003c6.11-rc3",
"product_id": "T037095"
}
},
{
"category": "product_version",
"name": "6.11-rc3",
"product": {
"name": "Open Source Linux Kernel 6.11-rc3",
"product_id": "T037095-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.11-rc3"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.10.5",
"product": {
"name": "Open Source Linux Kernel \u003c6.10.5",
"product_id": "T037096"
}
},
{
"category": "product_version",
"name": "6.10.5",
"product": {
"name": "Open Source Linux Kernel 6.10.5",
"product_id": "T037096-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.10.5"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.11-rc1",
"product": {
"name": "Open Source Linux Kernel \u003c6.11-rc1",
"product_id": "T037097"
}
},
{
"category": "product_version",
"name": "6.11-rc1",
"product": {
"name": "Open Source Linux Kernel 6.11-rc1",
"product_id": "T037097-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.11-rc1"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.6.46",
"product": {
"name": "Open Source Linux Kernel \u003c6.6.46",
"product_id": "T037098"
}
},
{
"category": "product_version",
"name": "6.6.46",
"product": {
"name": "Open Source Linux Kernel 6.6.46",
"product_id": "T037098-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.6.46"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.1.105",
"product": {
"name": "Open Source Linux Kernel \u003c6.1.105",
"product_id": "T037099"
}
},
{
"category": "product_version",
"name": "6.1.105",
"product": {
"name": "Open Source Linux Kernel 6.1.105",
"product_id": "T037099-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.1.105"
}
}
},
{
"category": "product_version_range",
"name": "\u003c5.15.165",
"product": {
"name": "Open Source Linux Kernel \u003c5.15.165",
"product_id": "T037100"
}
},
{
"category": "product_version",
"name": "5.15.165",
"product": {
"name": "Open Source Linux Kernel 5.15.165",
"product_id": "T037100-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:5.15.165"
}
}
},
{
"category": "product_version_range",
"name": "\u003c5.10.224",
"product": {
"name": "Open Source Linux Kernel \u003c5.10.224",
"product_id": "T037101"
}
},
{
"category": "product_version",
"name": "5.10.224",
"product": {
"name": "Open Source Linux Kernel 5.10.224",
"product_id": "T037101-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:5.10.224"
}
}
},
{
"category": "product_version_range",
"name": "\u003c4.19.320",
"product": {
"name": "Open Source Linux Kernel \u003c4.19.320",
"product_id": "T037102"
}
},
{
"category": "product_version",
"name": "4.19.320",
"product": {
"name": "Open Source Linux Kernel 4.19.320",
"product_id": "T037102-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:4.19.320"
}
}
},
{
"category": "product_version_range",
"name": "\u003c5.4.282",
"product": {
"name": "Open Source Linux Kernel \u003c5.4.282",
"product_id": "T037103"
}
},
{
"category": "product_version",
"name": "5.4.282",
"product": {
"name": "Open Source Linux Kernel 5.4.282",
"product_id": "T037103-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:5.4.282"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.11-rc2",
"product": {
"name": "Open Source Linux Kernel \u003c6.11-rc2",
"product_id": "T037104"
}
},
{
"category": "product_version",
"name": "6.11-rc2",
"product": {
"name": "Open Source Linux Kernel 6.11-rc2",
"product_id": "T037104-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.11-rc2"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.6.47",
"product": {
"name": "Open Source Linux Kernel \u003c6.6.47",
"product_id": "T037105"
}
},
{
"category": "product_version",
"name": "6.6.47",
"product": {
"name": "Open Source Linux Kernel 6.6.47",
"product_id": "T037105-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.6.47"
}
}
},
{
"category": "product_version_range",
"name": "\u003c6.10.6",
"product": {
"name": "Open Source Linux Kernel \u003c6.10.6",
"product_id": "T037106"
}
},
{
"category": "product_version",
"name": "6.10.6",
"product": {
"name": "Open Source Linux Kernel 6.10.6",
"product_id": "T037106-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:6.10.6"
}
}
}
],
"category": "product_name",
"name": "Linux Kernel"
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T004914",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "RESF Rocky Linux",
"product": {
"name": "RESF Rocky Linux",
"product_id": "T032255",
"product_identification_helper": {
"cpe": "cpe:/o:resf:rocky_linux:-"
}
}
}
],
"category": "vendor",
"name": "RESF"
},
{
"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": "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"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-43885",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43885"
},
{
"cve": "CVE-2024-43886",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43886"
},
{
"cve": "CVE-2024-43887",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43887"
},
{
"cve": "CVE-2024-43888",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43888"
},
{
"cve": "CVE-2024-43889",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43889"
},
{
"cve": "CVE-2024-43890",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43890"
},
{
"cve": "CVE-2024-43891",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43891"
},
{
"cve": "CVE-2024-43892",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43892"
},
{
"cve": "CVE-2024-43893",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43893"
},
{
"cve": "CVE-2024-43894",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43894"
},
{
"cve": "CVE-2024-43895",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43895"
},
{
"cve": "CVE-2024-43897",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-43897"
},
{
"cve": "CVE-2024-44938",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-44938"
},
{
"cve": "CVE-2024-44939",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-44939"
},
{
"cve": "CVE-2024-44940",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-44940"
},
{
"cve": "CVE-2024-44941",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-44941"
},
{
"cve": "CVE-2024-44942",
"product_status": {
"known_affected": [
"T040749",
"67646",
"T037103",
"T037104",
"T037105",
"T037106",
"T004914",
"T037099",
"T032255",
"T037100",
"T037101",
"T037102",
"T037095",
"T037096",
"T037097",
"T037098",
"2951",
"T002207",
"T034392",
"T000126",
"T002366"
]
},
"release_date": "2024-08-26T22:00:00.000+00:00",
"title": "CVE-2024-44942"
}
]
}
Loading…
Trend slope:
-
(linear fit over daily sighting counts)
Show additional events:
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
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.
Loading…
Loading…