Executive Summary

Informations
Name CVE-2024-41066 First vendor Publication 2024-07-29
Vendor Cve Last vendor Modification 2024-11-21

Security-Database Scoring CVSS v3

Cvss vector : CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Overall CVSS Score 5.5
Base Score 5.5 Environmental Score 5.5
impact SubScore 3.6 Temporal Score 5.5
Exploitabality Sub Score 1.8
 
Attack Vector Local Attack Complexity Low
Privileges Required Low User Interaction None
Scope Unchanged Confidentiality Impact None
Integrity Impact None Availability Impact High
Calculate full CVSS 3.0 Vectors scores

Security-Database Scoring CVSS v2

Cvss vector :
Cvss Base Score N/A Attack Range N/A
Cvss Impact Score N/A Attack Complexity N/A
Cvss Expoit Score N/A Authentication N/A
Calculate full CVSS 2.0 Vectors scores

Detail

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

ibmvnic: Add tx check to prevent skb leak

Below is a summary of how the driver stores a reference to an skb during transmit:
tx_buff[free_map[consumer_index]]->skb = new_skb;
free_map[consumer_index] = IBMVNIC_INVALID_MAP;
consumer_index ++; Where variable data looks like this:
free_map == [4, IBMVNIC_INVALID_MAP, IBMVNIC_INVALID_MAP, 0, 3]
consumer_index^
tx_buff == [skb=null, skb=, skb=, skb=null, skb=null]

The driver has checks to ensure that free_map[consumer_index] pointed to a valid index but there was no check to ensure that this index pointed to an unused/null skb address. So, if, by some chance, our free_map and tx_buff lists become out of sync then we were previously risking an skb memory leak. This could then cause tcp congestion control to stop sending packets, eventually leading to ETIMEDOUT.

Therefore, add a conditional to ensure that the skb address is null. If not then warn the user (because this is still a bug that should be patched) and free the old pointer to prevent memleak/tcp problems.

Original Source

Url : http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-41066

CWE : Common Weakness Enumeration

% Id Name
100 % CWE-401 Failure to Release Memory Before Removing Last Reference ('Memory Leak')

CPE : Common Platform Enumeration

TypeDescriptionCount
Application 8
Os 3640

Sources (Detail)

https://git.kernel.org/stable/c/0983d288caf984de0202c66641577b739caad561
https://git.kernel.org/stable/c/16ad1557cae582e79bb82dddd612d9bdfaa11d4c
https://git.kernel.org/stable/c/267c61c4afed0ff9a2e83462abad3f41d8ca1f06
https://git.kernel.org/stable/c/e7b75def33eae61ddaad6cb616c517dc3882eb2a
Source Url

Alert History

If you want to see full details history, please login or register.
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Date Informations
2025-01-08 03:03:47
  • Multiple Updates
2025-01-07 03:03:20
  • Multiple Updates
2024-12-25 03:01:58
  • Multiple Updates
2024-12-12 03:04:55
  • Multiple Updates
2024-11-25 09:23:26
  • Multiple Updates
2024-11-22 21:22:40
  • Multiple Updates
2024-11-21 21:22:12
  • Multiple Updates
2024-11-20 02:58:33
  • Multiple Updates
2024-11-14 02:58:52
  • Multiple Updates
2024-11-09 02:58:52
  • Multiple Updates
2024-10-26 02:56:16
  • Multiple Updates
2024-10-25 02:58:11
  • Multiple Updates
2024-10-23 02:57:24
  • Multiple Updates
2024-10-03 02:52:43
  • Multiple Updates
2024-10-02 02:51:07
  • Multiple Updates
2024-09-14 21:30:06
  • Multiple Updates
2024-09-11 21:27:58
  • Multiple Updates
2024-09-10 21:27:46
  • Multiple Updates
2024-07-29 21:27:27
  • First insertion