GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration

CVE-2026-90015 (GCVE-0-2026-90015)

Vulnerability from cvelistv5 – Published: 2026-09-16 10:33 – Updated: 2026-09-16 10:33
VLAI
Title
xhci: fix lost bounce buffers on TDs spanning several ring segments
Summary
In the Linux kernel, the following vulnerability has been resolved: xhci: fix lost bounce buffers on TDs spanning several ring segments When a TD reaches a link TRB with data that is not aligned to the endpoint's wMaxPacketSize, xhci_align_td() stages the unalignable tail through the bounce buffer of the ring segment holding that link TRB. xhci_unmap_td_bounce_buffer() later unmaps it and, for IN transfers, copies the data back into the URB's buffer. The enqueue path records the segment that was bounced in td->bounce_seg, under the assumption that a TD never spans more than two ring segments. That assumption does not hold: a TD large enough to span three or more segments crosses several link TRBs and can be bounced at each of them. Only the last one survives in td->bounce_seg, so every earlier bounce buffer is neither copied back nor DMA unmapped. The URB still completes with actual_length equal to the requested length and no error, so the transfer looks successful while a wMaxPacketSize sized hole in the destination buffer silently keeps its previous contents. It also leaks a DMA mapping per dropped bounce. Any sufficiently large and fragmented bulk transfer can hit this. It was found with a USB mass storage device behind xHCI backing a dm-verity target with 512 byte hash blocks, where the stale data is detected rather than silently consumed. The device enumerates as SuperSpeed, so wMaxPacketSize is 1024, while dm-bufio issues one 512 byte bio per hash block. verity_prefetch_io() makes the block layer merge hundreds of them into a single request of up to 512 scatterlist entries of 512 bytes each. At 256 TRBs per ring segment such a TD spans three segments, and every segment boundary falls on an odd multiple of 512, i.e. unaligned to wMaxPacketSize. dm-bufio then caches a hash block holding stale data and dm-verity declares the metadata block corrupted: device-mapper: verity: 8:2: metadata block 10850 is corrupted A reproducer running this under qemu is available at https://github.com/baloo/xhci-verity The bounce state (bounce_buf, bounce_dma, bounce_len, bounce_offs) already lives on the ring segment, so there is nothing extra to track. Keep recording the last bounced segment in td->bounce_seg and, on completion, walk the segments from td->start_seg up to it, unmapping every segment that still has a pending bounce. Stopping at td->bounce_seg rather than td->end_seg matters: a bounce implies the TD continues past that segment's link TRB, so bounce_seg is always strictly before end_seg, and a later TD may already have started in end_seg and been bounced there. Walking that far would copy a foreign bounce buffer into this URB and unmap it twice. It also keeps the walk correct if a TD ever wraps the whole ring so that end_seg == start_seg. [mn: Add ring->num_segs check to prevent unlikely infinite for loop.]
Severity
No CVSS data available.
Impacted products
Vendor Product Version CPE status
Linux Linux Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < c8124b28f12dbdd126118e63d0ebf8093a01fb81 (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < e04d5304a248e5d2a7f4faa87541644bdd320cfb (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < a1629dfb011446d02905778f6df19f14c5f4f3b3 (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < 43239fc6dfb62c50ae1b9c0e82bac0f8cd2e285c (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < 3c9a2b5a4f1183696f02ac280ced1d34afb409b1 (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < efaab8938fb92979be6df359f7d1a43fb7e4717d (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < 7236bbd2cb7d9fc0eda896bbd34790341e2a4377 (git)
Affected: f9c589e142d04b8a19eb382162f804d17102b5ed , < ff44dfb03a293bf30e31f98772a1dd316a6071d1 (git)
guessed Create a notification for this product.
Linux Linux Affected: 4.8
Unaffected: 0 , < 4.8 (semver)
Unaffected: 5.10.270 , ≤ 5.10.* (semver)
Unaffected: 5.15.221 , ≤ 5.15.* (semver)
Unaffected: 6.1.188 , ≤ 6.1.* (semver)
Unaffected: 6.6.157 , ≤ 6.6.* (semver)
Unaffected: 6.12.110 , ≤ 6.12.* (semver)
Unaffected: 6.18.51 , ≤ 6.18.* (semver)
Unaffected: 7.2.5 , ≤ 7.2.* (semver)
Unaffected: 7.3-rc2 , ≤ * (original_commit_for_fix)
guessed Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/usb/host/xhci-ring.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "c8124b28f12dbdd126118e63d0ebf8093a01fb81",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "e04d5304a248e5d2a7f4faa87541644bdd320cfb",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "a1629dfb011446d02905778f6df19f14c5f4f3b3",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "43239fc6dfb62c50ae1b9c0e82bac0f8cd2e285c",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "3c9a2b5a4f1183696f02ac280ced1d34afb409b1",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "efaab8938fb92979be6df359f7d1a43fb7e4717d",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "7236bbd2cb7d9fc0eda896bbd34790341e2a4377",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            },
            {
              "lessThan": "ff44dfb03a293bf30e31f98772a1dd316a6071d1",
              "status": "affected",
              "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/usb/host/xhci-ring.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "4.8"
            },
            {
              "lessThan": "4.8",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.10.*",
              "status": "unaffected",
              "version": "5.10.270",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.15.*",
              "status": "unaffected",
              "version": "5.15.221",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.1.*",
              "status": "unaffected",
              "version": "6.1.188",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.6.*",
              "status": "unaffected",
              "version": "6.6.157",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.12.*",
              "status": "unaffected",
              "version": "6.12.110",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.18.*",
              "status": "unaffected",
              "version": "6.18.51",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "7.2.*",
              "status": "unaffected",
              "version": "7.2.5",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "7.3-rc2",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.10.270",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.15.221",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.1.188",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.6.157",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.12.110",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.18.51",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.2.5",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.3-rc2",
                  "versionStartIncluding": "4.8",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nxhci: fix lost bounce buffers on TDs spanning several ring segments\n\nWhen a TD reaches a link TRB with data that is not aligned to the\nendpoint\u0027s wMaxPacketSize, xhci_align_td() stages the unalignable tail\nthrough the bounce buffer of the ring segment holding that link TRB.\nxhci_unmap_td_bounce_buffer() later unmaps it and, for IN transfers,\ncopies the data back into the URB\u0027s buffer.\n\nThe enqueue path records the segment that was bounced in td-\u003ebounce_seg,\nunder the assumption that a TD never spans more than two ring segments.\nThat assumption does not hold: a TD large enough to span three or more\nsegments crosses several link TRBs and can be bounced at each of them.\nOnly the last one survives in td-\u003ebounce_seg, so every earlier bounce\nbuffer is neither copied back nor DMA unmapped.\n\nThe URB still completes with actual_length equal to the requested length\nand no error, so the transfer looks successful while a wMaxPacketSize\nsized hole in the destination buffer silently keeps its previous\ncontents. It also leaks a DMA mapping per dropped bounce.\n\nAny sufficiently large and fragmented bulk transfer can hit this. It was\nfound with a USB mass storage device behind xHCI backing a dm-verity\ntarget with 512 byte hash blocks, where the stale data is detected rather\nthan silently consumed. The device enumerates as SuperSpeed, so\nwMaxPacketSize is 1024, while dm-bufio issues one 512 byte bio per hash\nblock. verity_prefetch_io() makes the block layer merge hundreds of them\ninto a single request of up to 512 scatterlist entries of 512 bytes each.\nAt 256 TRBs per ring segment such a TD spans three segments, and every\nsegment boundary falls on an odd multiple of 512, i.e. unaligned to\nwMaxPacketSize. dm-bufio then caches a hash block holding stale data and\ndm-verity declares the metadata block corrupted:\n\n  device-mapper: verity: 8:2: metadata block 10850 is corrupted\n\nA reproducer running this under qemu is available at\nhttps://github.com/baloo/xhci-verity\n\nThe bounce state (bounce_buf, bounce_dma, bounce_len, bounce_offs)\nalready lives on the ring segment, so there is nothing extra to track.\nKeep recording the last bounced segment in td-\u003ebounce_seg and, on\ncompletion, walk the segments from td-\u003estart_seg up to it, unmapping\nevery segment that still has a pending bounce.\n\nStopping at td-\u003ebounce_seg rather than td-\u003eend_seg matters: a bounce\nimplies the TD continues past that segment\u0027s link TRB, so bounce_seg is\nalways strictly before end_seg, and a later TD may already have started\nin end_seg and been bounced there. Walking that far would copy a foreign\nbounce buffer into this URB and unmap it twice. It also keeps the walk\ncorrect if a TD ever wraps the whole ring so that end_seg == start_seg.\n\n[mn: Add ring-\u003enum_segs check to prevent unlikely infinite for loop.]"
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-09-16T10:33:21.471Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/c8124b28f12dbdd126118e63d0ebf8093a01fb81"
        },
        {
          "url": "https://git.kernel.org/stable/c/e04d5304a248e5d2a7f4faa87541644bdd320cfb"
        },
        {
          "url": "https://git.kernel.org/stable/c/a1629dfb011446d02905778f6df19f14c5f4f3b3"
        },
        {
          "url": "https://git.kernel.org/stable/c/43239fc6dfb62c50ae1b9c0e82bac0f8cd2e285c"
        },
        {
          "url": "https://git.kernel.org/stable/c/3c9a2b5a4f1183696f02ac280ced1d34afb409b1"
        },
        {
          "url": "https://git.kernel.org/stable/c/efaab8938fb92979be6df359f7d1a43fb7e4717d"
        },
        {
          "url": "https://git.kernel.org/stable/c/7236bbd2cb7d9fc0eda896bbd34790341e2a4377"
        },
        {
          "url": "https://git.kernel.org/stable/c/ff44dfb03a293bf30e31f98772a1dd316a6071d1"
        }
      ],
      "title": "xhci: fix lost bounce buffers on TDs spanning several ring segments",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-90015",
    "datePublished": "2026-09-16T10:33:21.471Z",
    "dateReserved": "2026-09-11T19:38:34.781Z",
    "dateUpdated": "2026-09-16T10:33:21.471Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-90015",
      "date": "2026-09-17",
      "epss": "0.0021",
      "percentile": "0.11479"
    },
    "microsoft_vex": {
      "current_release_date": "2026-09-17T01:06:33.000Z",
      "cve": "CVE-2026-90015",
      "id": "msrc_CVE-2026-90015",
      "initial_release_date": "2026-09-17T01:06:33.000Z",
      "product_status:known_affected": "1",
      "source": "Microsoft CSAF VEX",
      "status": "final",
      "title": "xhci: fix lost bounce buffers on TDs spanning several ring segments",
      "url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2026-90015.json",
      "version": "1"
    },
    "nvd": {
      "cve": {
        "affected": [
          {
            "affectedData": [
              {
                "defaultStatus": "unaffected",
                "product": "Linux",
                "programFiles": [
                  "drivers/usb/host/xhci-ring.c"
                ],
                "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
                "vendor": "Linux",
                "versions": [
                  {
                    "lessThan": "c8124b28f12dbdd126118e63d0ebf8093a01fb81",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "e04d5304a248e5d2a7f4faa87541644bdd320cfb",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "a1629dfb011446d02905778f6df19f14c5f4f3b3",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "43239fc6dfb62c50ae1b9c0e82bac0f8cd2e285c",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "3c9a2b5a4f1183696f02ac280ced1d34afb409b1",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "efaab8938fb92979be6df359f7d1a43fb7e4717d",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "7236bbd2cb7d9fc0eda896bbd34790341e2a4377",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  },
                  {
                    "lessThan": "ff44dfb03a293bf30e31f98772a1dd316a6071d1",
                    "status": "affected",
                    "version": "f9c589e142d04b8a19eb382162f804d17102b5ed",
                    "versionType": "git"
                  }
                ]
              },
              {
                "defaultStatus": "affected",
                "product": "Linux",
                "programFiles": [
                  "drivers/usb/host/xhci-ring.c"
                ],
                "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
                "vendor": "Linux",
                "versions": [
                  {
                    "status": "affected",
                    "version": "4.8"
                  },
                  {
                    "lessThan": "4.8",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "5.10.*",
                    "status": "unaffected",
                    "version": "5.10.270",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "5.15.*",
                    "status": "unaffected",
                    "version": "5.15.221",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "6.1.*",
                    "status": "unaffected",
                    "version": "6.1.188",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "6.6.*",
                    "status": "unaffected",
                    "version": "6.6.157",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "6.12.*",
                    "status": "unaffected",
                    "version": "6.12.110",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "6.18.*",
                    "status": "unaffected",
                    "version": "6.18.51",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "7.2.*",
                    "status": "unaffected",
                    "version": "7.2.5",
                    "versionType": "semver"
                  },
                  {
                    "lessThanOrEqual": "*",
                    "status": "unaffected",
                    "version": "7.3-rc2",
                    "versionType": "original_commit_for_fix"
                  }
                ]
              }
            ],
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67"
          }
        ],
        "cveTags": [],
        "descriptions": [
          {
            "lang": "en",
            "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nxhci: fix lost bounce buffers on TDs spanning several ring segments\n\nWhen a TD reaches a link TRB with data that is not aligned to the\nendpoint\u0027s wMaxPacketSize, xhci_align_td() stages the unalignable tail\nthrough the bounce buffer of the ring segment holding that link TRB.\nxhci_unmap_td_bounce_buffer() later unmaps it and, for IN transfers,\ncopies the data back into the URB\u0027s buffer.\n\nThe enqueue path records the segment that was bounced in td-\u003ebounce_seg,\nunder the assumption that a TD never spans more than two ring segments.\nThat assumption does not hold: a TD large enough to span three or more\nsegments crosses several link TRBs and can be bounced at each of them.\nOnly the last one survives in td-\u003ebounce_seg, so every earlier bounce\nbuffer is neither copied back nor DMA unmapped.\n\nThe URB still completes with actual_length equal to the requested length\nand no error, so the transfer looks successful while a wMaxPacketSize\nsized hole in the destination buffer silently keeps its previous\ncontents. It also leaks a DMA mapping per dropped bounce.\n\nAny sufficiently large and fragmented bulk transfer can hit this. It was\nfound with a USB mass storage device behind xHCI backing a dm-verity\ntarget with 512 byte hash blocks, where the stale data is detected rather\nthan silently consumed. The device enumerates as SuperSpeed, so\nwMaxPacketSize is 1024, while dm-bufio issues one 512 byte bio per hash\nblock. verity_prefetch_io() makes the block layer merge hundreds of them\ninto a single request of up to 512 scatterlist entries of 512 bytes each.\nAt 256 TRBs per ring segment such a TD spans three segments, and every\nsegment boundary falls on an odd multiple of 512, i.e. unaligned to\nwMaxPacketSize. dm-bufio then caches a hash block holding stale data and\ndm-verity declares the metadata block corrupted:\n\n  device-mapper: verity: 8:2: metadata block 10850 is corrupted\n\nA reproducer running this under qemu is available at\nhttps://github.com/baloo/xhci-verity\n\nThe bounce state (bounce_buf, bounce_dma, bounce_len, bounce_offs)\nalready lives on the ring segment, so there is nothing extra to track.\nKeep recording the last bounced segment in td-\u003ebounce_seg and, on\ncompletion, walk the segments from td-\u003estart_seg up to it, unmapping\nevery segment that still has a pending bounce.\n\nStopping at td-\u003ebounce_seg rather than td-\u003eend_seg matters: a bounce\nimplies the TD continues past that segment\u0027s link TRB, so bounce_seg is\nalways strictly before end_seg, and a later TD may already have started\nin end_seg and been bounced there. Walking that far would copy a foreign\nbounce buffer into this URB and unmap it twice. It also keeps the walk\ncorrect if a TD ever wraps the whole ring so that end_seg == start_seg.\n\n[mn: Add ring-\u003enum_segs check to prevent unlikely infinite for loop.]"
          }
        ],
        "id": "CVE-2026-90015",
        "lastModified": "2026-09-16T11:17:14.210",
        "metrics": {},
        "published": "2026-09-16T11:17:14.210",
        "references": [
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/3c9a2b5a4f1183696f02ac280ced1d34afb409b1"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/43239fc6dfb62c50ae1b9c0e82bac0f8cd2e285c"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/7236bbd2cb7d9fc0eda896bbd34790341e2a4377"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/a1629dfb011446d02905778f6df19f14c5f4f3b3"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/c8124b28f12dbdd126118e63d0ebf8093a01fb81"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/e04d5304a248e5d2a7f4faa87541644bdd320cfb"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/efaab8938fb92979be6df359f7d1a43fb7e4717d"
          },
          {
            "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            "url": "https://git.kernel.org/stable/c/ff44dfb03a293bf30e31f98772a1dd316a6071d1"
          }
        ],
        "sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "vulnStatus": "Received"
      }
    },
    "suse_vex": {
      "aggregate_severity": "moderate",
      "current_release_date": "2026-09-18T00:22:41Z",
      "cve": "CVE-2026-90015",
      "id": "CVE-2026-90015",
      "initial_release_date": "2026-09-17T16:31:44Z",
      "product_status:known_affected": "280",
      "product_status:known_not_affected": "67",
      "source": "SUSE CSAF VEX",
      "status": "interim",
      "title": "SUSE CVE CVE-2026-90015",
      "url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-90015.json",
      "version": "3"
    }
  }
}



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…

Related by attack behaviour

Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.


Loading…