Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2022-50530

5.5 · MEDIUM
Published Oct 7, 2025 linux CWE-476 EPSS 0.13% (3th pctl)

Overview

CVE-2022-50530 is a medium-severity vulnerability affecting linux linux_kernel. It was published on October 7, 2025 and has a CVSS 3.1 base score of 5.5 (MEDIUM).

This vulnerability has a CVSS 3.1 base score of 5.5, rated MEDIUM. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

Technical Description

In the Linux kernel, the following vulnerability has been resolved:

blk-mq: fix null pointer dereference in blk_mq_clear_rq_mapping()

Our syzkaller report a null pointer dereference, root cause is

following:

__blk_mq_alloc_map_and_rqs

set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs

blk_mq_alloc_map_and_rqs

blk_mq_alloc_rqs

// failed due to oom

alloc_pages_node

// set->tags[hctx_idx] is still NULL

blk_mq_free_rqs

drv_tags = set->tags[hctx_idx];

// null pointer dereference is triggered

blk_mq_clear_rq_mapping(drv_tags, ...)

This is because commit 63064be150e4 ("blk-mq:

Add blk_mq_alloc_map_and_rqs()") merged the two steps:

1) set->tags[hctx_idx] = blk_mq_alloc_rq_map()

2) blk_mq_alloc_rqs(..., set->tags[hctx_idx])

into one step:

set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs()

Since tags is not initialized yet in this case, fix the problem by

checking if tags is NULL pointer in blk_mq_clear_rq_mapping().

Remediation

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Affected Products

Vendor Product Versions Status
linux linux_kernel >= 5.16, < 6.0.6 Affected

Frequently Asked Questions

What is CVE-2022-50530?

CVE-2022-50530 is a medium-severity vulnerability affecting linux linux_kernel. It was published on October 7, 2025 and has a CVSS 3.1 base score of 5.5 (MEDIUM).

How severe is CVE-2022-50530?

This vulnerability has a CVSS 3.1 base score of 5.5, rated MEDIUM. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

How do I fix or remediate CVE-2022-50530?

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2022-50530?

CyberStrike's AI-powered security agents can automatically detect CVE-2022-50530 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.