Lucene search

K
cvelistLinuxCVELIST:CVE-2024-35857
HistoryMay 17, 2024 - 2:47 p.m.

CVE-2024-35857 icmp: prevent possible NULL dereferences from icmp_build_probe()

2024-05-1714:47:32
Linux
www.cve.org
icmp
linux kernel
vulnerability
null dereferences
fix

6.3 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.5%

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

icmp: prevent possible NULL dereferences from icmp_build_probe()

First problem is a double call to __in_dev_get_rcu(), because
the second one could return NULL.

if (__in_dev_get_rcu(dev) && __in_dev_get_rcu(dev)->ifa_list)

Second problem is a read from dev->ip6_ptr with no NULL check:

if (!list_empty(&rcu_dereference(dev->ip6_ptr)->addr_list))

Use the correct RCU API to fix these.

v2: add missing include <net/addrconf.h>

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "net/ipv4/icmp.c"
    ],
    "versions": [
      {
        "version": "d329ea5bd884",
        "lessThan": "23b7ee4a8d55",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "d329ea5bd884",
        "lessThan": "599c9ad5e1d4",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "d329ea5bd884",
        "lessThan": "d68dc711d84f",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "d329ea5bd884",
        "lessThan": "3e2979bf080c",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "d329ea5bd884",
        "lessThan": "c58e88d49097",
        "status": "affected",
        "versionType": "git"
      }
    ]
  },
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "affected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "net/ipv4/icmp.c"
    ],
    "versions": [
      {
        "version": "5.13",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "5.13",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.158",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.1.90",
        "lessThanOrEqual": "6.1.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.6.30",
        "lessThanOrEqual": "6.6.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.8.9",
        "lessThanOrEqual": "6.8.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.9",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

6.3 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.5%

Related for CVELIST:CVE-2024-35857