Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-53243 (GCVE-0-2026-53243)
Vulnerability from cvelistv5 – Published: 2026-06-25 08:39 – Updated: 2026-06-25 08:39
VLAI
EPSS
Title
rseq: Fix using an uninitialized stack variable in rseq_exit_user_update()
Summary
In the Linux kernel, the following vulnerability has been resolved:
rseq: Fix using an uninitialized stack variable in rseq_exit_user_update()
There is an bug in which an uninitialized stack variable is used in
rseq_exit_user_update() as reported by syzbot:
BUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]
The local variable:
struct rseq_ids ids = {
.cpu_id = task_cpu(t),
.mm_cid = task_mm_cid(t),
.node_id = cpu_to_node(ids.cpu_id),
};
According to the C standard, the evaluation order of expressions in an
initializer list is indeterminately sequenced. The compiler (Clang, in
this KMSAN build) evaluates `cpu_to_node(ids.cpu_id)` *before*
`ids.cpu_id` is initialized with `task_cpu(t)`.
This is fixed by moving the assignment of ids.node_id outside the
structure initialization.
Severity
No CVSS data available.
Assigner
References
Impacted products
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/rseq_entry.h"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "e12d20a63b61aaf9de4772effccf42cc9a003e58",
"status": "affected",
"version": "d242126fd21ab8f1631fdbc8589e43a9d4229f3b",
"versionType": "git"
},
{
"lessThan": "6d99479799c69c3cb588fcda19c81d8f61d64ecd",
"status": "affected",
"version": "82f572449cfe75f12ea985986da60e11f308f77d",
"versionType": "git"
}
]
},
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/rseq_entry.h"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "7.0.13",
"status": "affected",
"version": "7.0.10",
"versionType": "semver"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.0.13",
"versionStartIncluding": "7.0.10",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nrseq: Fix using an uninitialized stack variable in rseq_exit_user_update()\n\nThere is an bug in which an uninitialized stack variable is used in\nrseq_exit_user_update() as reported by syzbot:\n\nBUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]\n\nThe local variable:\n\n\tstruct rseq_ids ids = {\n\t\t.cpu_id\t = task_cpu(t),\n\t\t.mm_cid\t = task_mm_cid(t),\n\t\t.node_id = cpu_to_node(ids.cpu_id),\n\t};\n\nAccording to the C standard, the evaluation order of expressions in an\ninitializer list is indeterminately sequenced. The compiler (Clang, in\nthis KMSAN build) evaluates `cpu_to_node(ids.cpu_id)` *before*\n`ids.cpu_id` is initialized with `task_cpu(t)`.\n\nThis is fixed by moving the assignment of ids.node_id outside the\nstructure initialization."
}
],
"providerMetadata": {
"dateUpdated": "2026-06-25T08:39:37.794Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/e12d20a63b61aaf9de4772effccf42cc9a003e58"
},
{
"url": "https://git.kernel.org/stable/c/6d99479799c69c3cb588fcda19c81d8f61d64ecd"
}
],
"title": "rseq: Fix using an uninitialized stack variable in rseq_exit_user_update()",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-53243",
"datePublished": "2026-06-25T08:39:37.794Z",
"dateReserved": "2026-06-09T07:44:35.393Z",
"dateUpdated": "2026-06-25T08:39:37.794Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-53243",
"date": "2026-07-02",
"epss": "0.00162",
"percentile": "0.05793"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-53243\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-06-25T09:16:42.260\",\"lastModified\":\"2026-06-30T14:44:27.313\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nrseq: Fix using an uninitialized stack variable in rseq_exit_user_update()\\n\\nThere is an bug in which an uninitialized stack variable is used in\\nrseq_exit_user_update() as reported by syzbot:\\n\\nBUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]\\n\\nThe local variable:\\n\\n\\tstruct rseq_ids ids = {\\n\\t\\t.cpu_id\\t = task_cpu(t),\\n\\t\\t.mm_cid\\t = task_mm_cid(t),\\n\\t\\t.node_id = cpu_to_node(ids.cpu_id),\\n\\t};\\n\\nAccording to the C standard, the evaluation order of expressions in an\\ninitializer list is indeterminately sequenced. The compiler (Clang, in\\nthis KMSAN build) evaluates `cpu_to_node(ids.cpu_id)` *before*\\n`ids.cpu_id` is initialized with `task_cpu(t)`.\\n\\nThis is fixed by moving the assignment of ids.node_id outside the\\nstructure initialization.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"include/linux/rseq_entry.h\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"d242126fd21ab8f1631fdbc8589e43a9d4229f3b\",\"lessThan\":\"e12d20a63b61aaf9de4772effccf42cc9a003e58\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"82f572449cfe75f12ea985986da60e11f308f77d\",\"lessThan\":\"6d99479799c69c3cb588fcda19c81d8f61d64ecd\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"include/linux/rseq_entry.h\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"7.0.10\",\"lessThan\":\"7.0.13\",\"versionType\":\"semver\",\"status\":\"affected\"}]}]}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/6d99479799c69c3cb588fcda19c81d8f61d64ecd\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/e12d20a63b61aaf9de4772effccf42cc9a003e58\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}"
}
}
FKIE_CVE-2026-53243
Vulnerability from fkie_nvd - Published: 2026-06-25 09:16 - Updated: 2026-06-30 14:44
Severity
Summary
In the Linux kernel, the following vulnerability has been resolved:
rseq: Fix using an uninitialized stack variable in rseq_exit_user_update()
There is an bug in which an uninitialized stack variable is used in
rseq_exit_user_update() as reported by syzbot:
BUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]
The local variable:
struct rseq_ids ids = {
.cpu_id = task_cpu(t),
.mm_cid = task_mm_cid(t),
.node_id = cpu_to_node(ids.cpu_id),
};
According to the C standard, the evaluation order of expressions in an
initializer list is indeterminately sequenced. The compiler (Clang, in
this KMSAN build) evaluates `cpu_to_node(ids.cpu_id)` *before*
`ids.cpu_id` is initialized with `task_cpu(t)`.
This is fixed by moving the assignment of ids.node_id outside the
structure initialization.
References
Impacted products
| Vendor | Product | Version |
|---|
{
"affected": [
{
"affectedData": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/rseq_entry.h"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "e12d20a63b61aaf9de4772effccf42cc9a003e58",
"status": "affected",
"version": "d242126fd21ab8f1631fdbc8589e43a9d4229f3b",
"versionType": "git"
},
{
"lessThan": "6d99479799c69c3cb588fcda19c81d8f61d64ecd",
"status": "affected",
"version": "82f572449cfe75f12ea985986da60e11f308f77d",
"versionType": "git"
}
]
},
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/rseq_entry.h"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "7.0.13",
"status": "affected",
"version": "7.0.10",
"versionType": "semver"
}
]
}
],
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67"
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nrseq: Fix using an uninitialized stack variable in rseq_exit_user_update()\n\nThere is an bug in which an uninitialized stack variable is used in\nrseq_exit_user_update() as reported by syzbot:\n\nBUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]\n\nThe local variable:\n\n\tstruct rseq_ids ids = {\n\t\t.cpu_id\t = task_cpu(t),\n\t\t.mm_cid\t = task_mm_cid(t),\n\t\t.node_id = cpu_to_node(ids.cpu_id),\n\t};\n\nAccording to the C standard, the evaluation order of expressions in an\ninitializer list is indeterminately sequenced. The compiler (Clang, in\nthis KMSAN build) evaluates `cpu_to_node(ids.cpu_id)` *before*\n`ids.cpu_id` is initialized with `task_cpu(t)`.\n\nThis is fixed by moving the assignment of ids.node_id outside the\nstructure initialization."
}
],
"id": "CVE-2026-53243",
"lastModified": "2026-06-30T14:44:27.313",
"metrics": {},
"published": "2026-06-25T09:16:42.260",
"references": [
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/6d99479799c69c3cb588fcda19c81d8f61d64ecd"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/e12d20a63b61aaf9de4772effccf42cc9a003e58"
}
],
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Awaiting Analysis"
}
GHSA-QHCG-6255-C538
Vulnerability from github – Published: 2026-06-25 09:31 – Updated: 2026-06-25 09:31
VLAI
Details
In the Linux kernel, the following vulnerability has been resolved:
rseq: Fix using an uninitialized stack variable in rseq_exit_user_update()
There is an bug in which an uninitialized stack variable is used in rseq_exit_user_update() as reported by syzbot:
BUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]
The local variable:
struct rseq_ids ids = {
.cpu_id = task_cpu(t),
.mm_cid = task_mm_cid(t),
.node_id = cpu_to_node(ids.cpu_id),
};
According to the C standard, the evaluation order of expressions in an
initializer list is indeterminately sequenced. The compiler (Clang, in
this KMSAN build) evaluates cpu_to_node(ids.cpu_id) before
ids.cpu_id is initialized with task_cpu(t).
This is fixed by moving the assignment of ids.node_id outside the structure initialization.
{
"affected": [],
"aliases": [
"CVE-2026-53243"
],
"database_specific": {
"cwe_ids": [],
"github_reviewed": false,
"github_reviewed_at": null,
"nvd_published_at": "2026-06-25T09:16:42Z",
"severity": null
},
"details": "In the Linux kernel, the following vulnerability has been resolved:\n\nrseq: Fix using an uninitialized stack variable in rseq_exit_user_update()\n\nThere is an bug in which an uninitialized stack variable is used in\nrseq_exit_user_update() as reported by syzbot:\n\nBUG: KMSAN: kernel-infoleak in rseq_set_ids_get_csaddr include/linux/rseq_entry.h:502 [inline]\n\nThe local variable:\n\n\tstruct rseq_ids ids = {\n\t\t.cpu_id\t = task_cpu(t),\n\t\t.mm_cid\t = task_mm_cid(t),\n\t\t.node_id = cpu_to_node(ids.cpu_id),\n\t};\n\nAccording to the C standard, the evaluation order of expressions in an\ninitializer list is indeterminately sequenced. The compiler (Clang, in\nthis KMSAN build) evaluates `cpu_to_node(ids.cpu_id)` *before*\n`ids.cpu_id` is initialized with `task_cpu(t)`.\n\nThis is fixed by moving the assignment of ids.node_id outside the\nstructure initialization.",
"id": "GHSA-qhcg-6255-c538",
"modified": "2026-06-25T09:31:22Z",
"published": "2026-06-25T09:31:22Z",
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53243"
},
{
"type": "WEB",
"url": "https://git.kernel.org/stable/c/6d99479799c69c3cb588fcda19c81d8f61d64ecd"
},
{
"type": "WEB",
"url": "https://git.kernel.org/stable/c/e12d20a63b61aaf9de4772effccf42cc9a003e58"
}
],
"schema_version": "1.4.0",
"severity": []
}
WID-SEC-W-2026-2077
Vulnerability from csaf_certbund - Published: 2026-06-24 22:00 - Updated: 2026-07-01 22:00Summary
Linux Kernel: Mehrere Schwachstellen
Severity
Hoch
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung: Der Kernel stellt den Kern des Linux Betriebssystems dar.
Angriff: Ein entfernter Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um Sicherheitsvorkehrungen zu umgehen, einen Denial-of-Service-Zustand herbeizuführen und weitere, nicht näher spezifizierte Auswirkungen zu erzielen.
Betroffene Betriebssysteme: - Linux
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
Affected products
Known affected
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— |
References
290 references
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Der Kernel stellt den Kern des Linux Betriebssystems dar.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um Sicherheitsvorkehrungen zu umgehen, einen Denial-of-Service-Zustand herbeizuf\u00fchren und weitere, nicht n\u00e4her spezifizierte Auswirkungen zu erzielen.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-2077 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-2077.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-2077 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-2077"
},
{
"category": "external",
"summary": "Kernel CVE Announce Mailingliste",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52944",
"url": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-52944-03d6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52945",
"url": "https://lore.kernel.org/linux-cve-announce/2026062400-CVE-2026-52945-5ce8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52946",
"url": "https://lore.kernel.org/linux-cve-announce/2026062402-CVE-2026-52946-bf2a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52947",
"url": "https://lore.kernel.org/linux-cve-announce/2026062402-CVE-2026-52947-8205@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52948",
"url": "https://lore.kernel.org/linux-cve-announce/2026062403-CVE-2026-52948-e07f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52949",
"url": "https://lore.kernel.org/linux-cve-announce/2026062433-CVE-2026-52949-3210@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52950",
"url": "https://lore.kernel.org/linux-cve-announce/2026062433-CVE-2026-52950-9c1a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52951",
"url": "https://lore.kernel.org/linux-cve-announce/2026062434-CVE-2026-52951-3211@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52952",
"url": "https://lore.kernel.org/linux-cve-announce/2026062434-CVE-2026-52952-0cff@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52953",
"url": "https://lore.kernel.org/linux-cve-announce/2026062434-CVE-2026-52953-69a6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52954",
"url": "https://lore.kernel.org/linux-cve-announce/2026062435-CVE-2026-52954-05b2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52955",
"url": "https://lore.kernel.org/linux-cve-announce/2026062435-CVE-2026-52955-77f4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52956",
"url": "https://lore.kernel.org/linux-cve-announce/2026062435-CVE-2026-52956-99b7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52957",
"url": "https://lore.kernel.org/linux-cve-announce/2026062435-CVE-2026-52957-0154@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52958",
"url": "https://lore.kernel.org/linux-cve-announce/2026062436-CVE-2026-52958-a72e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52959",
"url": "https://lore.kernel.org/linux-cve-announce/2026062436-CVE-2026-52959-1796@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52960",
"url": "https://lore.kernel.org/linux-cve-announce/2026062436-CVE-2026-52960-9da2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52961",
"url": "https://lore.kernel.org/linux-cve-announce/2026062436-CVE-2026-52961-c768@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52962",
"url": "https://lore.kernel.org/linux-cve-announce/2026062437-CVE-2026-52962-69b4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52963",
"url": "https://lore.kernel.org/linux-cve-announce/2026062437-CVE-2026-52963-2264@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52964",
"url": "https://lore.kernel.org/linux-cve-announce/2026062437-CVE-2026-52964-695e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52965",
"url": "https://lore.kernel.org/linux-cve-announce/2026062438-CVE-2026-52965-b15c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52966",
"url": "https://lore.kernel.org/linux-cve-announce/2026062438-CVE-2026-52966-2a66@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52967",
"url": "https://lore.kernel.org/linux-cve-announce/2026062438-CVE-2026-52967-0fd6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52968",
"url": "https://lore.kernel.org/linux-cve-announce/2026062438-CVE-2026-52968-8803@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52969",
"url": "https://lore.kernel.org/linux-cve-announce/2026062439-CVE-2026-52969-8aa9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52970",
"url": "https://lore.kernel.org/linux-cve-announce/2026062439-CVE-2026-52970-8bc3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52971",
"url": "https://lore.kernel.org/linux-cve-announce/2026062439-CVE-2026-52971-0bf1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52972",
"url": "https://lore.kernel.org/linux-cve-announce/2026062439-CVE-2026-52972-7d96@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52973",
"url": "https://lore.kernel.org/linux-cve-announce/2026062439-CVE-2026-52973-af9c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52974",
"url": "https://lore.kernel.org/linux-cve-announce/2026062440-CVE-2026-52974-f4e7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52975",
"url": "https://lore.kernel.org/linux-cve-announce/2026062440-CVE-2026-52975-e5ff@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52976",
"url": "https://lore.kernel.org/linux-cve-announce/2026062440-CVE-2026-52976-d615@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52977",
"url": "https://lore.kernel.org/linux-cve-announce/2026062440-CVE-2026-52977-deda@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52978",
"url": "https://lore.kernel.org/linux-cve-announce/2026062441-CVE-2026-52978-fa50@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52979",
"url": "https://lore.kernel.org/linux-cve-announce/2026062441-CVE-2026-52979-3fee@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52980",
"url": "https://lore.kernel.org/linux-cve-announce/2026062441-CVE-2026-52980-f55b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52981",
"url": "https://lore.kernel.org/linux-cve-announce/2026062441-CVE-2026-52981-dce5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52982",
"url": "https://lore.kernel.org/linux-cve-announce/2026062442-CVE-2026-52982-7d9f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52983",
"url": "https://lore.kernel.org/linux-cve-announce/2026062442-CVE-2026-52983-ceac@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52984",
"url": "https://lore.kernel.org/linux-cve-announce/2026062442-CVE-2026-52984-110c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52985",
"url": "https://lore.kernel.org/linux-cve-announce/2026062443-CVE-2026-52985-60a1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52986",
"url": "https://lore.kernel.org/linux-cve-announce/2026062443-CVE-2026-52986-b7fa@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52987",
"url": "https://lore.kernel.org/linux-cve-announce/2026062443-CVE-2026-52987-29bd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52988",
"url": "https://lore.kernel.org/linux-cve-announce/2026062443-CVE-2026-52988-d573@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52989",
"url": "https://lore.kernel.org/linux-cve-announce/2026062444-CVE-2026-52989-beb8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52990",
"url": "https://lore.kernel.org/linux-cve-announce/2026062444-CVE-2026-52990-41ab@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52991",
"url": "https://lore.kernel.org/linux-cve-announce/2026062444-CVE-2026-52991-18fe@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52992",
"url": "https://lore.kernel.org/linux-cve-announce/2026062444-CVE-2026-52992-af99@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52993",
"url": "https://lore.kernel.org/linux-cve-announce/2026062445-CVE-2026-52993-34a2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52994",
"url": "https://lore.kernel.org/linux-cve-announce/2026062445-CVE-2026-52994-fe3c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52995",
"url": "https://lore.kernel.org/linux-cve-announce/2026062445-CVE-2026-52995-7a25@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52996",
"url": "https://lore.kernel.org/linux-cve-announce/2026062445-CVE-2026-52996-c02d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52997",
"url": "https://lore.kernel.org/linux-cve-announce/2026062446-CVE-2026-52997-545a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52998",
"url": "https://lore.kernel.org/linux-cve-announce/2026062446-CVE-2026-52998-38ee@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-52999",
"url": "https://lore.kernel.org/linux-cve-announce/2026062446-CVE-2026-52999-7bf3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53000",
"url": "https://lore.kernel.org/linux-cve-announce/2026062447-CVE-2026-53000-2568@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53001",
"url": "https://lore.kernel.org/linux-cve-announce/2026062447-CVE-2026-53001-160e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53002",
"url": "https://lore.kernel.org/linux-cve-announce/2026062447-CVE-2026-53002-8577@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53003",
"url": "https://lore.kernel.org/linux-cve-announce/2026062447-CVE-2026-53003-ce3c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53004",
"url": "https://lore.kernel.org/linux-cve-announce/2026062448-CVE-2026-53004-09a9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53005",
"url": "https://lore.kernel.org/linux-cve-announce/2026062448-CVE-2026-53005-b325@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53006",
"url": "https://lore.kernel.org/linux-cve-announce/2026062448-CVE-2026-53006-2b02@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53007",
"url": "https://lore.kernel.org/linux-cve-announce/2026062448-CVE-2026-53007-7981@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53008",
"url": "https://lore.kernel.org/linux-cve-announce/2026062449-CVE-2026-53008-7188@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53009",
"url": "https://lore.kernel.org/linux-cve-announce/2026062449-CVE-2026-53009-4fef@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53010",
"url": "https://lore.kernel.org/linux-cve-announce/2026062449-CVE-2026-53010-c575@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53011",
"url": "https://lore.kernel.org/linux-cve-announce/2026062449-CVE-2026-53011-6b0a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53012",
"url": "https://lore.kernel.org/linux-cve-announce/2026062450-CVE-2026-53012-8705@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53013",
"url": "https://lore.kernel.org/linux-cve-announce/2026062450-CVE-2026-53013-b62d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53014",
"url": "https://lore.kernel.org/linux-cve-announce/2026062450-CVE-2026-53014-3438@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53015",
"url": "https://lore.kernel.org/linux-cve-announce/2026062450-CVE-2026-53015-fe84@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53016",
"url": "https://lore.kernel.org/linux-cve-announce/2026062451-CVE-2026-53016-90ac@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53017",
"url": "https://lore.kernel.org/linux-cve-announce/2026062451-CVE-2026-53017-645d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53018",
"url": "https://lore.kernel.org/linux-cve-announce/2026062451-CVE-2026-53018-3797@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53019",
"url": "https://lore.kernel.org/linux-cve-announce/2026062451-CVE-2026-53019-9d74@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53020",
"url": "https://lore.kernel.org/linux-cve-announce/2026062452-CVE-2026-53020-6e28@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53021",
"url": "https://lore.kernel.org/linux-cve-announce/2026062452-CVE-2026-53021-44ab@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53022",
"url": "https://lore.kernel.org/linux-cve-announce/2026062452-CVE-2026-53022-24cc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53023",
"url": "https://lore.kernel.org/linux-cve-announce/2026062452-CVE-2026-53023-5a0a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53024",
"url": "https://lore.kernel.org/linux-cve-announce/2026062453-CVE-2026-53024-6347@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53025",
"url": "https://lore.kernel.org/linux-cve-announce/2026062453-CVE-2026-53025-ff91@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53026",
"url": "https://lore.kernel.org/linux-cve-announce/2026062453-CVE-2026-53026-0965@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53027",
"url": "https://lore.kernel.org/linux-cve-announce/2026062453-CVE-2026-53027-fbe3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53028",
"url": "https://lore.kernel.org/linux-cve-announce/2026062453-CVE-2026-53028-84c9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53029",
"url": "https://lore.kernel.org/linux-cve-announce/2026062454-CVE-2026-53029-4cfc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53030",
"url": "https://lore.kernel.org/linux-cve-announce/2026062454-CVE-2026-53030-c7d3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53031",
"url": "https://lore.kernel.org/linux-cve-announce/2026062454-CVE-2026-53031-d9fe@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53032",
"url": "https://lore.kernel.org/linux-cve-announce/2026062454-CVE-2026-53032-464e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53033",
"url": "https://lore.kernel.org/linux-cve-announce/2026062455-CVE-2026-53033-63d8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53034",
"url": "https://lore.kernel.org/linux-cve-announce/2026062455-CVE-2026-53034-c0bb@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53035",
"url": "https://lore.kernel.org/linux-cve-announce/2026062455-CVE-2026-53035-1c5a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53036",
"url": "https://lore.kernel.org/linux-cve-announce/2026062455-CVE-2026-53036-abcc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53037",
"url": "https://lore.kernel.org/linux-cve-announce/2026062456-CVE-2026-53037-3d6e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53038",
"url": "https://lore.kernel.org/linux-cve-announce/2026062456-CVE-2026-53038-345d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53039",
"url": "https://lore.kernel.org/linux-cve-announce/2026062456-CVE-2026-53039-a3ac@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53040",
"url": "https://lore.kernel.org/linux-cve-announce/2026062456-CVE-2026-53040-e3ea@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53041",
"url": "https://lore.kernel.org/linux-cve-announce/2026062457-CVE-2026-53041-bc7b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53042",
"url": "https://lore.kernel.org/linux-cve-announce/2026062457-CVE-2026-53042-9758@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53043",
"url": "https://lore.kernel.org/linux-cve-announce/2026062457-CVE-2026-53043-5980@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53044",
"url": "https://lore.kernel.org/linux-cve-announce/2026062457-CVE-2026-53044-d664@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53045",
"url": "https://lore.kernel.org/linux-cve-announce/2026062458-CVE-2026-53045-e43c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53046",
"url": "https://lore.kernel.org/linux-cve-announce/2026062458-CVE-2026-53046-39ee@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53047",
"url": "https://lore.kernel.org/linux-cve-announce/2026062458-CVE-2026-53047-7dc7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53048",
"url": "https://lore.kernel.org/linux-cve-announce/2026062459-CVE-2026-53048-9cd0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53049",
"url": "https://lore.kernel.org/linux-cve-announce/2026062459-CVE-2026-53049-7013@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53050",
"url": "https://lore.kernel.org/linux-cve-announce/2026062459-CVE-2026-53050-d4d4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53051",
"url": "https://lore.kernel.org/linux-cve-announce/2026062459-CVE-2026-53051-c446@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53052",
"url": "https://lore.kernel.org/linux-cve-announce/2026062400-CVE-2026-53052-4d8b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53053",
"url": "https://lore.kernel.org/linux-cve-announce/2026062400-CVE-2026-53053-5305@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53054",
"url": "https://lore.kernel.org/linux-cve-announce/2026062400-CVE-2026-53054-4e3b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53055",
"url": "https://lore.kernel.org/linux-cve-announce/2026062400-CVE-2026-53055-6f65@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53056",
"url": "https://lore.kernel.org/linux-cve-announce/2026062401-CVE-2026-53056-973a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53057",
"url": "https://lore.kernel.org/linux-cve-announce/2026062401-CVE-2026-53057-fa94@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53058",
"url": "https://lore.kernel.org/linux-cve-announce/2026062401-CVE-2026-53058-d89c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53059",
"url": "https://lore.kernel.org/linux-cve-announce/2026062401-CVE-2026-53059-f32e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53060",
"url": "https://lore.kernel.org/linux-cve-announce/2026062402-CVE-2026-53060-51d9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53061",
"url": "https://lore.kernel.org/linux-cve-announce/2026062402-CVE-2026-53061-6145@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53062",
"url": "https://lore.kernel.org/linux-cve-announce/2026062402-CVE-2026-53062-a727@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53063",
"url": "https://lore.kernel.org/linux-cve-announce/2026062402-CVE-2026-53063-6abb@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53064",
"url": "https://lore.kernel.org/linux-cve-announce/2026062403-CVE-2026-53064-6425@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53065",
"url": "https://lore.kernel.org/linux-cve-announce/2026062403-CVE-2026-53065-f9f3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53066",
"url": "https://lore.kernel.org/linux-cve-announce/2026062403-CVE-2026-53066-d2e5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53067",
"url": "https://lore.kernel.org/linux-cve-announce/2026062403-CVE-2026-53067-ec86@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53068",
"url": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-53068-a99a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53069",
"url": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-53069-8501@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53070",
"url": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-53070-0031@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53071",
"url": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-53071-bdae@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53072",
"url": "https://lore.kernel.org/linux-cve-announce/2026062405-CVE-2026-53072-8c50@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53073",
"url": "https://lore.kernel.org/linux-cve-announce/2026062405-CVE-2026-53073-9692@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53074",
"url": "https://lore.kernel.org/linux-cve-announce/2026062405-CVE-2026-53074-fb09@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53075",
"url": "https://lore.kernel.org/linux-cve-announce/2026062405-CVE-2026-53075-9f2a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53076",
"url": "https://lore.kernel.org/linux-cve-announce/2026062405-CVE-2026-53076-65f3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53077",
"url": "https://lore.kernel.org/linux-cve-announce/2026062406-CVE-2026-53077-a66c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53078",
"url": "https://lore.kernel.org/linux-cve-announce/2026062406-CVE-2026-53078-bc4a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53079",
"url": "https://lore.kernel.org/linux-cve-announce/2026062406-CVE-2026-53079-1491@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53080",
"url": "https://lore.kernel.org/linux-cve-announce/2026062406-CVE-2026-53080-f08e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53081",
"url": "https://lore.kernel.org/linux-cve-announce/2026062407-CVE-2026-53081-4676@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53082",
"url": "https://lore.kernel.org/linux-cve-announce/2026062407-CVE-2026-53082-a080@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53083",
"url": "https://lore.kernel.org/linux-cve-announce/2026062407-CVE-2026-53083-081f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53084",
"url": "https://lore.kernel.org/linux-cve-announce/2026062407-CVE-2026-53084-15d3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53085",
"url": "https://lore.kernel.org/linux-cve-announce/2026062408-CVE-2026-53085-79c3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53086",
"url": "https://lore.kernel.org/linux-cve-announce/2026062408-CVE-2026-53086-b7c3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53087",
"url": "https://lore.kernel.org/linux-cve-announce/2026062408-CVE-2026-53087-ce72@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53088",
"url": "https://lore.kernel.org/linux-cve-announce/2026062408-CVE-2026-53088-6e14@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53089",
"url": "https://lore.kernel.org/linux-cve-announce/2026062409-CVE-2026-53089-fdd8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53090",
"url": "https://lore.kernel.org/linux-cve-announce/2026062409-CVE-2026-53090-f634@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53091",
"url": "https://lore.kernel.org/linux-cve-announce/2026062409-CVE-2026-53091-cb58@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53092",
"url": "https://lore.kernel.org/linux-cve-announce/2026062409-CVE-2026-53092-c717@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53093",
"url": "https://lore.kernel.org/linux-cve-announce/2026062409-CVE-2026-53093-6751@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53094",
"url": "https://lore.kernel.org/linux-cve-announce/2026062410-CVE-2026-53094-7b3d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53095",
"url": "https://lore.kernel.org/linux-cve-announce/2026062410-CVE-2026-53095-5229@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53096",
"url": "https://lore.kernel.org/linux-cve-announce/2026062410-CVE-2026-53096-2247@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53097",
"url": "https://lore.kernel.org/linux-cve-announce/2026062410-CVE-2026-53097-a43d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53098",
"url": "https://lore.kernel.org/linux-cve-announce/2026062411-CVE-2026-53098-eddd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53099",
"url": "https://lore.kernel.org/linux-cve-announce/2026062411-CVE-2026-53099-5d79@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53100",
"url": "https://lore.kernel.org/linux-cve-announce/2026062411-CVE-2026-53100-835e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53101",
"url": "https://lore.kernel.org/linux-cve-announce/2026062411-CVE-2026-53101-1a11@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53102",
"url": "https://lore.kernel.org/linux-cve-announce/2026062412-CVE-2026-53102-14ff@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53103",
"url": "https://lore.kernel.org/linux-cve-announce/2026062412-CVE-2026-53103-a9f8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53104",
"url": "https://lore.kernel.org/linux-cve-announce/2026062412-CVE-2026-53104-95e8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53105",
"url": "https://lore.kernel.org/linux-cve-announce/2026062412-CVE-2026-53105-0a37@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53106",
"url": "https://lore.kernel.org/linux-cve-announce/2026062413-CVE-2026-53106-3a3d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53107",
"url": "https://lore.kernel.org/linux-cve-announce/2026062413-CVE-2026-53107-636d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53108",
"url": "https://lore.kernel.org/linux-cve-announce/2026062413-CVE-2026-53108-8aa3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53109",
"url": "https://lore.kernel.org/linux-cve-announce/2026062413-CVE-2026-53109-3860@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53110",
"url": "https://lore.kernel.org/linux-cve-announce/2026062414-CVE-2026-53110-c958@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53111",
"url": "https://lore.kernel.org/linux-cve-announce/2026062414-CVE-2026-53111-1dbc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53112",
"url": "https://lore.kernel.org/linux-cve-announce/2026062414-CVE-2026-53112-ca3f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53113",
"url": "https://lore.kernel.org/linux-cve-announce/2026062414-CVE-2026-53113-c4f2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53114",
"url": "https://lore.kernel.org/linux-cve-announce/2026062415-CVE-2026-53114-dc8b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53115",
"url": "https://lore.kernel.org/linux-cve-announce/2026062415-CVE-2026-53115-1078@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53116",
"url": "https://lore.kernel.org/linux-cve-announce/2026062415-CVE-2026-53116-2a2a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53117",
"url": "https://lore.kernel.org/linux-cve-announce/2026062415-CVE-2026-53117-04ff@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53118",
"url": "https://lore.kernel.org/linux-cve-announce/2026062415-CVE-2026-53118-a02a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53119",
"url": "https://lore.kernel.org/linux-cve-announce/2026062416-CVE-2026-53119-7d1c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53120",
"url": "https://lore.kernel.org/linux-cve-announce/2026062416-CVE-2026-53120-1d8f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53121",
"url": "https://lore.kernel.org/linux-cve-announce/2026062416-CVE-2026-53121-f105@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53122",
"url": "https://lore.kernel.org/linux-cve-announce/2026062416-CVE-2026-53122-70a1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53123",
"url": "https://lore.kernel.org/linux-cve-announce/2026062417-CVE-2026-53123-6eb1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53124",
"url": "https://lore.kernel.org/linux-cve-announce/2026062417-CVE-2026-53124-4c95@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53125",
"url": "https://lore.kernel.org/linux-cve-announce/2026062417-CVE-2026-53125-819a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53126",
"url": "https://lore.kernel.org/linux-cve-announce/2026062417-CVE-2026-53126-f288@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53127",
"url": "https://lore.kernel.org/linux-cve-announce/2026062418-CVE-2026-53127-edd3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53128",
"url": "https://lore.kernel.org/linux-cve-announce/2026062418-CVE-2026-53128-5384@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53129",
"url": "https://lore.kernel.org/linux-cve-announce/2026062418-CVE-2026-53129-781c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53130",
"url": "https://lore.kernel.org/linux-cve-announce/2026062418-CVE-2026-53130-c204@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53131",
"url": "https://lore.kernel.org/linux-cve-announce/2026062539-CVE-2026-53131-0b14@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53132",
"url": "https://lore.kernel.org/linux-cve-announce/2026062541-CVE-2026-53132-7ab2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53133",
"url": "https://lore.kernel.org/linux-cve-announce/2026062542-CVE-2026-53133-de02@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53134",
"url": "https://lore.kernel.org/linux-cve-announce/2026062542-CVE-2026-53134-3dd1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53135",
"url": "https://lore.kernel.org/linux-cve-announce/2026062542-CVE-2026-53135-2c56@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53136",
"url": "https://lore.kernel.org/linux-cve-announce/2026062543-CVE-2026-53136-b8ab@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53137",
"url": "https://lore.kernel.org/linux-cve-announce/2026062543-CVE-2026-53137-e711@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53138",
"url": "https://lore.kernel.org/linux-cve-announce/2026062543-CVE-2026-53138-59f9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53139",
"url": "https://lore.kernel.org/linux-cve-announce/2026062543-CVE-2026-53139-2b50@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53140",
"url": "https://lore.kernel.org/linux-cve-announce/2026062544-CVE-2026-53140-0525@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53141",
"url": "https://lore.kernel.org/linux-cve-announce/2026062544-CVE-2026-53141-8bcd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53142",
"url": "https://lore.kernel.org/linux-cve-announce/2026062544-CVE-2026-53142-d052@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53143",
"url": "https://lore.kernel.org/linux-cve-announce/2026062544-CVE-2026-53143-a564@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53144",
"url": "https://lore.kernel.org/linux-cve-announce/2026062545-CVE-2026-53144-bd58@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53145",
"url": "https://lore.kernel.org/linux-cve-announce/2026062545-CVE-2026-53145-8775@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53146",
"url": "https://lore.kernel.org/linux-cve-announce/2026062545-CVE-2026-53146-1e8e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53147",
"url": "https://lore.kernel.org/linux-cve-announce/2026062546-CVE-2026-53147-9761@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53148",
"url": "https://lore.kernel.org/linux-cve-announce/2026062546-CVE-2026-53148-84b7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53149",
"url": "https://lore.kernel.org/linux-cve-announce/2026062546-CVE-2026-53149-d1c8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53150",
"url": "https://lore.kernel.org/linux-cve-announce/2026062546-CVE-2026-53150-ee5c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53151",
"url": "https://lore.kernel.org/linux-cve-announce/2026062547-CVE-2026-53151-4924@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53152",
"url": "https://lore.kernel.org/linux-cve-announce/2026062547-CVE-2026-53152-6371@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53153",
"url": "https://lore.kernel.org/linux-cve-announce/2026062547-CVE-2026-53153-3b42@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53154",
"url": "https://lore.kernel.org/linux-cve-announce/2026062547-CVE-2026-53154-7b6f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53155",
"url": "https://lore.kernel.org/linux-cve-announce/2026062548-CVE-2026-53155-4165@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53156",
"url": "https://lore.kernel.org/linux-cve-announce/2026062548-CVE-2026-53156-dc6d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53157",
"url": "https://lore.kernel.org/linux-cve-announce/2026062548-CVE-2026-53157-7e36@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53158",
"url": "https://lore.kernel.org/linux-cve-announce/2026062549-CVE-2026-53158-332e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53159",
"url": "https://lore.kernel.org/linux-cve-announce/2026062549-CVE-2026-53159-d6fc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53160",
"url": "https://lore.kernel.org/linux-cve-announce/2026062549-CVE-2026-53160-1531@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53161",
"url": "https://lore.kernel.org/linux-cve-announce/2026062549-CVE-2026-53161-caac@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53162",
"url": "https://lore.kernel.org/linux-cve-announce/2026062550-CVE-2026-53162-477b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53163",
"url": "https://lore.kernel.org/linux-cve-announce/2026062550-CVE-2026-53163-0eb8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53164",
"url": "https://lore.kernel.org/linux-cve-announce/2026062550-CVE-2026-53164-88ad@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53165",
"url": "https://lore.kernel.org/linux-cve-announce/2026062550-CVE-2026-53165-7592@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53166",
"url": "https://lore.kernel.org/linux-cve-announce/2026062551-CVE-2026-53166-2861@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53167",
"url": "https://lore.kernel.org/linux-cve-announce/2026062551-CVE-2026-53167-e0b1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53168",
"url": "https://lore.kernel.org/linux-cve-announce/2026062551-CVE-2026-53168-7097@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53169",
"url": "https://lore.kernel.org/linux-cve-announce/2026062551-CVE-2026-53169-4df9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53170",
"url": "https://lore.kernel.org/linux-cve-announce/2026062552-CVE-2026-53170-29c9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53171",
"url": "https://lore.kernel.org/linux-cve-announce/2026062552-CVE-2026-53171-acfd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53172",
"url": "https://lore.kernel.org/linux-cve-announce/2026062552-CVE-2026-53172-11a3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53173",
"url": "https://lore.kernel.org/linux-cve-announce/2026062553-CVE-2026-53173-b599@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53174",
"url": "https://lore.kernel.org/linux-cve-announce/2026062553-CVE-2026-53174-1b7c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53175",
"url": "https://lore.kernel.org/linux-cve-announce/2026062553-CVE-2026-53175-6d20@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53176",
"url": "https://lore.kernel.org/linux-cve-announce/2026062553-CVE-2026-53176-c8a7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53177",
"url": "https://lore.kernel.org/linux-cve-announce/2026062554-CVE-2026-53177-f6ba@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53178",
"url": "https://lore.kernel.org/linux-cve-announce/2026062554-CVE-2026-53178-60ea@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53179",
"url": "https://lore.kernel.org/linux-cve-announce/2026062554-CVE-2026-53179-188d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53180",
"url": "https://lore.kernel.org/linux-cve-announce/2026062554-CVE-2026-53180-802a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53181",
"url": "https://lore.kernel.org/linux-cve-announce/2026062555-CVE-2026-53181-1f48@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53182",
"url": "https://lore.kernel.org/linux-cve-announce/2026062555-CVE-2026-53182-1e3e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53183",
"url": "https://lore.kernel.org/linux-cve-announce/2026062555-CVE-2026-53183-a7a3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53184",
"url": "https://lore.kernel.org/linux-cve-announce/2026062556-CVE-2026-53184-a7a3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53185",
"url": "https://lore.kernel.org/linux-cve-announce/2026062556-CVE-2026-53185-0922@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53186",
"url": "https://lore.kernel.org/linux-cve-announce/2026062556-CVE-2026-53186-5b7e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53187",
"url": "https://lore.kernel.org/linux-cve-announce/2026062556-CVE-2026-53187-786d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53188",
"url": "https://lore.kernel.org/linux-cve-announce/2026062557-CVE-2026-53188-8d3d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53189",
"url": "https://lore.kernel.org/linux-cve-announce/2026062557-CVE-2026-53189-1b4a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53190",
"url": "https://lore.kernel.org/linux-cve-announce/2026062557-CVE-2026-53190-819e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53191",
"url": "https://lore.kernel.org/linux-cve-announce/2026062557-CVE-2026-53191-4a97@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53192",
"url": "https://lore.kernel.org/linux-cve-announce/2026062558-CVE-2026-53192-5b6e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53193",
"url": "https://lore.kernel.org/linux-cve-announce/2026062558-CVE-2026-53193-8d09@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53194",
"url": "https://lore.kernel.org/linux-cve-announce/2026062558-CVE-2026-53194-8cb6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53195",
"url": "https://lore.kernel.org/linux-cve-announce/2026062559-CVE-2026-53195-5300@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53196",
"url": "https://lore.kernel.org/linux-cve-announce/2026062559-CVE-2026-53196-bcc6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53197",
"url": "https://lore.kernel.org/linux-cve-announce/2026062559-CVE-2026-53197-cc39@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53198",
"url": "https://lore.kernel.org/linux-cve-announce/2026062559-CVE-2026-53198-8bc8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53199",
"url": "https://lore.kernel.org/linux-cve-announce/2026062500-CVE-2026-53199-e12a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53200",
"url": "https://lore.kernel.org/linux-cve-announce/2026062500-CVE-2026-53200-8066@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53201",
"url": "https://lore.kernel.org/linux-cve-announce/2026062500-CVE-2026-53201-039c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53202",
"url": "https://lore.kernel.org/linux-cve-announce/2026062500-CVE-2026-53202-0343@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53203",
"url": "https://lore.kernel.org/linux-cve-announce/2026062501-CVE-2026-53203-2c14@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53204",
"url": "https://lore.kernel.org/linux-cve-announce/2026062501-CVE-2026-53204-7185@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53205",
"url": "https://lore.kernel.org/linux-cve-announce/2026062501-CVE-2026-53205-9438@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53206",
"url": "https://lore.kernel.org/linux-cve-announce/2026062501-CVE-2026-53206-c32f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53207",
"url": "https://lore.kernel.org/linux-cve-announce/2026062502-CVE-2026-53207-3c7c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53208",
"url": "https://lore.kernel.org/linux-cve-announce/2026062502-CVE-2026-53208-0404@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53209",
"url": "https://lore.kernel.org/linux-cve-announce/2026062502-CVE-2026-53209-92bf@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53210",
"url": "https://lore.kernel.org/linux-cve-announce/2026062503-CVE-2026-53210-7fd4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53211",
"url": "https://lore.kernel.org/linux-cve-announce/2026062503-CVE-2026-53211-844b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53212",
"url": "https://lore.kernel.org/linux-cve-announce/2026062503-CVE-2026-53212-ce23@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53213",
"url": "https://lore.kernel.org/linux-cve-announce/2026062503-CVE-2026-53213-e52f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53214",
"url": "https://lore.kernel.org/linux-cve-announce/2026062504-CVE-2026-53214-9ec6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53215",
"url": "https://lore.kernel.org/linux-cve-announce/2026062504-CVE-2026-53215-351e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53216",
"url": "https://lore.kernel.org/linux-cve-announce/2026062504-CVE-2026-53216-9219@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53217",
"url": "https://lore.kernel.org/linux-cve-announce/2026062504-CVE-2026-53217-ff47@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53218",
"url": "https://lore.kernel.org/linux-cve-announce/2026062505-CVE-2026-53218-d36e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53219",
"url": "https://lore.kernel.org/linux-cve-announce/2026062505-CVE-2026-53219-1af4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53220",
"url": "https://lore.kernel.org/linux-cve-announce/2026062505-CVE-2026-53220-807b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53221",
"url": "https://lore.kernel.org/linux-cve-announce/2026062506-CVE-2026-53221-a644@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53222",
"url": "https://lore.kernel.org/linux-cve-announce/2026062506-CVE-2026-53222-9c60@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53223",
"url": "https://lore.kernel.org/linux-cve-announce/2026062506-CVE-2026-53223-1c2e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53224",
"url": "https://lore.kernel.org/linux-cve-announce/2026062506-CVE-2026-53224-4b04@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53226",
"url": "https://lore.kernel.org/linux-cve-announce/2026062507-CVE-2026-53226-e2fd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53235",
"url": "https://lore.kernel.org/linux-cve-announce/2026062509-CVE-2026-53235-a7f3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53236",
"url": "https://lore.kernel.org/linux-cve-announce/2026062510-CVE-2026-53236-45bc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53237",
"url": "https://lore.kernel.org/linux-cve-announce/2026062510-CVE-2026-53237-c5c6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-53238",
"url": "https://lore.kernel.org/linux-cve-announce/2026062510-CVE-2026-53238-06fb@gregkh/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8489-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8489-1"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-07-01T22:00:00.000+00:00",
"generator": {
"date": "2026-07-02T09:05:55.286+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-2077",
"initial_release_date": "2026-06-24T22:00:00.000+00:00",
"revision_history": [
{
"date": "2026-06-24T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-06-25T22:00:00.000+00:00",
"number": "2",
"summary": "Referenzen aufgenommen"
},
{
"date": "2026-07-01T22:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Ubuntu aufgenommen"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Open Source Linux Kernel",
"product": {
"name": "Open Source Linux Kernel",
"product_id": "T053772",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:-"
}
}
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-52944",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52944"
},
{
"cve": "CVE-2026-52945",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52945"
},
{
"cve": "CVE-2026-52946",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52946"
},
{
"cve": "CVE-2026-52947",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52947"
},
{
"cve": "CVE-2026-52948",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52948"
},
{
"cve": "CVE-2026-52949",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52949"
},
{
"cve": "CVE-2026-52950",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52950"
},
{
"cve": "CVE-2026-52951",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52951"
},
{
"cve": "CVE-2026-52952",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52952"
},
{
"cve": "CVE-2026-52953",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52953"
},
{
"cve": "CVE-2026-52954",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52954"
},
{
"cve": "CVE-2026-52955",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52955"
},
{
"cve": "CVE-2026-52956",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52956"
},
{
"cve": "CVE-2026-52957",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52957"
},
{
"cve": "CVE-2026-52958",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52958"
},
{
"cve": "CVE-2026-52959",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52959"
},
{
"cve": "CVE-2026-52960",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52960"
},
{
"cve": "CVE-2026-52961",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52961"
},
{
"cve": "CVE-2026-52962",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52962"
},
{
"cve": "CVE-2026-52963",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52963"
},
{
"cve": "CVE-2026-52964",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52964"
},
{
"cve": "CVE-2026-52965",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52965"
},
{
"cve": "CVE-2026-52966",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52966"
},
{
"cve": "CVE-2026-52967",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52967"
},
{
"cve": "CVE-2026-52968",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52968"
},
{
"cve": "CVE-2026-52969",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52969"
},
{
"cve": "CVE-2026-52970",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52970"
},
{
"cve": "CVE-2026-52971",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52971"
},
{
"cve": "CVE-2026-52972",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52972"
},
{
"cve": "CVE-2026-52973",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52973"
},
{
"cve": "CVE-2026-52974",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52974"
},
{
"cve": "CVE-2026-52975",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52975"
},
{
"cve": "CVE-2026-52976",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52976"
},
{
"cve": "CVE-2026-52977",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52977"
},
{
"cve": "CVE-2026-52978",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52978"
},
{
"cve": "CVE-2026-52979",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52979"
},
{
"cve": "CVE-2026-52980",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52980"
},
{
"cve": "CVE-2026-52981",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52981"
},
{
"cve": "CVE-2026-52982",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52982"
},
{
"cve": "CVE-2026-52983",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52983"
},
{
"cve": "CVE-2026-52984",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52984"
},
{
"cve": "CVE-2026-52985",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52985"
},
{
"cve": "CVE-2026-52986",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52986"
},
{
"cve": "CVE-2026-52987",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52987"
},
{
"cve": "CVE-2026-52988",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52988"
},
{
"cve": "CVE-2026-52989",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52989"
},
{
"cve": "CVE-2026-52990",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52990"
},
{
"cve": "CVE-2026-52991",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52991"
},
{
"cve": "CVE-2026-52992",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52992"
},
{
"cve": "CVE-2026-52993",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52993"
},
{
"cve": "CVE-2026-52994",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52994"
},
{
"cve": "CVE-2026-52995",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52995"
},
{
"cve": "CVE-2026-52996",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52996"
},
{
"cve": "CVE-2026-52997",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52997"
},
{
"cve": "CVE-2026-52998",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52998"
},
{
"cve": "CVE-2026-52999",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-52999"
},
{
"cve": "CVE-2026-53000",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53000"
},
{
"cve": "CVE-2026-53001",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53001"
},
{
"cve": "CVE-2026-53002",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53002"
},
{
"cve": "CVE-2026-53003",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53003"
},
{
"cve": "CVE-2026-53004",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53004"
},
{
"cve": "CVE-2026-53005",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53005"
},
{
"cve": "CVE-2026-53006",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53006"
},
{
"cve": "CVE-2026-53007",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53007"
},
{
"cve": "CVE-2026-53008",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53008"
},
{
"cve": "CVE-2026-53009",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53009"
},
{
"cve": "CVE-2026-53010",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53010"
},
{
"cve": "CVE-2026-53011",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53011"
},
{
"cve": "CVE-2026-53012",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53012"
},
{
"cve": "CVE-2026-53013",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53013"
},
{
"cve": "CVE-2026-53014",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53014"
},
{
"cve": "CVE-2026-53015",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53015"
},
{
"cve": "CVE-2026-53016",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53016"
},
{
"cve": "CVE-2026-53017",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53017"
},
{
"cve": "CVE-2026-53018",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53018"
},
{
"cve": "CVE-2026-53019",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53019"
},
{
"cve": "CVE-2026-53020",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53020"
},
{
"cve": "CVE-2026-53021",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53021"
},
{
"cve": "CVE-2026-53022",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53022"
},
{
"cve": "CVE-2026-53023",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53023"
},
{
"cve": "CVE-2026-53024",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53024"
},
{
"cve": "CVE-2026-53025",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53025"
},
{
"cve": "CVE-2026-53026",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53026"
},
{
"cve": "CVE-2026-53027",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53027"
},
{
"cve": "CVE-2026-53028",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53028"
},
{
"cve": "CVE-2026-53029",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53029"
},
{
"cve": "CVE-2026-53030",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53030"
},
{
"cve": "CVE-2026-53031",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53031"
},
{
"cve": "CVE-2026-53032",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53032"
},
{
"cve": "CVE-2026-53033",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53033"
},
{
"cve": "CVE-2026-53034",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53034"
},
{
"cve": "CVE-2026-53035",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53035"
},
{
"cve": "CVE-2026-53036",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53036"
},
{
"cve": "CVE-2026-53037",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53037"
},
{
"cve": "CVE-2026-53038",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53038"
},
{
"cve": "CVE-2026-53039",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53039"
},
{
"cve": "CVE-2026-53040",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53040"
},
{
"cve": "CVE-2026-53041",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53041"
},
{
"cve": "CVE-2026-53042",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53042"
},
{
"cve": "CVE-2026-53043",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53043"
},
{
"cve": "CVE-2026-53044",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53044"
},
{
"cve": "CVE-2026-53045",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53045"
},
{
"cve": "CVE-2026-53046",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53046"
},
{
"cve": "CVE-2026-53047",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53047"
},
{
"cve": "CVE-2026-53048",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53048"
},
{
"cve": "CVE-2026-53049",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53049"
},
{
"cve": "CVE-2026-53050",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53050"
},
{
"cve": "CVE-2026-53051",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53051"
},
{
"cve": "CVE-2026-53052",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53052"
},
{
"cve": "CVE-2026-53053",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53053"
},
{
"cve": "CVE-2026-53054",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53054"
},
{
"cve": "CVE-2026-53055",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53055"
},
{
"cve": "CVE-2026-53056",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53056"
},
{
"cve": "CVE-2026-53057",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53057"
},
{
"cve": "CVE-2026-53058",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53058"
},
{
"cve": "CVE-2026-53059",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53059"
},
{
"cve": "CVE-2026-53060",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53060"
},
{
"cve": "CVE-2026-53061",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53061"
},
{
"cve": "CVE-2026-53062",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53062"
},
{
"cve": "CVE-2026-53063",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53063"
},
{
"cve": "CVE-2026-53064",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53064"
},
{
"cve": "CVE-2026-53065",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53065"
},
{
"cve": "CVE-2026-53066",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53066"
},
{
"cve": "CVE-2026-53067",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53067"
},
{
"cve": "CVE-2026-53068",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53068"
},
{
"cve": "CVE-2026-53069",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53069"
},
{
"cve": "CVE-2026-53070",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53070"
},
{
"cve": "CVE-2026-53071",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53071"
},
{
"cve": "CVE-2026-53072",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53072"
},
{
"cve": "CVE-2026-53073",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53073"
},
{
"cve": "CVE-2026-53074",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53074"
},
{
"cve": "CVE-2026-53075",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53075"
},
{
"cve": "CVE-2026-53076",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53076"
},
{
"cve": "CVE-2026-53077",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53077"
},
{
"cve": "CVE-2026-53078",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53078"
},
{
"cve": "CVE-2026-53079",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53079"
},
{
"cve": "CVE-2026-53080",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53080"
},
{
"cve": "CVE-2026-53081",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53081"
},
{
"cve": "CVE-2026-53082",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53082"
},
{
"cve": "CVE-2026-53083",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53083"
},
{
"cve": "CVE-2026-53084",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53084"
},
{
"cve": "CVE-2026-53085",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53085"
},
{
"cve": "CVE-2026-53086",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53086"
},
{
"cve": "CVE-2026-53087",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53087"
},
{
"cve": "CVE-2026-53088",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53088"
},
{
"cve": "CVE-2026-53089",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53089"
},
{
"cve": "CVE-2026-53090",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53090"
},
{
"cve": "CVE-2026-53091",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53091"
},
{
"cve": "CVE-2026-53092",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53092"
},
{
"cve": "CVE-2026-53093",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53093"
},
{
"cve": "CVE-2026-53094",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53094"
},
{
"cve": "CVE-2026-53095",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53095"
},
{
"cve": "CVE-2026-53096",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53096"
},
{
"cve": "CVE-2026-53097",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53097"
},
{
"cve": "CVE-2026-53098",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53098"
},
{
"cve": "CVE-2026-53099",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53099"
},
{
"cve": "CVE-2026-53100",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53100"
},
{
"cve": "CVE-2026-53101",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53101"
},
{
"cve": "CVE-2026-53102",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53102"
},
{
"cve": "CVE-2026-53103",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53103"
},
{
"cve": "CVE-2026-53104",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53104"
},
{
"cve": "CVE-2026-53105",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53105"
},
{
"cve": "CVE-2026-53106",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53106"
},
{
"cve": "CVE-2026-53107",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53107"
},
{
"cve": "CVE-2026-53108",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53108"
},
{
"cve": "CVE-2026-53109",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53109"
},
{
"cve": "CVE-2026-53110",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53110"
},
{
"cve": "CVE-2026-53111",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53111"
},
{
"cve": "CVE-2026-53112",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53112"
},
{
"cve": "CVE-2026-53113",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53113"
},
{
"cve": "CVE-2026-53114",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53114"
},
{
"cve": "CVE-2026-53115",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53115"
},
{
"cve": "CVE-2026-53116",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53116"
},
{
"cve": "CVE-2026-53117",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53117"
},
{
"cve": "CVE-2026-53118",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53118"
},
{
"cve": "CVE-2026-53119",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53119"
},
{
"cve": "CVE-2026-53120",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53120"
},
{
"cve": "CVE-2026-53121",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53121"
},
{
"cve": "CVE-2026-53122",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53122"
},
{
"cve": "CVE-2026-53123",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53123"
},
{
"cve": "CVE-2026-53124",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53124"
},
{
"cve": "CVE-2026-53125",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53125"
},
{
"cve": "CVE-2026-53126",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53126"
},
{
"cve": "CVE-2026-53127",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53127"
},
{
"cve": "CVE-2026-53128",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53128"
},
{
"cve": "CVE-2026-53129",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53129"
},
{
"cve": "CVE-2026-53130",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53130"
},
{
"cve": "CVE-2026-53131",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53131"
},
{
"cve": "CVE-2026-53132",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53132"
},
{
"cve": "CVE-2026-53133",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53133"
},
{
"cve": "CVE-2026-53134",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53134"
},
{
"cve": "CVE-2026-53135",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53135"
},
{
"cve": "CVE-2026-53136",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53136"
},
{
"cve": "CVE-2026-53137",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53137"
},
{
"cve": "CVE-2026-53138",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53138"
},
{
"cve": "CVE-2026-53139",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53139"
},
{
"cve": "CVE-2026-53140",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53140"
},
{
"cve": "CVE-2026-53141",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53141"
},
{
"cve": "CVE-2026-53142",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53142"
},
{
"cve": "CVE-2026-53143",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53143"
},
{
"cve": "CVE-2026-53144",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53144"
},
{
"cve": "CVE-2026-53145",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53145"
},
{
"cve": "CVE-2026-53146",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53146"
},
{
"cve": "CVE-2026-53147",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53147"
},
{
"cve": "CVE-2026-53148",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53148"
},
{
"cve": "CVE-2026-53149",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53149"
},
{
"cve": "CVE-2026-53150",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53150"
},
{
"cve": "CVE-2026-53151",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53151"
},
{
"cve": "CVE-2026-53152",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53152"
},
{
"cve": "CVE-2026-53153",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53153"
},
{
"cve": "CVE-2026-53154",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53154"
},
{
"cve": "CVE-2026-53155",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53155"
},
{
"cve": "CVE-2026-53156",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53156"
},
{
"cve": "CVE-2026-53157",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53157"
},
{
"cve": "CVE-2026-53158",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53158"
},
{
"cve": "CVE-2026-53159",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53159"
},
{
"cve": "CVE-2026-53160",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53160"
},
{
"cve": "CVE-2026-53161",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53161"
},
{
"cve": "CVE-2026-53162",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53162"
},
{
"cve": "CVE-2026-53163",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53163"
},
{
"cve": "CVE-2026-53164",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53164"
},
{
"cve": "CVE-2026-53165",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53165"
},
{
"cve": "CVE-2026-53166",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53166"
},
{
"cve": "CVE-2026-53167",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53167"
},
{
"cve": "CVE-2026-53168",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53168"
},
{
"cve": "CVE-2026-53169",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53169"
},
{
"cve": "CVE-2026-53170",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53170"
},
{
"cve": "CVE-2026-53171",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53171"
},
{
"cve": "CVE-2026-53172",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53172"
},
{
"cve": "CVE-2026-53173",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53173"
},
{
"cve": "CVE-2026-53174",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53174"
},
{
"cve": "CVE-2026-53175",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53175"
},
{
"cve": "CVE-2026-53176",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53176"
},
{
"cve": "CVE-2026-53177",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53177"
},
{
"cve": "CVE-2026-53178",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53178"
},
{
"cve": "CVE-2026-53179",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53179"
},
{
"cve": "CVE-2026-53180",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53180"
},
{
"cve": "CVE-2026-53181",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53181"
},
{
"cve": "CVE-2026-53182",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53182"
},
{
"cve": "CVE-2026-53183",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53183"
},
{
"cve": "CVE-2026-53184",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53184"
},
{
"cve": "CVE-2026-53185",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53185"
},
{
"cve": "CVE-2026-53186",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53186"
},
{
"cve": "CVE-2026-53187",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53187"
},
{
"cve": "CVE-2026-53188",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53188"
},
{
"cve": "CVE-2026-53189",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53189"
},
{
"cve": "CVE-2026-53190",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53190"
},
{
"cve": "CVE-2026-53191",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53191"
},
{
"cve": "CVE-2026-53192",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53192"
},
{
"cve": "CVE-2026-53193",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53193"
},
{
"cve": "CVE-2026-53194",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53194"
},
{
"cve": "CVE-2026-53195",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53195"
},
{
"cve": "CVE-2026-53196",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53196"
},
{
"cve": "CVE-2026-53197",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53197"
},
{
"cve": "CVE-2026-53198",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53198"
},
{
"cve": "CVE-2026-53199",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53199"
},
{
"cve": "CVE-2026-53200",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53200"
},
{
"cve": "CVE-2026-53201",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53201"
},
{
"cve": "CVE-2026-53202",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53202"
},
{
"cve": "CVE-2026-53203",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53203"
},
{
"cve": "CVE-2026-53204",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53204"
},
{
"cve": "CVE-2026-53205",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53205"
},
{
"cve": "CVE-2026-53206",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53206"
},
{
"cve": "CVE-2026-53207",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53207"
},
{
"cve": "CVE-2026-53208",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53208"
},
{
"cve": "CVE-2026-53209",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53209"
},
{
"cve": "CVE-2026-53210",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53210"
},
{
"cve": "CVE-2026-53211",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53211"
},
{
"cve": "CVE-2026-53212",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53212"
},
{
"cve": "CVE-2026-53213",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53213"
},
{
"cve": "CVE-2026-53214",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53214"
},
{
"cve": "CVE-2026-53215",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53215"
},
{
"cve": "CVE-2026-53216",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53216"
},
{
"cve": "CVE-2026-53217",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53217"
},
{
"cve": "CVE-2026-53218",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53218"
},
{
"cve": "CVE-2026-53219",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53219"
},
{
"cve": "CVE-2026-53220",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53220"
},
{
"cve": "CVE-2026-53221",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53221"
},
{
"cve": "CVE-2026-53222",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53222"
},
{
"cve": "CVE-2026-53223",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53223"
},
{
"cve": "CVE-2026-53224",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53224"
},
{
"cve": "CVE-2026-53225",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53225"
},
{
"cve": "CVE-2026-53226",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53226"
},
{
"cve": "CVE-2026-53227",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53227"
},
{
"cve": "CVE-2026-53228",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53228"
},
{
"cve": "CVE-2026-53229",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53229"
},
{
"cve": "CVE-2026-53230",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53230"
},
{
"cve": "CVE-2026-53232",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53232"
},
{
"cve": "CVE-2026-53233",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53233"
},
{
"cve": "CVE-2026-53234",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53234"
},
{
"cve": "CVE-2026-53235",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53235"
},
{
"cve": "CVE-2026-53236",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53236"
},
{
"cve": "CVE-2026-53237",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53237"
},
{
"cve": "CVE-2026-53238",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53238"
},
{
"cve": "CVE-2026-53239",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53239"
},
{
"cve": "CVE-2026-53240",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53240"
},
{
"cve": "CVE-2026-53241",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53241"
},
{
"cve": "CVE-2026-53242",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53242"
},
{
"cve": "CVE-2026-53243",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53243"
},
{
"cve": "CVE-2026-53244",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53244"
},
{
"cve": "CVE-2026-53245",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53245"
},
{
"cve": "CVE-2026-53246",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53246"
},
{
"cve": "CVE-2026-53247",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53247"
},
{
"cve": "CVE-2026-53248",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53248"
},
{
"cve": "CVE-2026-53249",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53249"
},
{
"cve": "CVE-2026-53250",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53250"
},
{
"cve": "CVE-2026-53251",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53251"
},
{
"cve": "CVE-2026-53252",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53252"
},
{
"cve": "CVE-2026-53253",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53253"
},
{
"cve": "CVE-2026-53254",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53254"
},
{
"cve": "CVE-2026-53255",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53255"
},
{
"cve": "CVE-2026-53256",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53256"
},
{
"cve": "CVE-2026-53257",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53257"
},
{
"cve": "CVE-2026-53258",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53258"
},
{
"cve": "CVE-2026-53259",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53259"
},
{
"cve": "CVE-2026-53260",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53260"
},
{
"cve": "CVE-2026-53262",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53262"
},
{
"cve": "CVE-2026-53263",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53263"
},
{
"cve": "CVE-2026-53264",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53264"
},
{
"cve": "CVE-2026-53265",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53265"
},
{
"cve": "CVE-2026-53266",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53266"
},
{
"cve": "CVE-2026-53267",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53267"
},
{
"cve": "CVE-2026-53268",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53268"
},
{
"cve": "CVE-2026-53270",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53270"
},
{
"cve": "CVE-2026-53271",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53271"
},
{
"cve": "CVE-2026-53272",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53272"
},
{
"cve": "CVE-2026-53273",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53273"
},
{
"cve": "CVE-2026-53274",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53274"
},
{
"cve": "CVE-2026-53275",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53275"
},
{
"cve": "CVE-2026-53276",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53276"
},
{
"cve": "CVE-2026-53277",
"product_status": {
"known_affected": [
"T000126",
"T053772"
]
},
"release_date": "2026-06-24T22:00:00.000+00:00",
"title": "CVE-2026-53277"
}
]
}
Loading…
Trend slope:
-
(linear fit over daily sighting counts)
Show additional events:
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
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…
Loading…