BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2025
CVE-2022-50073High confidence

net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev is null

Linux · Linux

5.5MediumCVSS 3.1
Recommended action
Scheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
Distribution package intelligence

Ubuntu vendor package status

Canonical’s release and source-package findings are shown separately from local repository availability.

3 package states
Repository candidate not checked

A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard archivelinux-raspi-realtimeAffected, no fix publishedCanonical OVAL identifies this running kernel flavour as affected and does not publish a fixed package version in this definition.Not published in this feedCanonical record ↗Source updated 10 Sept 2026
Ubuntu 24.04 LTSnoble · standard archivelinux-realtimeAffected, no fix publishedCanonical OVAL identifies this running kernel flavour as affected and does not publish a fixed package version in this definition.Not published in this feedCanonical record ↗Source updated 10 Sept 2026
Ubuntu 24.04 LTSnoble · standard archivelinux-riscvAffected, no fix publishedCanonical OVAL identifies this running kernel flavour as affected and does not publish a fixed package version in this definition.Not published in this feedCanonical record ↗Source updated 10 Sept 2026
Optional official sources

National CERT insights
?CERT means Computer Emergency Response Team; CSIRT is the closely related term Computer Security Incident Response Team.

Select the national-authority views to include. The exact source language is shown on each matched advisory. Your choice is remembered on this device and encoded in the shareable URL.

Official European source

ENISA European Vulnerability Database

Official EUVD identifiers, advisory evidence and known-exploited context. Missing fields are not treated as evidence of low risk.

1 current
ENISA EUVD identifier

EUVD-2022-55342

No EUVD known-exploited evidence

ENISA has published the identifier mapping but no EUVD description has been stored yet.

EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionScheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
01

What, why and how

In the Linux kernel, the following vulnerability has been resolved: net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev is null Fixes a NULL pointer derefence bug triggered from tap driver. When tap_get_user calls virtio_net_hdr_to_skb the skb->dev is null (in tap.c skb->dev is set after the call to virtio_net_hdr_to_skb) virtio_net_hdr_to_skb calls dev_parse_header_protocol which needs skb->dev field to be valid. The line that trigers the bug is in dev_parse_header_protocol (dev is at offset 0x10 from skb and is stored in RAX register) if (!dev->header_ops || !dev->header_ops->parse_protocol) 22e1: mov 0x10(%rbx),%rax 22e5: mov 0x230(%rax),%rax Setting skb->dev before the call in tap.c fixes the issue. BUG: kernel NULL pointer dereference, address: 0000000000000230 RIP: 0010:virtio_net_hdr_to_skb.constprop.0+0x335/0x410 [tap] Code: c0 0f 85 b7 fd ff ff eb d4 41 39 c6 77 cf 29 c6 48 89 df 44 01 f6 e8 7a 79 83 c1 48 85 c0 0f 85 d9 fd ff ff eb b7 48 8b 43 10 <48> 8b 80 30 02 00 00 48 85 c0 74 55 48 8b 40 28 48 85 c0 74 4c 48 RSP: 0018:ffffc90005c27c38 EFLAGS: 00010246 RAX: 0000000000000000 RBX: ffff888298f25300 RCX: 0000000000000010 RDX: 0000000000000005 RSI: ffffc90005c27cb6 RDI: ffff888298f25300 RBP: ffffc90005c27c80 R08: 00000000ffffffea R09: 00000000000007e8 R10: ffff88858ec77458 R11: 0000000000000000 R12: 0000000000000001 R13: 0000000000000014 R14: ffffc90005c27e08 R15: ffffc90005c27cb6 FS: 0000000000000000(0000) GS:ffff88858ec40000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000230 CR3: 0000000281408006 CR4: 00000000003706e0 Call Trace: tap_get_user+0x3f1/0x540 [tap] tap_sendmsg+0x56/0x362 [tap] ? get_tx_bufs+0xc2/0x1e0 [vhost_net] handle_tx_copy+0x114/0x670 [vhost_net] handle_tx+0xb0/0xe0 [vhost_net] handle_tx_kick+0x15/0x20 [vhost_net] vhost_worker+0x7b/0xc0 [vhost] ? vhost_vring_call_reset+0x40/0x40 [vhost] kthread+0xfa/0x120 ? kthread_complete_and_exit+0x20/0x20 ret_from_fork+0x1f/0x30

