Lucene search

K
ubuntucveUbuntu.comUB:CVE-2021-47068
HistoryFeb 29, 2024 - 12:00 a.m.

CVE-2021-47068

2024-02-2900:00:00
ubuntu.com
ubuntu.com
8
linux kernel
use-after-free
net/nfc
vulnerability fix

4.6 Medium

CVSS2

Attack Vector

LOCAL

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:L/AC:L/Au:N/C:P/I:P/A:P

7.8 High

CVSS3

Attack Vector

LOCAL

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

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

7.5 High

AI Score

Confidence

High

0.0004 Low

EPSS

Percentile

13.2%

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-23134.

4.6 Medium

CVSS2

Attack Vector

LOCAL

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:L/AC:L/Au:N/C:P/I:P/A:P

7.8 High

CVSS3

Attack Vector

LOCAL

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

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

7.5 High

AI Score

Confidence

High

0.0004 Low

EPSS

Percentile

13.2%