CVE-2024-43864 (GCVE-0-2024-43864)

Vulnerability from cvelistv5 – Published: 2024-08-20 23:45 – Updated: 2026-08-05 11:36
VLAI
Title
net/mlx5e: Fix CT entry update leaks of modify header context
Summary
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix CT entry update leaks of modify header context The cited commit allocates a new modify header to replace the old one when updating CT entry. But if failed to allocate a new one, eg. exceed the max number firmware can support, modify header will be an error pointer that will trigger a panic when deallocating it. And the old modify header point is copied to old attr. When the old attr is freed, the old modify header is lost. Fix it by restoring the old attr to attr when failed to allocate a new modify header context. So when the CT entry is freed, the right modify header context will be freed. And the panic of accessing error pointer is also fixed.
SSVC
Exploitation: none Automatable: no Technical Impact: partial
CISA Coordinator (v2.0.3)
Assigner
Impacted products
Vendor Product Version
Linux Linux Affected: 94ceffb48eac7692677d8093dcde6965b70c4b35 , < daab2cc17b6b6ab158566bba037e9551fd432b59 (git)
Affected: 94ceffb48eac7692677d8093dcde6965b70c4b35 , < 89064d09c56b44c668509bf793c410484f63f5ad (git)
Affected: 94ceffb48eac7692677d8093dcde6965b70c4b35 , < 025f2b85a5e5a46df14ecf162c3c80a957a36d0b (git)
Create a notification for this product.
Linux Linux Affected: 6.3
Unaffected: 0 , < 6.3 (semver)
Unaffected: 6.6.45 , ≤ 6.6.* (semver)
Unaffected: 6.10.4 , ≤ 6.10.* (semver)
Unaffected: 6.11 , ≤ * (original_commit_for_fix)
Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "adp": [
      {
        "metrics": [
          {
            "other": {
              "content": {
                "id": "CVE-2024-43864",
                "options": [
                  {
                    "Exploitation": "none"
                  },
                  {
                    "Automatable": "no"
                  },
                  {
                    "Technical Impact": "partial"
                  }
                ],
                "role": "CISA Coordinator",
                "timestamp": "2024-09-10T16:06:42.010575Z",
                "version": "2.0.3"
              },
              "type": "ssvc"
            }
          }
        ],
        "providerMetadata": {
          "dateUpdated": "2024-09-12T17:33:19.476Z",
          "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
          "shortName": "CISA-ADP"
        },
        "title": "CISA ADP Vulnrichment"
      }
    ],
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "daab2cc17b6b6ab158566bba037e9551fd432b59",
              "status": "affected",
              "version": "94ceffb48eac7692677d8093dcde6965b70c4b35",
              "versionType": "git"
            },
            {
              "lessThan": "89064d09c56b44c668509bf793c410484f63f5ad",
              "status": "affected",
              "version": "94ceffb48eac7692677d8093dcde6965b70c4b35",
              "versionType": "git"
            },
            {
              "lessThan": "025f2b85a5e5a46df14ecf162c3c80a957a36d0b",
              "status": "affected",
              "version": "94ceffb48eac7692677d8093dcde6965b70c4b35",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "6.3"
            },
            {
              "lessThan": "6.3",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.6.*",
              "status": "unaffected",
              "version": "6.6.45",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.10.*",
              "status": "unaffected",
              "version": "6.10.4",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "6.11",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.6.45",
                  "versionStartIncluding": "6.3",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.10.4",
                  "versionStartIncluding": "6.3",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.11",
                  "versionStartIncluding": "6.3",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/mlx5e: Fix CT entry update leaks of modify header context\n\nThe cited commit allocates a new modify header to replace the old\none when updating CT entry. But if failed to allocate a new one, eg.\nexceed the max number firmware can support, modify header will be\nan error pointer that will trigger a panic when deallocating it. And\nthe old modify header point is copied to old attr. When the old\nattr is freed, the old modify header is lost.\n\nFix it by restoring the old attr to attr when failed to allocate a\nnew modify header context. So when the CT entry is freed, the right\nmodify header context will be freed. And the panic of accessing\nerror pointer is also fixed."
        }
      ],
      "metrics": [
        {
          "cvssV3_1": {
            "baseScore": 9.8,
            "baseSeverity": "CRITICAL",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "scenarios": [
            {
              "lang": "en",
              "value": "AV:N - The vulnerable path is driven entirely by received packets \u2014 conntrack state transitions on forwarded traffic trigger `flow_offload_refresh()` \u2192 `FLOW_CLS_REPLACE` \u2192 `mlx5_tc_ct_entry_replace_rule()` with no syscall or local access. The error condition itself (firmware modify-header table exhaustion) is induced by a remote peer opening many NAT\u0027ed connections through the offloading host.\nAC:L - The attacker controls both halves: flooding connections saturates the bounded firmware modify-header table, after which the allocation failure is deterministic, and completing a TCP handshake reliably drives the NEW\u2192ESTABLISHED update that enters the replace path. No memory layout or victim state outside the attacker\u0027s influence is required.\nPR:N - The attacker is an unauthenticated remote host whose traffic merely traverses the mlx5 offloading gateway or hypervisor; no account, capability, or local presence on the target is needed. The tc/nftables offload configuration is an administrative property of the vulnerable deployment, not a privilege the attacker must hold.\nUI:N - Exploitation requires only network traffic through the already-configured offload path; no administrator or user action is needed at any point.\nS:U - The wild-pointer dereference, double free, and heap corruption all occur within the host kernel\u0027s own security authority. No hypervisor, IOMMU, or sandbox boundary is crossed by the primary impact.\nC:H - The `err_rule` path leaves `zone_rule-\u003eattr-\u003emodify_hdr` pointing at a freed `struct mlx5_modify_hdr`, and the subsequent teardown reads `ns_type` and `fs_dr_action.dr_action` out of that reallocated slab object \u2014 a use-after-free that an attacker who grooms the heap via network-driven allocations can leverage into arbitrary kernel memory disclosure.\nI:H - The same object is `kfree()`d twice, giving a double-free heap-corruption primitive, and `mlx5dr_action_destroy()` is invoked on an attacker-influenceable pointer read from freed memory \u2014 exploitable for arbitrary write and control-flow hijack. The double-put of the shared label mapping ID additionally lets a mapping still in use by other connections be released and reused, corrupting CT label classification.\nA:H - As stated in the fix commit, dereferencing the `ERR_PTR` left in `attr-\u003emodify_hdr` triggers a kernel panic, and the double-free path causes slab corruption and oopses. A remote attacker can reproduce this repeatedly against an internet-facing offloading gateway."
            }
          ]
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-08-05T11:36:51.314Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/daab2cc17b6b6ab158566bba037e9551fd432b59"
        },
        {
          "url": "https://git.kernel.org/stable/c/89064d09c56b44c668509bf793c410484f63f5ad"
        },
        {
          "url": "https://git.kernel.org/stable/c/025f2b85a5e5a46df14ecf162c3c80a957a36d0b"
        }
      ],
      "title": "net/mlx5e: Fix CT entry update leaks of modify header context",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2024-43864",
    "datePublished": "2024-08-20T23:45:28.833Z",
    "dateReserved": "2024-08-17T09:11:59.279Z",
    "dateUpdated": "2026-08-05T11:36:51.314Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2024-43864",
      "date": "2026-08-10",
      "epss": "0.00466",
      "percentile": "0.38017"
    },
    "fkie_nvd": {
      "descriptions": "[{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet/mlx5e: Fix CT entry update leaks of modify header context\\n\\nThe cited commit allocates a new modify header to replace the old\\none when updating CT entry. But if failed to allocate a new one, eg.\\nexceed the max number firmware can support, modify header will be\\nan error pointer that will trigger a panic when deallocating it. And\\nthe old modify header point is copied to old attr. When the old\\nattr is freed, the old modify header is lost.\\n\\nFix it by restoring the old attr to attr when failed to allocate a\\nnew modify header context. So when the CT entry is freed, the right\\nmodify header context will be freed. And the panic of accessing\\nerror pointer is also fixed.\"}, {\"lang\": \"es\", \"value\": \"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: net/mlx5e: corrige las fugas de actualizaci\\u00f3n de la entrada CT del contexto del encabezado de modificaci\\u00f3n. El commit citada asigna un nuevo encabezado de modificaci\\u00f3n para reemplazar el anterior al actualizar la entrada CT. Pero si no se pudo asignar uno nuevo, por ejemplo. Si excede el n\\u00famero m\\u00e1ximo que el firmware puede admitir, modificar el encabezado ser\\u00e1 un indicador de error que provocar\\u00e1 p\\u00e1nico al desasignarlo. Y el punto de encabezado de modificaci\\u00f3n anterior se copia al atributo anterior. Cuando se libera el antiguo atributo, el antiguo encabezado de modificaci\\u00f3n se pierde. Solucionelo restaurando el antiguo atributo a attr cuando no se pudo asignar un nuevo contexto de encabezado de modificaci\\u00f3n. Entonces, cuando se libera la entrada CT, se liberar\\u00e1 el contexto del encabezado de modificaci\\u00f3n derecho. Y el p\\u00e1nico al acceder al puntero de error tambi\\u00e9n se soluciona.\"}]",
      "id": "CVE-2024-43864",
      "lastModified": "2024-08-21T12:30:33.697",
      "published": "2024-08-21T00:15:04.910",
      "references": "[{\"url\": \"https://git.kernel.org/stable/c/025f2b85a5e5a46df14ecf162c3c80a957a36d0b\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}, {\"url\": \"https://git.kernel.org/stable/c/89064d09c56b44c668509bf793c410484f63f5ad\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}, {\"url\": \"https://git.kernel.org/stable/c/daab2cc17b6b6ab158566bba037e9551fd432b59\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]",
      "sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
      "vulnStatus": "Awaiting Analysis"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2024-43864\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-08-21T00:15:04.910\",\"lastModified\":\"2026-08-04T11:19:56.017\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet/mlx5e: Fix CT entry update leaks of modify header context\\n\\nThe cited commit allocates a new modify header to replace the old\\none when updating CT entry. But if failed to allocate a new one, eg.\\nexceed the max number firmware can support, modify header will be\\nan error pointer that will trigger a panic when deallocating it. And\\nthe old modify header point is copied to old attr. When the old\\nattr is freed, the old modify header is lost.\\n\\nFix it by restoring the old attr to attr when failed to allocate a\\nnew modify header context. So when the CT entry is freed, the right\\nmodify header context will be freed. And the panic of accessing\\nerror pointer is also fixed.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: net/mlx5e: corrige las fugas de actualizaci\u00f3n de la entrada CT del contexto del encabezado de modificaci\u00f3n. El commit citada asigna un nuevo encabezado de modificaci\u00f3n para reemplazar el anterior al actualizar la entrada CT. Pero si no se pudo asignar uno nuevo, por ejemplo. Si excede el n\u00famero m\u00e1ximo que el firmware puede admitir, modificar el encabezado ser\u00e1 un indicador de error que provocar\u00e1 p\u00e1nico al desasignarlo. Y el punto de encabezado de modificaci\u00f3n anterior se copia al atributo anterior. Cuando se libera el antiguo atributo, el antiguo encabezado de modificaci\u00f3n se pierde. Solucionelo restaurando el antiguo atributo a attr cuando no se pudo asignar un nuevo contexto de encabezado de modificaci\u00f3n. Entonces, cuando se libera la entrada CT, se liberar\u00e1 el contexto del encabezado de modificaci\u00f3n derecho. Y el p\u00e1nico al acceder al puntero de error tambi\u00e9n se soluciona.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"94ceffb48eac7692677d8093dcde6965b70c4b35\",\"lessThan\":\"daab2cc17b6b6ab158566bba037e9551fd432b59\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"94ceffb48eac7692677d8093dcde6965b70c4b35\",\"lessThan\":\"89064d09c56b44c668509bf793c410484f63f5ad\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"94ceffb48eac7692677d8093dcde6965b70c4b35\",\"lessThan\":\"025f2b85a5e5a46df14ecf162c3c80a957a36d0b\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.3\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.3\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.6.45\",\"lessThanOrEqual\":\"6.6.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.10.4\",\"lessThanOrEqual\":\"6.10.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.11\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\",\"baseScore\":9.8,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":5.9},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2024-09-10T16:06:42.010575Z\",\"id\":\"CVE-2024-43864\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-416\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.3\",\"versionEndExcluding\":\"6.6.45\",\"matchCriteriaId\":\"C940D02A-7FF6-4D48-A826-1A84129030AF\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.10.4\",\"matchCriteriaId\":\"1F9FECDC-6CB8-41E5-B32A-E46776100D9C\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.11:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"8B3CE743-2126-47A3-8B7C-822B502CF119\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/025f2b85a5e5a46df14ecf162c3c80a957a36d0b\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/89064d09c56b44c668509bf793c410484f63f5ad\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/daab2cc17b6b6ab158566bba037e9551fd432b59\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
    "redhat_vex": {
      "aggregate_severity": "Moderate",
      "current_release_date": "2026-08-04T18:08:42+00:00",
      "cve": "CVE-2024-43864",
      "id": "CVE-2024-43864",
      "initial_release_date": "2024-08-20T00:00:00+00:00",
      "product_status:known_not_affected": "198",
      "source": "Red Hat CSAF VEX",
      "status": "final",
      "title": "kernel: net/mlx5e: Fix CT entry update leaks of modify header context",
      "url": "https://security.access.redhat.com/data/csaf/v2/vex/2024/cve-2024-43864.json",
      "version": "3"
    },
    "suse_vex": {
      "aggregate_severity": "moderate",
      "current_release_date": "2026-08-05T00:53:53Z",
      "cve": "CVE-2024-43864",
      "id": "CVE-2024-43864",
      "initial_release_date": "2024-08-22T02:58:44Z",
      "product_status:known_affected": "394",
      "product_status:known_not_affected": "280",
      "product_status:recommended": "360",
      "source": "SUSE CSAF VEX",
      "status": "interim",
      "title": "SUSE CVE CVE-2024-43864",
      "url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2024-43864.json",
      "version": "60"
    },
    "vulnrichment": {
      "containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-43864\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-09-10T16:06:42.010575Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2024-09-11T12:42:22.780Z\"}}], \"cna\": {\"title\": \"net/mlx5e: Fix CT entry update leaks of modify header context\", \"affected\": [{\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"94ceffb48eac7692677d8093dcde6965b70c4b35\", \"lessThan\": \"daab2cc17b6b6ab158566bba037e9551fd432b59\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"94ceffb48eac7692677d8093dcde6965b70c4b35\", \"lessThan\": \"89064d09c56b44c668509bf793c410484f63f5ad\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"94ceffb48eac7692677d8093dcde6965b70c4b35\", \"lessThan\": \"025f2b85a5e5a46df14ecf162c3c80a957a36d0b\", \"versionType\": \"git\"}], \"programFiles\": [\"drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c\"], \"defaultStatus\": \"unaffected\"}, {\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"6.3\"}, {\"status\": \"unaffected\", \"version\": \"0\", \"lessThan\": \"6.3\", \"versionType\": \"semver\"}, {\"status\": \"unaffected\", \"version\": \"6.6.45\", \"versionType\": \"semver\", \"lessThanOrEqual\": \"6.6.*\"}, {\"status\": \"unaffected\", \"version\": \"6.10.4\", \"versionType\": \"semver\", \"lessThanOrEqual\": \"6.10.*\"}, {\"status\": \"unaffected\", \"version\": \"6.11\", \"versionType\": \"original_commit_for_fix\", \"lessThanOrEqual\": \"*\"}], \"programFiles\": [\"drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c\"], \"defaultStatus\": \"affected\"}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/daab2cc17b6b6ab158566bba037e9551fd432b59\"}, {\"url\": \"https://git.kernel.org/stable/c/89064d09c56b44c668509bf793c410484f63f5ad\"}, {\"url\": \"https://git.kernel.org/stable/c/025f2b85a5e5a46df14ecf162c3c80a957a36d0b\"}], \"x_generator\": {\"engine\": \"bippy-1.2.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet/mlx5e: Fix CT entry update leaks of modify header context\\n\\nThe cited commit allocates a new modify header to replace the old\\none when updating CT entry. But if failed to allocate a new one, eg.\\nexceed the max number firmware can support, modify header will be\\nan error pointer that will trigger a panic when deallocating it. And\\nthe old modify header point is copied to old attr. When the old\\nattr is freed, the old modify header is lost.\\n\\nFix it by restoring the old attr to attr when failed to allocate a\\nnew modify header context. So when the CT entry is freed, the right\\nmodify header context will be freed. And the panic of accessing\\nerror pointer is also fixed.\"}], \"cpeApplicability\": [{\"nodes\": [{\"negate\": false, \"cpeMatch\": [{\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.6.45\", \"versionStartIncluding\": \"6.3\"}, {\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.10.4\", \"versionStartIncluding\": \"6.3\"}, {\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.11\", \"versionStartIncluding\": \"6.3\"}], \"operator\": \"OR\"}]}], \"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2026-05-11T20:31:18.088Z\"}}}",
      "cveMetadata": "{\"cveId\": \"CVE-2024-43864\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-05-11T20:31:18.088Z\", \"dateReserved\": \"2024-08-17T09:11:59.279Z\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"datePublished\": \"2024-08-20T23:45:28.833Z\", \"assignerShortName\": \"Linux\"}",
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }
  }
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…

Loading…