What

In the Linux kernel, the following vulnerability has been resolved: net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev is null Fixes a NULL pointer derefence bug triggered from tap driver. When tap_get_user calls virtio_net_hdr_to_skb the skb->dev is null (in tap.c skb->dev is set after the call to virtio_net_hdr_to_skb) virtio_net_hdr_to_skb calls dev_parse_header_protocol which needs skb->dev field to be valid. The line that trigers the bug is in dev_parse_header_protocol (dev is at offset 0x10 from skb and is stored in RAX register) if (!dev->header_ops || !dev->header_ops->parse_protocol) 22e1: mov 0x10(%rbx),%rax 22e5: mov 0x230(%rax),%rax Setting skb->dev before the call in tap.c fixes the issue. BUG: kernel NULL pointer dereference, address: 0000000000000230 RIP: 0010:virtio_net_hdr_to_skb.constprop.0+0x335/0x410 [tap] Code: c0 0f 85 b7 fd ff ff eb d4 41 39 c6 77 cf 29 c6 48 89 df 44 01 f6 e8 7a 79 83 c1 48 85 c0 0f 85 d9 fd ff ff eb b7 48 8b 43 10 <48> 8b 80 30 02 00 00 48 85 c0 74 55 48 8b 40 28 48 85 c0 74 4c 48 RSP: 0018:ffffc90005c27c38 EFLAGS: 00010246 RAX: 0000000000000000 RBX: ffff888298f25300 RCX: 0000000000000010 RDX: 0000000000000005 RSI: ffffc90005c27cb6 RDI: ffff888298f25300 RBP: ffffc90005c27c80 R08: 00000000ffffffea R09: 00000000000007e8 R10: ffff88858ec77458 R11: 0000000000000000 R12: 0000000000000001 R13: 0000000000000014 R14: ffffc90005c27e08 R15: ffffc90005c27cb6 FS: 0000000000000000(0000) GS:ffff88858ec40000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000230 CR3: 0000000281408006 CR4: 00000000003706e0 Call Trace: tap_get_user+0x3f1/0x540 [tap] tap_sendmsg+0x56/0x362 [tap] ? get_tx_bufs+0xc2/0x1e0 [vhost_net] handle_tx_copy+0x114/0x670 [vhost_net] handle_tx+0xb0/0xe0 [vhost_net] handle_tx_kick+0x15/0x20 [vhost_net] vhost_worker+0x7b/0xc0 [vhost] ? vhost_vring_call_reset+0x40/0x40 [vhost] kthread+0xfa/0x120 ? kthread_complete_and_exit+0x20/0x20 ret_from_fork+0x1f/0x30

Why

The product dereferences a pointer that it expects to be valid but is NULL.

How

An attacker operating through local access may attempt exploitation with low privileges. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

