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-2024-26688

5.5 · MEDIUM
Published Apr 3, 2024 linux CWE-476 EPSS 0.24% (15th pctl)

Overview

CVE-2024-26688 is a medium-severity vulnerability affecting linux linux_kernel. It was published on April 3, 2024 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:

fs,hugetlb: fix NULL pointer dereference in hugetlbs_fill_super

When configuring a hugetlb filesystem via the fsconfig() syscall, there is

a possible NULL dereference in hugetlbfs_fill_super() caused by assigning

NULL to ctx->hstate in hugetlbfs_parse_param() when the requested pagesize

is non valid.

E.g: Taking the following steps:

fd = fsopen("hugetlbfs", FSOPEN_CLOEXEC);

fsconfig(fd, FSCONFIG_SET_STRING, "pagesize", "1024", 0);

fsconfig(fd, FSCONFIG_CMD_CREATE, NULL, NULL, 0);

Given that the requested "pagesize" is invalid, ctxt->hstate will be replaced

with NULL, losing its previous value, and we will print an error:

...

...

case Opt_pagesize:

ps = memparse(param->string, &rest);

ctx->hstate = h;

if (!ctx->hstate) {

pr_err("Unsupported page size %lu MB\n", ps / SZ_1M);

return -EINVAL;

}

return 0;

...

...

This is a problem because later on, we will dereference ctxt->

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.1, < 5.4.271 Affected

Frequently Asked Questions

What is CVE-2024-26688?

CVE-2024-26688 is a medium-severity vulnerability affecting linux linux_kernel. It was published on April 3, 2024 and has a CVSS 3.1 base score of 5.5 (MEDIUM).

How severe is CVE-2024-26688?

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-2024-26688?

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-2024-26688?

CyberStrike's AI-powered security agents can automatically detect CVE-2024-26688 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.