CVE-2026-43439 (GCVE-0-2026-43439)

Vulnerability from cvelistv5 – Published: 2026-05-08 14:22 – Updated: 2026-05-23 16:07
VLAI
Title
cgroup: fix race between task migration and iteration
Summary
In the Linux kernel, the following vulnerability has been resolved: cgroup: fix race between task migration and iteration When a task is migrated out of a css_set, cgroup_migrate_add_task() first moves it from cset->tasks to cset->mg_tasks via: list_move_tail(&task->cg_list, &cset->mg_tasks); If a css_task_iter currently has it->task_pos pointing to this task, css_set_move_task() calls css_task_iter_skip() to keep the iterator valid. However, since the task has already been moved to ->mg_tasks, the iterator is advanced relative to the mg_tasks list instead of the original tasks list. As a result, remaining tasks on cset->tasks, as well as tasks queued on cset->mg_tasks, can be skipped by iteration. Fix this by calling css_set_skip_task_iters() before unlinking task->cg_list from cset->tasks. This advances all active iterators to the next task on cset->tasks, so iteration continues correctly even when a task is concurrently being migrated. This race is hard to hit in practice without instrumentation, but it can be reproduced by artificially slowing down cgroup_procs_show(). For example, on an Android device a temporary /sys/kernel/cgroup/cgroup_test knob can be added to inject a delay into cgroup_procs_show(), and then: 1) Spawn three long-running tasks (PIDs 101, 102, 103). 2) Create a test cgroup and move the tasks into it. 3) Enable a large delay via /sys/kernel/cgroup/cgroup_test. 4) In one shell, read cgroup.procs from the test cgroup. 5) Within the delay window, in another shell migrate PID 102 by writing it to a different cgroup.procs file. Under this setup, cgroup.procs can intermittently show only PID 101 while skipping PID 103. Once the migration completes, reading the file again shows all tasks as expected. Note that this change does not allow removing the existing css_set_skip_task_iters() call in css_set_move_task(). The new call in cgroup_migrate_add_task() only handles iterators that are racing with migration while the task is still on cset->tasks. Iterators may also start after the task has been moved to cset->mg_tasks. If we dropped css_set_skip_task_iters() from css_set_move_task(), such iterators could keep task_pos pointing to a migrating task, causing css_task_iter_advance() to malfunction on the destination css_set, up to and including crashes or infinite loops. The race window between migration and iteration is very small, and css_task_iter is not on a hot path. In the worst case, when an iterator is positioned on the first thread of the migrating process, cgroup_migrate_add_task() may have to skip multiple tasks via css_set_skip_task_iters(). However, this only happens when migration and iteration actually race, so the performance impact is negligible compared to the correctness fix provided here.
Severity
No CVSS data available.
Assigner
Impacted products
Vendor Product Version
Linux Linux Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 7c85debc35e6d131bd29c64f2ae78c6ede0e55c4 (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 3b95abab7369235a37b15eaec6e1a0b443bba7c7 (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 4a9654a2b46cfdaae287fb8995f536245635e467 (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 3dfd1328c05234e8d8fa61948b2ba82680594988 (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 9cca530c7cc1b3e02cb8fa7f80060dd4b38562ce (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 86ceaccfdfa16dad05addb33dc206e03589bcfd1 (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 9dc76f6fc0d28d2382583715bc4ec22f28104845 (git)
Affected: b636fd38dc40113f853337a7d2a6885ad23b8811 , < 5ee01f1a7343d6a3547b6802ca2d4cdce0edacb1 (git)
Affected: b0af004fd58ded5f898630db008c5b824c27d7db (git)
Affected: 370b9e6399da09fe10005fe455878b356de7b85f (git)
Affected: 4.14.138 , < 4.15 (semver)
Affected: 4.19.66 , < 4.20 (semver)
Create a notification for this product.
Linux Linux Affected: 5.2
Unaffected: 0 , < 5.2 (semver)
Unaffected: 5.10.253 , ≤ 5.10.* (semver)
Unaffected: 5.15.203 , ≤ 5.15.* (semver)
Unaffected: 6.1.167 , ≤ 6.1.* (semver)
Unaffected: 6.6.130 , ≤ 6.6.* (semver)
Unaffected: 6.12.78 , ≤ 6.12.* (semver)
Unaffected: 6.18.19 , ≤ 6.18.* (semver)
Unaffected: 6.19.9 , ≤ 6.19.* (semver)
Unaffected: 7.0 , ≤ * (original_commit_for_fix)
Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "kernel/cgroup/cgroup.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "7c85debc35e6d131bd29c64f2ae78c6ede0e55c4",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "3b95abab7369235a37b15eaec6e1a0b443bba7c7",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "4a9654a2b46cfdaae287fb8995f536245635e467",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "3dfd1328c05234e8d8fa61948b2ba82680594988",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "9cca530c7cc1b3e02cb8fa7f80060dd4b38562ce",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "86ceaccfdfa16dad05addb33dc206e03589bcfd1",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "9dc76f6fc0d28d2382583715bc4ec22f28104845",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "lessThan": "5ee01f1a7343d6a3547b6802ca2d4cdce0edacb1",
              "status": "affected",
              "version": "b636fd38dc40113f853337a7d2a6885ad23b8811",
              "versionType": "git"
            },
            {
              "status": "affected",
              "version": "b0af004fd58ded5f898630db008c5b824c27d7db",
              "versionType": "git"
            },
            {
              "status": "affected",
              "version": "370b9e6399da09fe10005fe455878b356de7b85f",
              "versionType": "git"
            },
            {
              "lessThan": "4.15",
              "status": "affected",
              "version": "4.14.138",
              "versionType": "semver"
            },
            {
              "lessThan": "4.20",
              "status": "affected",
              "version": "4.19.66",
              "versionType": "semver"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "kernel/cgroup/cgroup.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "5.2"
            },
            {
              "lessThan": "5.2",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.10.*",
              "status": "unaffected",
              "version": "5.10.253",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.15.*",
              "status": "unaffected",
              "version": "5.15.203",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.1.*",
              "status": "unaffected",
              "version": "6.1.167",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.6.*",
              "status": "unaffected",
              "version": "6.6.130",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.12.*",
              "status": "unaffected",
              "version": "6.12.78",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.18.*",
              "status": "unaffected",
              "version": "6.18.19",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.19.*",
              "status": "unaffected",
              "version": "6.19.9",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "7.0",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.10.253",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.15.203",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.1.167",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.6.130",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.12.78",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.18.19",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.19.9",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.0",
                  "versionStartIncluding": "5.2",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionStartIncluding": "4.14.138",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionStartIncluding": "4.19.66",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\ncgroup: fix race between task migration and iteration\n\nWhen a task is migrated out of a css_set, cgroup_migrate_add_task()\nfirst moves it from cset-\u003etasks to cset-\u003emg_tasks via:\n\n    list_move_tail(\u0026task-\u003ecg_list, \u0026cset-\u003emg_tasks);\n\nIf a css_task_iter currently has it-\u003etask_pos pointing to this task,\ncss_set_move_task() calls css_task_iter_skip() to keep the iterator\nvalid. However, since the task has already been moved to -\u003emg_tasks,\nthe iterator is advanced relative to the mg_tasks list instead of the\noriginal tasks list. As a result, remaining tasks on cset-\u003etasks, as\nwell as tasks queued on cset-\u003emg_tasks, can be skipped by iteration.\n\nFix this by calling css_set_skip_task_iters() before unlinking\ntask-\u003ecg_list from cset-\u003etasks. This advances all active iterators to\nthe next task on cset-\u003etasks, so iteration continues correctly even\nwhen a task is concurrently being migrated.\n\nThis race is hard to hit in practice without instrumentation, but it\ncan be reproduced by artificially slowing down cgroup_procs_show().\nFor example, on an Android device a temporary\n/sys/kernel/cgroup/cgroup_test knob can be added to inject a delay\ninto cgroup_procs_show(), and then:\n\n  1) Spawn three long-running tasks (PIDs 101, 102, 103).\n  2) Create a test cgroup and move the tasks into it.\n  3) Enable a large delay via /sys/kernel/cgroup/cgroup_test.\n  4) In one shell, read cgroup.procs from the test cgroup.\n  5) Within the delay window, in another shell migrate PID 102 by\n     writing it to a different cgroup.procs file.\n\nUnder this setup, cgroup.procs can intermittently show only PID 101\nwhile skipping PID 103. Once the migration completes, reading the\nfile again shows all tasks as expected.\n\nNote that this change does not allow removing the existing\ncss_set_skip_task_iters() call in css_set_move_task(). The new call\nin cgroup_migrate_add_task() only handles iterators that are racing\nwith migration while the task is still on cset-\u003etasks. Iterators may\nalso start after the task has been moved to cset-\u003emg_tasks. If we\ndropped css_set_skip_task_iters() from css_set_move_task(), such\niterators could keep task_pos pointing to a migrating task, causing\ncss_task_iter_advance() to malfunction on the destination css_set,\nup to and including crashes or infinite loops.\n\nThe race window between migration and iteration is very small, and\ncss_task_iter is not on a hot path. In the worst case, when an\niterator is positioned on the first thread of the migrating process,\ncgroup_migrate_add_task() may have to skip multiple tasks via\ncss_set_skip_task_iters(). However, this only happens when migration\nand iteration actually race, so the performance impact is negligible\ncompared to the correctness fix provided here."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-05-23T16:07:00.399Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/7c85debc35e6d131bd29c64f2ae78c6ede0e55c4"
        },
        {
          "url": "https://git.kernel.org/stable/c/3b95abab7369235a37b15eaec6e1a0b443bba7c7"
        },
        {
          "url": "https://git.kernel.org/stable/c/4a9654a2b46cfdaae287fb8995f536245635e467"
        },
        {
          "url": "https://git.kernel.org/stable/c/3dfd1328c05234e8d8fa61948b2ba82680594988"
        },
        {
          "url": "https://git.kernel.org/stable/c/9cca530c7cc1b3e02cb8fa7f80060dd4b38562ce"
        },
        {
          "url": "https://git.kernel.org/stable/c/86ceaccfdfa16dad05addb33dc206e03589bcfd1"
        },
        {
          "url": "https://git.kernel.org/stable/c/9dc76f6fc0d28d2382583715bc4ec22f28104845"
        },
        {
          "url": "https://git.kernel.org/stable/c/5ee01f1a7343d6a3547b6802ca2d4cdce0edacb1"
        }
      ],
      "title": "cgroup: fix race between task migration and iteration",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-43439",
    "datePublished": "2026-05-08T14:22:08.626Z",
    "dateReserved": "2026-05-01T14:12:56.009Z",
    "dateUpdated": "2026-05-23T16:07:00.399Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-43439",
      "date": "2026-05-28",
      "epss": "0.00012",
      "percentile": "0.01795"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2026-43439\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-05-08T15:16:56.263\",\"lastModified\":\"2026-05-21T17:26:45.540\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\ncgroup: fix race between task migration and iteration\\n\\nWhen a task is migrated out of a css_set, cgroup_migrate_add_task()\\nfirst moves it from cset-\u003etasks to cset-\u003emg_tasks via:\\n\\n    list_move_tail(\u0026task-\u003ecg_list, \u0026cset-\u003emg_tasks);\\n\\nIf a css_task_iter currently has it-\u003etask_pos pointing to this task,\\ncss_set_move_task() calls css_task_iter_skip() to keep the iterator\\nvalid. However, since the task has already been moved to -\u003emg_tasks,\\nthe iterator is advanced relative to the mg_tasks list instead of the\\noriginal tasks list. As a result, remaining tasks on cset-\u003etasks, as\\nwell as tasks queued on cset-\u003emg_tasks, can be skipped by iteration.\\n\\nFix this by calling css_set_skip_task_iters() before unlinking\\ntask-\u003ecg_list from cset-\u003etasks. This advances all active iterators to\\nthe next task on cset-\u003etasks, so iteration continues correctly even\\nwhen a task is concurrently being migrated.\\n\\nThis race is hard to hit in practice without instrumentation, but it\\ncan be reproduced by artificially slowing down cgroup_procs_show().\\nFor example, on an Android device a temporary\\n/sys/kernel/cgroup/cgroup_test knob can be added to inject a delay\\ninto cgroup_procs_show(), and then:\\n\\n  1) Spawn three long-running tasks (PIDs 101, 102, 103).\\n  2) Create a test cgroup and move the tasks into it.\\n  3) Enable a large delay via /sys/kernel/cgroup/cgroup_test.\\n  4) In one shell, read cgroup.procs from the test cgroup.\\n  5) Within the delay window, in another shell migrate PID 102 by\\n     writing it to a different cgroup.procs file.\\n\\nUnder this setup, cgroup.procs can intermittently show only PID 101\\nwhile skipping PID 103. Once the migration completes, reading the\\nfile again shows all tasks as expected.\\n\\nNote that this change does not allow removing the existing\\ncss_set_skip_task_iters() call in css_set_move_task(). The new call\\nin cgroup_migrate_add_task() only handles iterators that are racing\\nwith migration while the task is still on cset-\u003etasks. Iterators may\\nalso start after the task has been moved to cset-\u003emg_tasks. If we\\ndropped css_set_skip_task_iters() from css_set_move_task(), such\\niterators could keep task_pos pointing to a migrating task, causing\\ncss_task_iter_advance() to malfunction on the destination css_set,\\nup to and including crashes or infinite loops.\\n\\nThe race window between migration and iteration is very small, and\\ncss_task_iter is not on a hot path. In the worst case, when an\\niterator is positioned on the first thread of the migrating process,\\ncgroup_migrate_add_task() may have to skip multiple tasks via\\ncss_set_skip_task_iters(). However, this only happens when migration\\nand iteration actually race, so the performance impact is negligible\\ncompared to the correctness fix provided here.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":4.7,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"HIGH\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.0,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-362\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.14.138\",\"versionEndExcluding\":\"4.15\",\"matchCriteriaId\":\"78CA4E3F-334F-491E-ADB6-3C747B08A8A7\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.19.66\",\"versionEndExcluding\":\"4.20\",\"matchCriteriaId\":\"B7E77755-6955-4016-B730-47CF831C8F4F\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.2.1\",\"versionEndExcluding\":\"5.10.253\",\"matchCriteriaId\":\"65130A9E-8E4F-498E-8BBC-19CCD46BBEDD\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.11\",\"versionEndExcluding\":\"5.15.203\",\"matchCriteriaId\":\"20DDB3E9-AABF-4107-ADB0-5362AA067045\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.16\",\"versionEndExcluding\":\"6.1.167\",\"matchCriteriaId\":\"2EDC6BAF-B710-4E26-B6AA-D68922EE7B43\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.2\",\"versionEndExcluding\":\"6.6.130\",\"matchCriteriaId\":\"C57BB918-DF28-46B3-94F7-144176841267\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.12.78\",\"matchCriteriaId\":\"28D591F5-B196-4CC9-905C-DC80F116E7A8\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.13\",\"versionEndExcluding\":\"6.18.19\",\"matchCriteriaId\":\"D394AC60-6F28-435F-872A-CCDF384B8331\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.19\",\"versionEndExcluding\":\"6.19.9\",\"matchCriteriaId\":\"E825E7C3-FEAC-4FD3-8A81-78D7387948C9\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.2:-:*:*:*:*:*:*\",\"matchCriteriaId\":\"76B232EC-BD47-422E-A130-E167DCA55D88\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.2:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"07DDFA29-5893-4B0D-BD66-326DC5D4BE4E\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.2:rc6:*:*:*:*:*:*\",\"matchCriteriaId\":\"4C3DC01D-8A16-42EB-8B3D-D170507ABDF2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.2:rc7:*:*:*:*:*:*\",\"matchCriteriaId\":\"5D0F8E59-A7FA-4BD7-89C3-4C4DCF11D8C5\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"F253B622-8837-4245-BCE5-A7BF8FC76A16\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"4AE85AD8-4641-4E7C-A2F4-305E2CD9EE64\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/3b95abab7369235a37b15eaec6e1a0b443bba7c7\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/3dfd1328c05234e8d8fa61948b2ba82680594988\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/4a9654a2b46cfdaae287fb8995f536245635e467\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/5ee01f1a7343d6a3547b6802ca2d4cdce0edacb1\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/7c85debc35e6d131bd29c64f2ae78c6ede0e55c4\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/86ceaccfdfa16dad05addb33dc206e03589bcfd1\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/9cca530c7cc1b3e02cb8fa7f80060dd4b38562ce\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/9dc76f6fc0d28d2382583715bc4ec22f28104845\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}"
  }
}


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…