In the Linux kernel, the following vulnerability has been resolved: net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev is null Fixes a NULL pointer derefence bug triggered from tap driver. When tap_get_user calls virtio_net_hdr_to_skb the skb->dev is null (in tap.c skb->dev is set after the call to virtio_net_hdr_to_skb) virtio_net_hdr_to_skb calls dev_parse_header_protocol which needs skb->dev field to be valid. The line that trigers the bug is in dev_parse_header_protocol (dev is at offset 0x10 from skb and is stored in RAX register) if (!dev->header_ops || !dev->header_ops->parse_protocol) 22e1: mov 0x10(%rbx),%rax 22e5: mov 0x230(%rax),%rax Setting skb->dev before the call in tap.c fixes the issue. BUG: kernel NULL pointer dereference, address: 0000000000000230 RIP: 0010:virtio_net_hdr_to_skb.constprop.0+0x335/0x410 [tap] Code: c0 0f 85 b7 fd ff ff eb d4 41 39 c6 77 cf 29 c6 48 89 df 44 01 f6 e8 7a 79 83 c1 48 85 c0 0f 85 d9 fd ff ff eb b7 48 8b 43 10 <48> 8b 80 30 02 00 00 48 85 c0 74 55 48 8b 40 28 48 85 c0 74 4c 48 RSP: 0018:ffffc90005c27c38 EFLAGS: 00010246 RAX: 0000000000000000 RBX: ffff888298f25300 RCX: 0000000000000010 RDX: 0000000000000005 RSI: ffffc90005c27cb6 RDI: ffff888298f25300 RBP: ffffc90005c27c80 R08: 00000000ffffffea R09: 00000000000007e8 R10: ffff88858ec77458 R11: 0000000000000000 R12: 0000000000000001 R13: 0000000000000014 R14: ffffc90005c27e08 R15: ffffc90005c27cb6 FS: 0000000000000000(0000) GS:ffff88858ec40000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000230 CR3: 0000000281408006 CR4: 00000000003706e0 Call Trace: tap_get_user+0x3f1/0x540 [tap] tap_sendmsg+0x56/0x362 [tap] ? get_tx_bufs+0xc2/0x1e0 [vhost_net] handle_tx_copy+0x114/0x670 [vhost_net] handle_tx+0xb0/0xe0 [vhost_net] handle_tx_kick+0x15/0x20 [vhost_net] vhost_worker+0x7b/0xc0 [vhost] ? vhost_vring_call_reset+0x40/0x40 [vhost] kthread+0xfa/0x120 ? kthread_complete_and_exit+0x20/0x20 ret_from_fork+0x1f/0x30

Why

The product dereferences a pointer that it expects to be valid but is NULL.

How

An attacker operating through local access may attempt exploitation with low privileges. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.

Observed exploitation
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
No confirmed evidence

No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.

Public PoC / exploit material
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
None recorded

No exploit-tagged reference or CISA SSVC proof-of-concept state is currently recorded. Research may still exist outside the structured feeds.

Likely attack path
local access → NULL Pointer Dereference → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Local
Privileges required
Low: a basic authenticated account is required
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-476

CWE-476: NULL Pointer Dereference. The product dereferences a pointer that it expects to be valid but is NULL.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Common Vulnerability Scoring System 3.1: the compact vector below is decoded into plain language.

AVLocalAttack vector: The attacker needs local access to the vulnerable system.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.PRLowPrivileges required: The attacker needs basic user-level privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CNoneConfidentiality impact: No direct loss is represented by this metric.INoneIntegrity impact: No direct loss is represented by this metric.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
The issue can support a local privilege or sandbox boundary transition; normal system utilities may then be available in the gained context.
CWE-476
A

Official authority intelligence

Only matched European and national findings are included. Language selectors and unavailable sources are omitted.

BSI · German · WID-SEC-W-2025-1350Linux Kernel: Mehrere Schwachstellen ermöglichen Denial of Service

Ein lokaler Angreifer kann mehrere Schwachstellen in Linux Kernel ausnutzen, um einen Denial of Service Angriff durchzuführen.

Official advisory
CERT-FR · French · CERTFR-2026-AVI-1093Multiples vulnérabilités dans le noyau Linux d'Ubuntu

letin de sécurité Ubuntu USN-8644-3 du 27 août 2026 https://ubuntu.com/security/notices/USN-8644-3 Bulletin de sécurité Ubuntu USN-8658-4 du 27 août 2026 https://ubuntu.com/security/notices/USN-8658-4 Bulletin de sécurité Ubuntu USN-8661-3 du 27 août 2026 https://ubuntu.com/security/notices/USN-8661-3 Bulletin de sécurité Ubuntu USN-8666-3 du 27 août 2026 https://ubuntu.com/security/notices/USN-8666-3 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0985Multiples vulnérabilités dans le noyau Linux d'Ubuntu

