CVE-2022-50014 Vulnerability Analysis & Exploit Details

CVE-2022-50014
Vulnerability Scoring

7.0
/10
High Risk

If left unpatched, CVE-2022-50014 could lead to major system disruptions or data loss.

Attack Complexity Details

  • Attack Complexity: High
    Exploits require significant effort and special conditions.
  • Attack Vector: Local
    Vulnerability requires local system access.
  • Privileges Required: Low
    Some privileges are necessary to exploit the vulnerability.
  • Scope: Unchanged
    Exploit remains within the originally vulnerable component.
  • User Interaction: None
    No user interaction is necessary for exploitation.

CVE-2022-50014 Details

Status: Analyzed

Last updated: 🕠 14 Nov 2025, 17:59 UTC
Originally published on: 🕚 18 Jun 2025, 11:15 UTC

Time between publication and last update: 149 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

CVE-2022-50014 Vulnerability Summary

CVE-2022-50014: In the Linux kernel, the following vulnerability has been resolved: mm/gup: fix FOLL_FORCE COW security issue and remove FOLL_COW Ever since the Dirty COW (CVE-2016-5195) security issue happened, we know that FOLL_FORCE can be possibly dangerous, especially if there are races that can be exploited by user space. Right now, it would be sufficient to have some code that sets a PTE of a R/O-mapped shared page dirty, in order for it to erroneously become writable by FOLL_FORCE. The implications of setting a write-protected PTE dirty might not be immediately obvious to everyone. And in fact ever since commit 9ae0f87d009c ("mm/shmem: unconditionally set pte dirty in mfill_atomic_install_pte"), we can use UFFDIO_CONTINUE to map a shmem page R/O while marking the pte dirty. This can be used by unprivileged user space to modify tmpfs/shmem file content even if the user does not have write permissions to the file, and to bypass memfd write sealing -- Dirty COW restricted to tmpfs/shmem (CVE-2022-2590). To fix such security issues for good, the insight is that we really only need that fancy retry logic (FOLL_COW) for COW mappings that are not writable (!VM_WRITE). And in a COW mapping, we really only broke COW if we have an exclusive anonymous page mapped. If we have something else mapped, or the mapped anonymous page might be shared (!PageAnonExclusive), we have to trigger a write fault to break COW. If we don't find an exclusive anonymous page when we retry, we have to trigger COW breaking once again because something intervened. Let's move away from this mandatory-retry + dirty handling and rely on our PageAnonExclusive() flag for making a similar decision, to use the same COW logic as in other kernel parts here as well. In case we stumble over a PTE in a COW mapping that does not map an exclusive anonymous page, COW was not properly broken and we have to trigger a fake write-fault to break COW. Just like we do in can_change_pte_writable() added via commit 64fe24a3e05e ("mm/mprotect: try avoiding write faults for exclusive anonymous pages when changing protection") and commit 76aefad628aa ("mm/mprotect: fix soft-dirty check in can_change_pte_writable()"), take care of softdirty and uffd-wp manually. For example, a write() via /proc/self/mem to a uffd-wp-protected range has to fail instead of silently granting write access and bypassing the userspace fault handler. Note that FOLL_FORCE is not only used for debug access, but also triggered by applications without debug intentions, for example, when pinning pages via RDMA. This fixes CVE-2022-2590. Note that only x86_64 and aarch64 are affected, because only those support CONFIG_HAVE_ARCH_USERFAULTFD_MINOR. Fortunately, FOLL_COW is no longer required to handle FOLL_FORCE. So let's just get rid of it. Thanks to Nadav Amit for pointing out that the pte_dirty() check in FOLL_FORCE code is problematic and might be exploitable. Note 1: We don't check for the PTE being dirty because it doesn't matter for making a "was COWed" decision anymore, and whoever modifies the page has to set the page dirty either way. Note 2: Kernels before extended uffd-wp support and before PageAnonExclusive (< 5.19) can simply revert the problematic commit instead and be safe regarding UFFDIO_CONTINUE. A backport to v5.19 requires minor adjustments due to lack of vma_soft_dirty_enabled().

Assessing the Risk of CVE-2022-50014

Access Complexity Graph

The exploitability of CVE-2022-50014 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2022-50014

This vulnerability, CVE-2022-50014, requires a high level of attack complexity and low privileges, making it difficult but not impossible to exploit. Organizations should ensure robust security configurations to mitigate risks.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2022-50014, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2022-50014, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: High
    Exploiting CVE-2022-50014 can result in unauthorized access to sensitive data, severely compromising data privacy.
  • Integrity: High
    CVE-2022-50014 could allow unauthorized modifications to data, potentially affecting system reliability and trust.
  • Availability: High
    CVE-2022-50014 can disrupt system operations, potentially causing complete denial of service (DoS).

CVE-2022-50014 References

External References

CWE Common Weakness Enumeration

CWE-362

CAPEC Common Attack Pattern Enumeration and Classification

  • Leveraging Race Conditions CAPEC-26 The adversary targets a race condition occurring when multiple processes access and manipulate the same resource concurrently, and the outcome of the execution depends on the particular order in which the access takes place. The adversary can leverage a race condition by "running the race", modifying the resource and modifying the normal execution flow. For instance, a race condition can occur while accessing a file: the adversary can trick the system by replacing the original file with their version and cause the system to read the malicious file.
  • Leveraging Time-of-Check and Time-of-Use (TOCTOU) Race Conditions CAPEC-29 This attack targets a race condition occurring between the time of check (state) for a resource and the time of use of a resource. A typical example is file access. The adversary can leverage a file access race condition by "running the race", meaning that they would modify the resource between the first time the target program accesses the file and the time the target program uses the file. During that period of time, the adversary could replace or modify the file, causing the application to behave unexpectedly.

Vulnerable Configurations

  • cpe:2.3:o:linux:linux_kernel:5.16:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.14:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.14:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.15:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.15:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.16:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.16:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.17:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.17:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.18:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.18:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.19:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.19:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.20:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.20:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16.62:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16.62:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.16:rc8:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.16:rc8:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.14:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.14:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17.15:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17.15:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.17:rc8:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.17:rc8:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.14:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.14:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.15:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.15:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.16:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.16:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.17:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.17:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.18:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.18:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18.19:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18.19:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.18:rc9:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.18:rc9:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.19:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.19:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.19.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.19.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.19.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.19.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.19.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.19.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.19.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.19.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.19.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.19.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.0:rc2:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2022-50014: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2025-66026 – REDAXO is a PHP-based CMS. Prior to version 5.20.1, a reflected Cross-Site Scripting (XSS) vulnerability exists in the Mediapool view where the req...
  • CVE-2025-66025 – Caido is a web security auditing toolkit. Prior to version 0.53.0, the Markdown renderer used in Caido’s Findings page improperly handled user-supp...
  • CVE-2025-66022 – FACTION is a PenTesting Report Generation and Collaboration Framework. Prior to version 1.7.1, an extension execution path in Faction’s extension f...
  • CVE-2025-66269 – The RupsMon and USBMate services in UPSilon 2000 run with SYSTEM privileges and contain unquoted service paths. This allows a local attacker to per...
  • CVE-2025-66266 – The RupsMon.exe service executable in UPSilon 2000 has insecure permissions, allowing the 'Everyone' group Full Control. A local attacker can repla...