CVE-2022-50173 Vulnerability Analysis & Exploit Details

CVE-2022-50173
Vulnerability Scoring

5.5
/10
Significant Risk

Security assessments indicate that CVE-2022-50173 presents a notable risk, potentially requiring prompt mitigation.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or 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-50173 Details

Status: Analyzed

Last updated: 🕝 28 Nov 2025, 14:50 UTC
Originally published on: 🕚 18 Jun 2025, 11:15 UTC

Time between publication and last update: 163 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

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

CVE-2022-50173 Vulnerability Summary

CVE-2022-50173: In the Linux kernel, the following vulnerability has been resolved: drm/msm/mdp5: Fix global state lock backoff We need to grab the lock after the early return for !hwpipe case. Otherwise, we could have hit contention yet still returned 0. Fixes an issue that the new CONFIG_DRM_DEBUG_MODESET_LOCK stuff flagged in CI: WARNING: CPU: 0 PID: 282 at drivers/gpu/drm/drm_modeset_lock.c:296 drm_modeset_lock+0xf8/0x154 Modules linked in: CPU: 0 PID: 282 Comm: kms_cursor_lega Tainted: G W 5.19.0-rc2-15930-g875cc8bc536a #1 Hardware name: Qualcomm Technologies, Inc. DB820c (DT) pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : drm_modeset_lock+0xf8/0x154 lr : drm_atomic_get_private_obj_state+0x84/0x170 sp : ffff80000cfab6a0 x29: ffff80000cfab6a0 x28: 0000000000000000 x27: ffff000083bc4d00 x26: 0000000000000038 x25: 0000000000000000 x24: ffff80000957ca58 x23: 0000000000000000 x22: ffff000081ace080 x21: 0000000000000001 x20: ffff000081acec18 x19: ffff80000cfabb80 x18: 0000000000000038 x17: 0000000000000000 x16: 0000000000000000 x15: fffffffffffea0d0 x14: 0000000000000000 x13: 284e4f5f4e524157 x12: 5f534b434f4c5f47 x11: ffff80000a386aa8 x10: 0000000000000029 x9 : ffff80000cfab610 x8 : 0000000000000029 x7 : 0000000000000014 x6 : 0000000000000000 x5 : 0000000000000001 x4 : ffff8000081ad904 x3 : 0000000000000029 x2 : ffff0000801db4c0 x1 : ffff80000cfabb80 x0 : ffff000081aceb58 Call trace: drm_modeset_lock+0xf8/0x154 drm_atomic_get_private_obj_state+0x84/0x170 mdp5_get_global_state+0x54/0x6c mdp5_pipe_release+0x2c/0xd4 mdp5_plane_atomic_check+0x2ec/0x414 drm_atomic_helper_check_planes+0xd8/0x210 drm_atomic_helper_check+0x54/0xb0 ... ---[ end trace 0000000000000000 ]--- drm_modeset_lock attempting to lock a contended lock without backoff: drm_modeset_lock+0x148/0x154 mdp5_get_global_state+0x30/0x6c mdp5_pipe_release+0x2c/0xd4 mdp5_plane_atomic_check+0x290/0x414 drm_atomic_helper_check_planes+0xd8/0x210 drm_atomic_helper_check+0x54/0xb0 drm_atomic_check_only+0x4b0/0x8f4 drm_atomic_commit+0x68/0xe0 Patchwork: https://patchwork.freedesktop.org/patch/492701/

Assessing the Risk of CVE-2022-50173

Access Complexity Graph

The exploitability of CVE-2022-50173 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-50173

CVE-2022-50173 presents an accessible attack vector with minimal effort required. Restricting access controls and implementing security updates are critical to reducing exploitation 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-50173, 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-50173, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: None
    CVE-2022-50173 has no significant impact on data confidentiality.
  • Integrity: None
    CVE-2022-50173 poses no threat to data integrity.
  • Availability: High
    CVE-2022-50173 can disrupt system operations, potentially causing complete denial of service (DoS).

CVE-2022-50173 References

External References

CWE Common Weakness Enumeration

CWE-667

CAPEC Common Attack Pattern Enumeration and Classification

  • Forced Deadlock CAPEC-25 The adversary triggers and exploits a deadlock condition in the target software to cause a denial of service. A deadlock can occur when two or more competing actions are waiting for each other to finish, and thus neither ever does. Deadlock conditions can be difficult to detect.
  • 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 Race Conditions via Symbolic Links CAPEC-27 This attack leverages the use of symbolic links (Symlinks) in order to write to sensitive files. An attacker can create a Symlink link to a target file not otherwise accessible to them. When the privileged program tries to create a temporary file with the same name as the Symlink link, it will actually write to the target file pointed to by the attackers' Symlink link. If the attacker can insert malicious content in the temporary file they will be writing to the sensitive file by using the Symlink. The race occurs because the system checks if the temporary file exists, then creates the file. The attacker would typically create the Symlink during the interval between the check and the creation of the temporary file.

Vulnerable Configurations

  • cpe:2.3:o:linux:linux_kernel:4.19.247:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.247:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.248:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.248:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.249:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.249:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.250:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.250:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.251:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.251:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.252:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.252:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.253:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.253:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.254:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.254:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:4.19.255:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:4.19.255:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.198:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.198:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.199:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.199:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.200:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.200:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.201:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.201:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.202:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.202:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.203:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.203:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.204:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.204:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.205:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.205:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.206:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.206:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.207:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.207:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.208:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.208:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.209:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.209:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.4.210:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.4.210:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.121:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.121:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.122:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.122:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.123:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.123:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.124:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.124:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.125:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.125:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.126:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.126:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.127:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.127:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.128:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.128:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.129:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.129:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.130:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.130:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.131:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.131:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.132:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.132:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.133:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.133:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.134:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.134:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.135:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.135:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.10.136:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.10.136:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.46:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.46:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.47:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.47:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.48:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.48:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.49:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.49:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.50:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.50:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.51:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.51:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.52:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.52:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.53:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.53:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.54:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.54:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.55:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.55:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.56:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.56:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.57:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.57:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.58:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.58:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.59:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.59:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.60:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.60:*:*:*:*:*:*:*
  • 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.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.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:*:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2022-50173: 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-14298 – The FiboSearch – Ajax Search for WooCommerce plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's `thegem_te_search` ...
  • CVE-2025-12492 – The Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin plugin for WordPress is vulnerab...
  • CVE-2025-13619 – The Flex Store Users plugin for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 1.1.0. This is due to the 'fs...
  • CVE-2025-12820 – The Pure WC Variation Swatches WordPress plugin through 1.1.7 does not have an authorization check when updating its settings, which could allow an...
  • CVE-2025-14735 – The "Amazon affiliate lite Plugin" plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and ...