rovoquer une élévation de privilèges, une atteinte à la confidentialité des données et un problème de sécurité non spécifié par l'éditeur. Solutions Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation). Documentation Bulletin de sécurité Ubuntu USN-8620-3 du 31 juillet 2026 https://ubuntu.com/security/notices/USN-8620-3 Bulletin de sécurité Ubuntu USN-8620-4 du 31 juillet 2026 https://ubuntu.com/security/notices/USN-8620-4 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0954Multiples vulnérabilités dans le noyau Linux d'Ubuntu

urité Ubuntu USN-8615-2 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8615-2 Bulletin de sécurité Ubuntu USN-8620-2 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8620-2 Bulletin de sécurité Ubuntu USN-8622-1 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8622-1 Bulletin de sécurité Ubuntu USN-8623-1 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8623-1 Référence CVE CVE-2022-48816 https://www.cve.org/CVERecord?id=CVE-2022-48816 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0926Multiples vulnérabilités dans le noyau Linux d'Ubuntu

3 juillet 2026 https://ubuntu.com/security/notices/USN-8593-1 Bulletin de sécurité Ubuntu USN-8594-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8594-1 Bulletin de sécurité Ubuntu USN-8595-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8595-1 Bulletin de sécurité Ubuntu USN-8596-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8596-1 Bulletin de sécurité Ubuntu USN-8597-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8597-1 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0862Multiples vulnérabilités dans le noyau Linux de Debian LTS

msg00292 du 05 juillet 2026 https://lists.debian.org/debian-security-announce/2026/msg00292.html Référence CVE CVE-2021-47188 https://www.cve.org/CVERecord?id=CVE-2021-47188 Référence CVE CVE-2021-47211 https://www.cve.org/CVERecord?id=CVE-2021-47211 Référence CVE CVE-2022-48703 https://www.cve.org/CVERecord?id=CVE-2022-48703 Référence CVE CVE-2022-49135 https://www.cve.org/CVERecord?id=CVE-2022-49135 Référence CVE CVE-2022-49158 https://www.cve.org/CVERecord?id=CVE-2022-49158 Référence CVE CVE-2022-49183 https://www.cve.org/CVERecord?id=CVE-2022-49183 Référence CVE CVE-2022-49822 https://www.cve.org/CVERecord?id=CVE-2022-49822 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50472 https://www.cve.org/CVERecord?id=CVE-2022-50472 Référence CVE CVE-2022-50493 https://www.cve.org/CVERecord?id=CVE-2022-50493 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-53133 https://www.cve.org/CVERecord?id=CVE-2023-53133 Référence CVE CVE-2023-53292 https://www.cve.org/CVERecord?id=CVE-2023-53292 Référence CVE CVE-2023-53421 https://www.cve.org/CVERecord?id=CVE-2023-53421 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53989 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0326Multiples vulnérabilités dans les produits VMware

d?id=CVE-2022-49971 Référence CVE CVE-2022-49974 https://www.cve.org/CVERecord?id=CVE-2022-49974 Référence CVE CVE-2022-49980 https://www.cve.org/CVERecord?id=CVE-2022-49980 Référence CVE CVE-2022-49997 https://www.cve.org/CVERecord?id=CVE-2022-49997 Référence CVE CVE-2022-50002 https://www.cve.org/CVERecord?id=CVE-2022-50002 Référence CVE CVE-2022-50009 https://www.cve.org/CVERecord?id=CVE-2022-50009 Référence CVE CVE-2022-50015 https://www.cve.org/CVERecord?id=CVE-2022-50015 Référence CVE CVE-2022-50016 https://www.cve.org/CVERecord?id=CVE-2022-50016 Référence CVE CVE-2022-50071 https://www.cve.org/CVERecord?id=CVE-2022-50071 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50090 https://www.cve.org/CVERecord?id=CVE-2022-50090 Référence CVE CVE-2022-50095 https://www.cve.org/CVERecord?id=CVE-2022-50095 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50163 https://www.cve.org/CVERecord?id=CVE-2022-50163 Référence CVE CVE-2022-50166 https://www.cve.org/CVERecord?id=CVE-2022-50166 Référence CVE CVE-2022-50167 https://www.cve.org/CVERecord?id=CVE-2022-50167 Référence CVE CVE-2022-50178 https://www.cve.org/CVERecord?id=CVE-2022-50178 Référence CVE CVE-2022-50195 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0316Multiples vulnérabilités dans les produits VMware

