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-35977

4.7 · MEDIUM
Published May 20, 2024 linux CWE-362 EPSS 0.17% (7th pctl)

Overview

CVE-2024-35977 is a medium-severity vulnerability affecting linux linux_kernel. It was published on May 20, 2024 and has a CVSS 3.1 base score of 4.7 (MEDIUM).

This vulnerability has a CVSS 3.1 base score of 4.7, 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:

platform/chrome: cros_ec_uart: properly fix race condition

The cros_ec_uart_probe() function calls devm_serdev_device_open() before

it calls serdev_device_set_client_ops(). This can trigger a NULL pointer

dereference:

BUG: kernel NULL pointer dereference, address: 0000000000000000

...

Call Trace:

<TASK>

...

? ttyport_receive_buf

A simplified version of crashing code is as follows:

static inline size_t serdev_controller_receive_buf(struct serdev_controller *ctrl,

const u8 *data,

size_t count)

{

struct serdev_device *serdev = ctrl->serdev;

if (!serdev || !serdev->ops->receive_buf) // CRASH!

return 0;

return serdev->ops->receive_buf(serdev, data, count);

}

It assumes that if SERPORT_ACTIVE is set and serdev exists, ser

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 >= 6.3, < 6.6.28 Affected

Frequently Asked Questions

What is CVE-2024-35977?

CVE-2024-35977 is a medium-severity vulnerability affecting linux linux_kernel. It was published on May 20, 2024 and has a CVSS 3.1 base score of 4.7 (MEDIUM).

How severe is CVE-2024-35977?

This vulnerability has a CVSS 3.1 base score of 4.7, 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-35977?

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-35977?

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