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-2021-47068

7.8 · HIGH
Published Feb 29, 2024 linux CWE-416 EPSS 0.23% (14th pctl)

Overview

CVE-2021-47068 is a high-severity vulnerability affecting linux linux_kernel. It was published on February 29, 2024 and has a CVSS 3.1 base score of 7.8 (HIGH).

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. 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:

net/nfc: fix use-after-free llcp_sock_bind/connect

Commits 8a4cd82d ("nfc: fix refcount leak in llcp_sock_connect()")

and c33b1cc62 ("nfc: fix refcount leak in llcp_sock_bind()")

fixed a refcount leak bug in bind/connect but introduced a

use-after-free if the same local is assigned to 2 different sockets.

This can be triggered by the following simple program:

int sock1 = socket( AF_NFC, SOCK_STREAM, NFC_SOCKPROTO_LLCP );

int sock2 = socket( AF_NFC, SOCK_STREAM, NFC_SOCKPROTO_LLCP );

memset( &addr, 0, sizeof(struct sockaddr_nfc_llcp) );

addr.sa_family = AF_NFC;

addr.nfc_protocol = NFC_PROTO_NFC_DEP;

bind( sock1, (struct sockaddr*) &addr, sizeof(struct sockaddr_nfc_llcp) )

bind( sock2, (struct sockaddr*) &addr, sizeof(struct sockaddr_nfc_llcp) )

close(sock1);

close(sock2);

Fix this by assigning NULL to llcp_sock->local after calling

nfc_llcp_local_put.

This addresses CVE-2021-2313

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 >= 4.4.267, < 4.4.269 Affected

Frequently Asked Questions

What is CVE-2021-47068?

CVE-2021-47068 is a high-severity vulnerability affecting linux linux_kernel. It was published on February 29, 2024 and has a CVSS 3.1 base score of 7.8 (HIGH).

How severe is CVE-2021-47068?

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

How do I fix or remediate CVE-2021-47068?

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-2021-47068?

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