d?id=CVE-2022-49971 Référence CVE CVE-2022-49974 https://www.cve.org/CVERecord?id=CVE-2022-49974 Référence CVE CVE-2022-49980 https://www.cve.org/CVERecord?id=CVE-2022-49980 Référence CVE CVE-2022-49997 https://www.cve.org/CVERecord?id=CVE-2022-49997 Référence CVE CVE-2022-50002 https://www.cve.org/CVERecord?id=CVE-2022-50002 Référence CVE CVE-2022-50009 https://www.cve.org/CVERecord?id=CVE-2022-50009 Référence CVE CVE-2022-50015 https://www.cve.org/CVERecord?id=CVE-2022-50015 Référence CVE CVE-2022-50016 https://www.cve.org/CVERecord?id=CVE-2022-50016 Référence CVE CVE-2022-50071 https://www.cve.org/CVERecord?id=CVE-2022-50071 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50090 https://www.cve.org/CVERecord?id=CVE-2022-50090 Référence CVE CVE-2022-50095 https://www.cve.org/CVERecord?id=CVE-2022-50095 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50163 https://www.cve.org/CVERecord?id=CVE-2022-50163 Référence CVE CVE-2022-50166 https://www.cve.org/CVERecord?id=CVE-2022-50166 Référence CVE CVE-2022-50167 https://www.cve.org/CVERecord?id=CVE-2022-50167 Référence CVE CVE-2022-50178 https://www.cve.org/CVERecord?id=CVE-2022-50178 Référence CVE CVE-2022-50195 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0081Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-50059 Référence CVE CVE-2022-50060 https://www.cve.org/CVERecord?id=CVE-2022-50060 Référence CVE CVE-2022-50061 https://www.cve.org/CVERecord?id=CVE-2022-50061 Référence CVE CVE-2022-50062 https://www.cve.org/CVERecord?id=CVE-2022-50062 Référence CVE CVE-2022-50065 https://www.cve.org/CVERecord?id=CVE-2022-50065 Référence CVE CVE-2022-50066 https://www.cve.org/CVERecord?id=CVE-2022-50066 Référence CVE CVE-2022-50067 https://www.cve.org/CVERecord?id=CVE-2022-50067 Référence CVE CVE-2022-50068 https://www.cve.org/CVERecord?id=CVE-2022-50068 Référence CVE CVE-2022-50072 https://www.cve.org/CVERecord?id=CVE-2022-50072 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50074 https://www.cve.org/CVERecord?id=CVE-2022-50074 Référence CVE CVE-2022-50076 https://www.cve.org/CVERecord?id=CVE-2022-50076 Référence CVE CVE-2022-50077 https://www.cve.org/CVERecord?id=CVE-2022-50077 Référence CVE CVE-2022-50079 https://www.cve.org/CVERecord?id=CVE-2022-50079 Référence CVE CVE-2022-50083 https://www.cve.org/CVERecord?id=CVE-2022-50083 Référence CVE CVE-2022-50084 https://www.cve.org/CVERecord?id=CVE-2022-50084 Référence CVE CVE-2022-50085 https://www.cve.org/CVERecord?id=CVE-2022-50085 Référence CVE CVE-2022-50087 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2025-AVI-1009Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-50059 Référence CVE CVE-2022-50060 https://www.cve.org/CVERecord?id=CVE-2022-50060 Référence CVE CVE-2022-50061 https://www.cve.org/CVERecord?id=CVE-2022-50061 Référence CVE CVE-2022-50062 https://www.cve.org/CVERecord?id=CVE-2022-50062 Référence CVE CVE-2022-50065 https://www.cve.org/CVERecord?id=CVE-2022-50065 Référence CVE CVE-2022-50066 https://www.cve.org/CVERecord?id=CVE-2022-50066 Référence CVE CVE-2022-50067 https://www.cve.org/CVERecord?id=CVE-2022-50067 Référence CVE CVE-2022-50068 https://www.cve.org/CVERecord?id=CVE-2022-50068 Référence CVE CVE-2022-50072 https://www.cve.org/CVERecord?id=CVE-2022-50072 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50074 https://www.cve.org/CVERecord?id=CVE-2022-50074 Référence CVE CVE-2022-50076 https://www.cve.org/CVERecord?id=CVE-2022-50076 Référence CVE CVE-2022-50077 https://www.cve.org/CVERecord?id=CVE-2022-50077 Référence CVE CVE-2022-50079 https://www.cve.org/CVERecord?id=CVE-2022-50079 Référence CVE CVE-2022-50083 https://www.cve.org/CVERecord?id=CVE-2022-50083 Référence CVE CVE-2022-50084 https://www.cve.org/CVERecord?id=CVE-2022-50084 Référence CVE CVE-2022-50085 https://www.cve.org/CVERecord?id=CVE-2022-50085 Référence CVE CVE-2022-50086 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2025-AVI-0649Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-50059 Référence CVE CVE-2022-50060 https://www.cve.org/CVERecord?id=CVE-2022-50060 Référence CVE CVE-2022-50061 https://www.cve.org/CVERecord?id=CVE-2022-50061 Référence CVE CVE-2022-50062 https://www.cve.org/CVERecord?id=CVE-2022-50062 Référence CVE CVE-2022-50065 https://www.cve.org/CVERecord?id=CVE-2022-50065 Référence CVE CVE-2022-50066 https://www.cve.org/CVERecord?id=CVE-2022-50066 Référence CVE CVE-2022-50067 https://www.cve.org/CVERecord?id=CVE-2022-50067 Référence CVE CVE-2022-50068 https://www.cve.org/CVERecord?id=CVE-2022-50068 Référence CVE CVE-2022-50072 https://www.cve.org/CVERecord?id=CVE-2022-50072 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50074 https://www.cve.org/CVERecord?id=CVE-2022-50074 Référence CVE CVE-2022-50076 https://www.cve.org/CVERecord?id=CVE-2022-50076 Référence CVE CVE-2022-50077 https://www.cve.org/CVERecord?id=CVE-2022-50077 Référence CVE CVE-2022-50079 https://www.cve.org/CVERecord?id=CVE-2022-50079 Référence CVE CVE-2022-50083 https://www.cve.org/CVERecord?id=CVE-2022-50083 Référence CVE CVE-2022-50084 https://www.cve.org/CVERecord?id=CVE-2022-50084 Référence CVE CVE-2022-50085 https://www.cve.org/CVERecord?id=CVE-2022-50085 Référence CVE CVE-2022-50087 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2025-AVI-0607Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-50059 Référence CVE CVE-2022-50060 https://www.cve.org/CVERecord?id=CVE-2022-50060 Référence CVE CVE-2022-50061 https://www.cve.org/CVERecord?id=CVE-2022-50061 Référence CVE CVE-2022-50062 https://www.cve.org/CVERecord?id=CVE-2022-50062 Référence CVE CVE-2022-50065 https://www.cve.org/CVERecord?id=CVE-2022-50065 Référence CVE CVE-2022-50066 https://www.cve.org/CVERecord?id=CVE-2022-50066 Référence CVE CVE-2022-50067 https://www.cve.org/CVERecord?id=CVE-2022-50067 Référence CVE CVE-2022-50068 https://www.cve.org/CVERecord?id=CVE-2022-50068 Référence CVE CVE-2022-50072 https://www.cve.org/CVERecord?id=CVE-2022-50072 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50074 https://www.cve.org/CVERecord?id=CVE-2022-50074 Référence CVE CVE-2022-50076 https://www.cve.org/CVERecord?id=CVE-2022-50076 Référence CVE CVE-2022-50077 https://www.cve.org/CVERecord?id=CVE-2022-50077 Référence CVE CVE-2022-50079 https://www.cve.org/CVERecord?id=CVE-2022-50079 Référence CVE CVE-2022-50083 https://www.cve.org/CVERecord?id=CVE-2022-50083 Référence CVE CVE-2022-50084 https://www.cve.org/CVERecord?id=CVE-2022-50084 Référence CVE CVE-2022-50085 https://www.cve.org/CVERecord?id=CVE-2022-50085 Référence CVE CVE-2022-50086 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2025-AVI-0587Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-50059 Référence CVE CVE-2022-50060 https://www.cve.org/CVERecord?id=CVE-2022-50060 Référence CVE CVE-2022-50061 https://www.cve.org/CVERecord?id=CVE-2022-50061 Référence CVE CVE-2022-50062 https://www.cve.org/CVERecord?id=CVE-2022-50062 Référence CVE CVE-2022-50065 https://www.cve.org/CVERecord?id=CVE-2022-50065 Référence CVE CVE-2022-50066 https://www.cve.org/CVERecord?id=CVE-2022-50066 Référence CVE CVE-2022-50067 https://www.cve.org/CVERecord?id=CVE-2022-50067 Référence CVE CVE-2022-50068 https://www.cve.org/CVERecord?id=CVE-2022-50068 Référence CVE CVE-2022-50072 https://www.cve.org/CVERecord?id=CVE-2022-50072 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50074 https://www.cve.org/CVERecord?id=CVE-2022-50074 Référence CVE CVE-2022-50076 https://www.cve.org/CVERecord?id=CVE-2022-50076 Référence CVE CVE-2022-50077 https://www.cve.org/CVERecord?id=CVE-2022-50077 Référence CVE CVE-2022-50079 https://www.cve.org/CVERecord?id=CVE-2022-50079 Référence CVE CVE-2022-50083 https://www.cve.org/CVERecord?id=CVE-2022-50083 Référence CVE CVE-2022-50084 https://www.cve.org/CVERecord?id=CVE-2022-50084 Référence CVE CVE-2022-50085 https://www.cve.org/CVERecord?id=CVE-2022-50085 Référence CVE CVE-2022-50086 https://www.cve.org/CVERecord?id=

Official advisory
03

Patch and workaround

Operational remediation based on structured source evidence.

Status
?Patch availability is based on structured fixed-version fields and authoritative update references. If no fix is verified, check the vendor advisory before making a change.
Patch available
Affected
faa3baa2828c5e1c4374f3e60041f75c64f5fcb6 < 8f90163f9e013c8fc791aab338aab44a46044cfc; 924a9bc362a5223cd448ca08c3dde21235adc310 < 447ba770cfe798925f4923548b367fd49f0ee5f0; 924a9bc362a5223cd448ca08c3dde21235adc310 < dd29648fcf69339713f2d25f7014ae905dcdfc18; 924a9bc362a5223cd448ca08c3dde21235adc310 < 4f61f133f354853bc394ec7d6028adb9b02dd701; ea3fb2ce5fa794d02135f5c079e05cd6fc3f545d; 54ef8243c3c8e90f1ea5792e6752e021a25c8eb3; ca278267d6cd9544645731732455b6b20cb0e895; 99b1d3f74b9ef72c2f74c8e4c078e1bc0706e748
Fixed
< 5.12; 5.10.258 ≤ 5.10.*; 5.15.209 ≤ 5.15.*; 5.19.4 ≤ 5.19.*; 6.0 ≤ *
Action
Review the linked authoritative reference and apply the recorded fixed release appropriate to the affected product branch.
Workaround
No verified workaround is recorded. Limit untrusted access and use least privilege until authoritative guidance is available.
04

Evidence and provenance

Published 18 Jun 2025 · Last source change 12 Aug 2026, 18:18 UTC · CWE-476 · NULL Pointer Dereference

CVE recordCVE.org · 5.2
CVSS sourceNIST NVD
EPSS source
?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.
FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2022-55342
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceNIST NVD
NVD statusNVD modified after enrichment

Core structured fields are present and their contributing authorities are shown above.

Material change intelligence

What changed after publication

View recent updates →

No material field changes have been recorded since change tracking began. Routine source refreshes and cosmetic edits are intentionally excluded.

Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
Free version - for non-commercial use only.CVE-2022-50073 · cve.blacktree.nl