Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2025-40214 (GCVE-0-2025-40214)
Vulnerability from cvelistv5 – Published: 2025-12-04 12:38 – Updated: 2026-06-12 08:31
VLAI
EPSS
VEX
Title
af_unix: Initialise scc_index in unix_add_edge().
Summary
In the Linux kernel, the following vulnerability has been resolved:
af_unix: Initialise scc_index in unix_add_edge().
Quang Le reported that the AF_UNIX GC could garbage-collect a
receive queue of an alive in-flight socket, with a nice repro.
The repro consists of three stages.
1)
1-a. Create a single cyclic reference with many sockets
1-b. close() all sockets
1-c. Trigger GC
2)
2-a. Pass sk-A to an embryo sk-B
2-b. Pass sk-X to sk-X
2-c. Trigger GC
3)
3-a. accept() the embryo sk-B
3-b. Pass sk-B to sk-C
3-c. close() the in-flight sk-A
3-d. Trigger GC
As of 2-c, sk-A and sk-X are linked to unix_unvisited_vertices,
and unix_walk_scc() groups them into two different SCCs:
unix_sk(sk-A)->vertex->scc_index = 2 (UNIX_VERTEX_INDEX_START)
unix_sk(sk-X)->vertex->scc_index = 3
Once GC completes, unix_graph_grouped is set to true.
Also, unix_graph_maybe_cyclic is set to true due to sk-X's
cyclic self-reference, which makes close() trigger GC.
At 3-b, unix_add_edge() allocates unix_sk(sk-B)->vertex and
links it to unix_unvisited_vertices.
unix_update_graph() is called at 3-a. and 3-b., but neither
unix_graph_grouped nor unix_graph_maybe_cyclic is changed
because both sk-B's listener and sk-C are not in-flight.
3-c decrements sk-A's file refcnt to 1.
Since unix_graph_grouped is true at 3-d, unix_walk_scc_fast()
is finally called and iterates 3 sockets sk-A, sk-B, and sk-X:
sk-A -> sk-B (-> sk-C)
sk-X -> sk-X
This is totally fine. All of them are not yet close()d and
should be grouped into different SCCs.
However, unix_vertex_dead() misjudges that sk-A and sk-B are
in the same SCC and sk-A is dead.
unix_sk(sk-A)->scc_index == unix_sk(sk-B)->scc_index <-- Wrong!
&&
sk-A's file refcnt == unix_sk(sk-A)->vertex->out_degree
^-- 1 in-flight count for sk-B
-> sk-A is dead !?
The problem is that unix_add_edge() does not initialise scc_index.
Stage 1) is used for heap spraying, making a newly allocated
vertex have vertex->scc_index == 2 (UNIX_VERTEX_INDEX_START)
set by unix_walk_scc() at 1-c.
Let's track the max SCC index from the previous unix_walk_scc()
call and assign the max + 1 to a new vertex's scc_index.
This way, we can continue to avoid Tarjan's algorithm while
preventing misjudgments.
Severity
No CVSS data available.
Assigner
References
7 references
Impacted products
3 products
| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
adfb68b39b39767d6bfb53e48c4f19c183765686 , < 20003fbb9174121b27bd1da6ebe61542ac4c327d
(git)
Affected: d23802221f6755e104606864067c71af8cdb6788 , < 4cd8d755c7d4f515dd9abf483316aca2f1b7b0f3 (git) Affected: ad081928a8b0f57f269df999a28087fce6f2b6ce , < db81ad20fd8aef7cc7d536c52ee5ea4c1f979128 (git) Affected: ad081928a8b0f57f269df999a28087fce6f2b6ce , < 1aa7e40ee850c9053e769957ce6541173891204d (git) Affected: ad081928a8b0f57f269df999a28087fce6f2b6ce , < 60e6489f8e3b086bd1130ad4450a2c112e863791 (git) Affected: 6.1.141 , < 6.1.159 (semver) Affected: 6.6.93 , < 6.6.117 (semver) |
|
| Linux | Linux |
Affected:
6.10
Unaffected: 0 , < 6.10 (semver) Unaffected: 6.1.159 , ≤ 6.1.* (semver) Unaffected: 6.6.117 , ≤ 6.6.* (semver) Unaffected: 6.12.59 , ≤ 6.12.* (semver) Unaffected: 6.17.9 , ≤ 6.17.* (semver) Unaffected: 6.18 , ≤ * (original_commit_for_fix) |
|
| Siemens | RUGGEDCOM RST2428P |
Affected:
0 , < V4.0
(custom)
|
{
"containers": {
"adp": [
{
"affected": [
{
"defaultStatus": "unknown",
"product": "RUGGEDCOM RST2428P",
"vendor": "Siemens",
"versions": [
{
"lessThan": "V4.0",
"status": "affected",
"version": "0",
"versionType": "custom"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-06-02T12:59:56.598Z",
"orgId": "0b142b55-0307-4c5a-b3c9-f314f3fb7c5e",
"shortName": "siemens-SADP"
},
"references": [
{
"url": "https://cert-portal.siemens.com/productcert/html/ssa-253495.html"
}
],
"x_adpType": "supplier"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"net/unix/garbage.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "20003fbb9174121b27bd1da6ebe61542ac4c327d",
"status": "affected",
"version": "adfb68b39b39767d6bfb53e48c4f19c183765686",
"versionType": "git"
},
{
"lessThan": "4cd8d755c7d4f515dd9abf483316aca2f1b7b0f3",
"status": "affected",
"version": "d23802221f6755e104606864067c71af8cdb6788",
"versionType": "git"
},
{
"lessThan": "db81ad20fd8aef7cc7d536c52ee5ea4c1f979128",
"status": "affected",
"version": "ad081928a8b0f57f269df999a28087fce6f2b6ce",
"versionType": "git"
},
{
"lessThan": "1aa7e40ee850c9053e769957ce6541173891204d",
"status": "affected",
"version": "ad081928a8b0f57f269df999a28087fce6f2b6ce",
"versionType": "git"
},
{
"lessThan": "60e6489f8e3b086bd1130ad4450a2c112e863791",
"status": "affected",
"version": "ad081928a8b0f57f269df999a28087fce6f2b6ce",
"versionType": "git"
},
{
"lessThan": "6.1.159",
"status": "affected",
"version": "6.1.141",
"versionType": "semver"
},
{
"lessThan": "6.6.117",
"status": "affected",
"version": "6.6.93",
"versionType": "semver"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"net/unix/garbage.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.10"
},
{
"lessThan": "6.10",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.1.*",
"status": "unaffected",
"version": "6.1.159",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.117",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.59",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.17.*",
"status": "unaffected",
"version": "6.17.9",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.18",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.1.159",
"versionStartIncluding": "6.1.141",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.6.117",
"versionStartIncluding": "6.6.93",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.59",
"versionStartIncluding": "6.10",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.17.9",
"versionStartIncluding": "6.10",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18",
"versionStartIncluding": "6.10",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\naf_unix: Initialise scc_index in unix_add_edge().\n\nQuang Le reported that the AF_UNIX GC could garbage-collect a\nreceive queue of an alive in-flight socket, with a nice repro.\n\nThe repro consists of three stages.\n\n 1)\n 1-a. Create a single cyclic reference with many sockets\n 1-b. close() all sockets\n 1-c. Trigger GC\n\n 2)\n 2-a. Pass sk-A to an embryo sk-B\n 2-b. Pass sk-X to sk-X\n 2-c. Trigger GC\n\n 3)\n 3-a. accept() the embryo sk-B\n 3-b. Pass sk-B to sk-C\n 3-c. close() the in-flight sk-A\n 3-d. Trigger GC\n\nAs of 2-c, sk-A and sk-X are linked to unix_unvisited_vertices,\nand unix_walk_scc() groups them into two different SCCs:\n\n unix_sk(sk-A)-\u003evertex-\u003escc_index = 2 (UNIX_VERTEX_INDEX_START)\n unix_sk(sk-X)-\u003evertex-\u003escc_index = 3\n\nOnce GC completes, unix_graph_grouped is set to true.\nAlso, unix_graph_maybe_cyclic is set to true due to sk-X\u0027s\ncyclic self-reference, which makes close() trigger GC.\n\nAt 3-b, unix_add_edge() allocates unix_sk(sk-B)-\u003evertex and\nlinks it to unix_unvisited_vertices.\n\nunix_update_graph() is called at 3-a. and 3-b., but neither\nunix_graph_grouped nor unix_graph_maybe_cyclic is changed\nbecause both sk-B\u0027s listener and sk-C are not in-flight.\n\n3-c decrements sk-A\u0027s file refcnt to 1.\n\nSince unix_graph_grouped is true at 3-d, unix_walk_scc_fast()\nis finally called and iterates 3 sockets sk-A, sk-B, and sk-X:\n\n sk-A -\u003e sk-B (-\u003e sk-C)\n sk-X -\u003e sk-X\n\nThis is totally fine. All of them are not yet close()d and\nshould be grouped into different SCCs.\n\nHowever, unix_vertex_dead() misjudges that sk-A and sk-B are\nin the same SCC and sk-A is dead.\n\n unix_sk(sk-A)-\u003escc_index == unix_sk(sk-B)-\u003escc_index \u003c-- Wrong!\n \u0026\u0026\n sk-A\u0027s file refcnt == unix_sk(sk-A)-\u003evertex-\u003eout_degree\n ^-- 1 in-flight count for sk-B\n -\u003e sk-A is dead !?\n\nThe problem is that unix_add_edge() does not initialise scc_index.\n\nStage 1) is used for heap spraying, making a newly allocated\nvertex have vertex-\u003escc_index == 2 (UNIX_VERTEX_INDEX_START)\nset by unix_walk_scc() at 1-c.\n\nLet\u0027s track the max SCC index from the previous unix_walk_scc()\ncall and assign the max + 1 to a new vertex\u0027s scc_index.\n\nThis way, we can continue to avoid Tarjan\u0027s algorithm while\npreventing misjudgments."
}
],
"providerMetadata": {
"dateUpdated": "2026-06-12T08:31:42.408Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/20003fbb9174121b27bd1da6ebe61542ac4c327d"
},
{
"url": "https://git.kernel.org/stable/c/4cd8d755c7d4f515dd9abf483316aca2f1b7b0f3"
},
{
"url": "https://git.kernel.org/stable/c/db81ad20fd8aef7cc7d536c52ee5ea4c1f979128"
},
{
"url": "https://git.kernel.org/stable/c/1aa7e40ee850c9053e769957ce6541173891204d"
},
{
"url": "https://git.kernel.org/stable/c/60e6489f8e3b086bd1130ad4450a2c112e863791"
},
{
"url": "https://mohandacherir.github.io/Qdiv7/posts/unix_new_gc/"
}
],
"title": "af_unix: Initialise scc_index in unix_add_edge().",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2025-40214",
"datePublished": "2025-12-04T12:38:31.601Z",
"dateReserved": "2025-04-16T07:20:57.179Z",
"dateUpdated": "2026-06-12T08:31:42.408Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2025-40214",
"date": "2026-07-12",
"epss": "0.00171",
"percentile": "0.06669"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2025-40214\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-12-04T13:15:48.157\",\"lastModified\":\"2026-06-17T09:21:28.187\",\"vulnStatus\":\"Deferred\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\naf_unix: Initialise scc_index in unix_add_edge().\\n\\nQuang Le reported that the AF_UNIX GC could garbage-collect a\\nreceive queue of an alive in-flight socket, with a nice repro.\\n\\nThe repro consists of three stages.\\n\\n 1)\\n 1-a. Create a single cyclic reference with many sockets\\n 1-b. close() all sockets\\n 1-c. Trigger GC\\n\\n 2)\\n 2-a. Pass sk-A to an embryo sk-B\\n 2-b. Pass sk-X to sk-X\\n 2-c. Trigger GC\\n\\n 3)\\n 3-a. accept() the embryo sk-B\\n 3-b. Pass sk-B to sk-C\\n 3-c. close() the in-flight sk-A\\n 3-d. Trigger GC\\n\\nAs of 2-c, sk-A and sk-X are linked to unix_unvisited_vertices,\\nand unix_walk_scc() groups them into two different SCCs:\\n\\n unix_sk(sk-A)-\u003evertex-\u003escc_index = 2 (UNIX_VERTEX_INDEX_START)\\n unix_sk(sk-X)-\u003evertex-\u003escc_index = 3\\n\\nOnce GC completes, unix_graph_grouped is set to true.\\nAlso, unix_graph_maybe_cyclic is set to true due to sk-X\u0027s\\ncyclic self-reference, which makes close() trigger GC.\\n\\nAt 3-b, unix_add_edge() allocates unix_sk(sk-B)-\u003evertex and\\nlinks it to unix_unvisited_vertices.\\n\\nunix_update_graph() is called at 3-a. and 3-b., but neither\\nunix_graph_grouped nor unix_graph_maybe_cyclic is changed\\nbecause both sk-B\u0027s listener and sk-C are not in-flight.\\n\\n3-c decrements sk-A\u0027s file refcnt to 1.\\n\\nSince unix_graph_grouped is true at 3-d, unix_walk_scc_fast()\\nis finally called and iterates 3 sockets sk-A, sk-B, and sk-X:\\n\\n sk-A -\u003e sk-B (-\u003e sk-C)\\n sk-X -\u003e sk-X\\n\\nThis is totally fine. All of them are not yet close()d and\\nshould be grouped into different SCCs.\\n\\nHowever, unix_vertex_dead() misjudges that sk-A and sk-B are\\nin the same SCC and sk-A is dead.\\n\\n unix_sk(sk-A)-\u003escc_index == unix_sk(sk-B)-\u003escc_index \u003c-- Wrong!\\n \u0026\u0026\\n sk-A\u0027s file refcnt == unix_sk(sk-A)-\u003evertex-\u003eout_degree\\n ^-- 1 in-flight count for sk-B\\n -\u003e sk-A is dead !?\\n\\nThe problem is that unix_add_edge() does not initialise scc_index.\\n\\nStage 1) is used for heap spraying, making a newly allocated\\nvertex have vertex-\u003escc_index == 2 (UNIX_VERTEX_INDEX_START)\\nset by unix_walk_scc() at 1-c.\\n\\nLet\u0027s track the max SCC index from the previous unix_walk_scc()\\ncall and assign the max + 1 to a new vertex\u0027s scc_index.\\n\\nThis way, we can continue to avoid Tarjan\u0027s algorithm while\\npreventing misjudgments.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"net/unix/garbage.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"adfb68b39b39767d6bfb53e48c4f19c183765686\",\"lessThan\":\"20003fbb9174121b27bd1da6ebe61542ac4c327d\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"d23802221f6755e104606864067c71af8cdb6788\",\"lessThan\":\"4cd8d755c7d4f515dd9abf483316aca2f1b7b0f3\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad081928a8b0f57f269df999a28087fce6f2b6ce\",\"lessThan\":\"db81ad20fd8aef7cc7d536c52ee5ea4c1f979128\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad081928a8b0f57f269df999a28087fce6f2b6ce\",\"lessThan\":\"1aa7e40ee850c9053e769957ce6541173891204d\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad081928a8b0f57f269df999a28087fce6f2b6ce\",\"lessThan\":\"60e6489f8e3b086bd1130ad4450a2c112e863791\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"6.1.141\",\"lessThan\":\"6.1.159\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"6.6.93\",\"lessThan\":\"6.6.117\",\"versionType\":\"semver\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"net/unix/garbage.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.10\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.10\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.1.159\",\"lessThanOrEqual\":\"6.1.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.6.117\",\"lessThanOrEqual\":\"6.6.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12.59\",\"lessThanOrEqual\":\"6.12.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.17.9\",\"lessThanOrEqual\":\"6.17.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.18\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]},{\"source\":\"0b142b55-0307-4c5a-b3c9-f314f3fb7c5e\",\"affectedData\":[{\"vendor\":\"Siemens\",\"product\":\"RUGGEDCOM RST2428P\",\"defaultStatus\":\"unknown\",\"versions\":[{\"version\":\"0\",\"lessThan\":\"V4.0\",\"versionType\":\"custom\",\"status\":\"affected\"}]}]}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/1aa7e40ee850c9053e769957ce6541173891204d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/20003fbb9174121b27bd1da6ebe61542ac4c327d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/4cd8d755c7d4f515dd9abf483316aca2f1b7b0f3\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/60e6489f8e3b086bd1130ad4450a2c112e863791\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/db81ad20fd8aef7cc7d536c52ee5ea4c1f979128\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://mohandacherir.github.io/Qdiv7/posts/unix_new_gc/\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://cert-portal.siemens.com/productcert/html/ssa-253495.html\",\"source\":\"0b142b55-0307-4c5a-b3c9-f314f3fb7c5e\"}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-06-30T10:28:14+00:00",
"cve": "CVE-2025-40214",
"id": "CVE-2025-40214",
"initial_release_date": "2025-12-04T00:00:00+00:00",
"product_status:known_affected": "90",
"product_status:known_not_affected": "184",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: af_unix: Initialise scc_index in unix_add_edge()",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2025/cve-2025-40214.json",
"version": "3"
}
}
}
WID-SEC-W-2026-1772
Vulnerability from csaf_certbund - Published: 2026-06-01 22:00 - Updated: 2026-06-01 22:00Summary
Google Android: Mehrere Schwachstellen
Severity
Kritisch
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: Das Android Betriebssystem ist eine quelloffene Plattform für mobile Geräte. Die Basis bildet der Linux-Kernel.
Angriff: Ein Angreifer kann mehrere Schwachstellen in Google Android ausnutzen, um seine Privilegien zu erhöhen, um einen Denial of Service Angriff durchzuführen, um Informationen offenzulegen, und um beliebigen Programmcode auszuführen.
Betroffene Betriebssysteme: - Android
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
Affected products
Known affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Google Android security patch level <2026-06-01
Google / Android
|
security patch level <2026-06-01 |
References
3 references
{
"document": {
"aggregate_severity": {
"text": "kritisch"
},
"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": "Das Android Betriebssystem ist eine quelloffene Plattform f\u00fcr mobile Ger\u00e4te. Die Basis bildet der Linux-Kernel.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen in Google Android ausnutzen, um seine Privilegien zu erh\u00f6hen, um einen Denial of Service Angriff durchzuf\u00fchren, um Informationen offenzulegen, und um beliebigen Programmcode auszuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Android",
"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-1772 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-1772.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-1772 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-1772"
},
{
"category": "external",
"summary": "Android Patchday Juni 2026 vom 2026-06-01",
"url": "https://source.android.com/docs/security/bulletin/2026/2026-06-01"
}
],
"source_lang": "en-US",
"title": "Google Android: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-06-01T22:00:00.000+00:00",
"generator": {
"date": "2026-06-02T11:37:29.819+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-1772",
"initial_release_date": "2026-06-01T22:00:00.000+00:00",
"revision_history": [
{
"date": "2026-06-01T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "security patch level \u003c2026-06-01",
"product": {
"name": "Google Android security patch level \u003c2026-06-01",
"product_id": "T054959"
}
},
{
"category": "product_version",
"name": "security patch level 2026-06-01",
"product": {
"name": "Google Android security patch level 2026-06-01",
"product_id": "T054959-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:google:android:security_patch_level__2026-06-01"
}
}
}
],
"category": "product_name",
"name": "Android"
}
],
"category": "vendor",
"name": "Google"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-22424",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-22424"
},
{
"cve": "CVE-2025-22426",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-22426"
},
{
"cve": "CVE-2025-26418",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-26418"
},
{
"cve": "CVE-2025-32348",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-32348"
},
{
"cve": "CVE-2025-40214",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-40214"
},
{
"cve": "CVE-2025-47384",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-47384"
},
{
"cve": "CVE-2025-47392",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-47392"
},
{
"cve": "CVE-2025-47400",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-47400"
},
{
"cve": "CVE-2025-47401",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-47401"
},
{
"cve": "CVE-2025-47403",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-47403"
},
{
"cve": "CVE-2025-48570",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48570"
},
{
"cve": "CVE-2025-48581",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48581"
},
{
"cve": "CVE-2025-48595",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48595"
},
{
"cve": "CVE-2025-48600",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48600"
},
{
"cve": "CVE-2025-48612",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48612"
},
{
"cve": "CVE-2025-48615",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48615"
},
{
"cve": "CVE-2025-48616",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48616"
},
{
"cve": "CVE-2025-48648",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48648"
},
{
"cve": "CVE-2025-48649",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48649"
},
{
"cve": "CVE-2025-48652",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-48652"
},
{
"cve": "CVE-2025-59604",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-59604"
},
{
"cve": "CVE-2025-59605",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-59605"
},
{
"cve": "CVE-2025-59606",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-59606"
},
{
"cve": "CVE-2025-64505",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-64505"
},
{
"cve": "CVE-2025-64720",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-64720"
},
{
"cve": "CVE-2025-65018",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-65018"
},
{
"cve": "CVE-2025-71251",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-71251"
},
{
"cve": "CVE-2025-71252",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-71252"
},
{
"cve": "CVE-2025-71253",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-71253"
},
{
"cve": "CVE-2025-71254",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-71254"
},
{
"cve": "CVE-2025-71255",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-71255"
},
{
"cve": "CVE-2025-71256",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2025-71256"
},
{
"cve": "CVE-2026-0009",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0009"
},
{
"cve": "CVE-2026-0016",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0016"
},
{
"cve": "CVE-2026-0018",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0018"
},
{
"cve": "CVE-2026-0036",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0036"
},
{
"cve": "CVE-2026-0039",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0039"
},
{
"cve": "CVE-2026-0040",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0040"
},
{
"cve": "CVE-2026-0041",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0041"
},
{
"cve": "CVE-2026-0042",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0042"
},
{
"cve": "CVE-2026-0043",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0043"
},
{
"cve": "CVE-2026-0044",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0044"
},
{
"cve": "CVE-2026-0045",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0045"
},
{
"cve": "CVE-2026-0046",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0046"
},
{
"cve": "CVE-2026-0048",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0048"
},
{
"cve": "CVE-2026-0050",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0050"
},
{
"cve": "CVE-2026-0051",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0051"
},
{
"cve": "CVE-2026-0052",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0052"
},
{
"cve": "CVE-2026-0055",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0055"
},
{
"cve": "CVE-2026-0056",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0056"
},
{
"cve": "CVE-2026-0059",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0059"
},
{
"cve": "CVE-2026-0060",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0060"
},
{
"cve": "CVE-2026-0061",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0061"
},
{
"cve": "CVE-2026-0067",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0067"
},
{
"cve": "CVE-2026-0069",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0069"
},
{
"cve": "CVE-2026-0070",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0070"
},
{
"cve": "CVE-2026-0074",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0074"
},
{
"cve": "CVE-2026-0075",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0075"
},
{
"cve": "CVE-2026-0076",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0076"
},
{
"cve": "CVE-2026-0077",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0077"
},
{
"cve": "CVE-2026-0078",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0078"
},
{
"cve": "CVE-2026-0079",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0079"
},
{
"cve": "CVE-2026-0080",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0080"
},
{
"cve": "CVE-2026-0085",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0085"
},
{
"cve": "CVE-2026-0086",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0086"
},
{
"cve": "CVE-2026-0087",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0087"
},
{
"cve": "CVE-2026-0088",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0088"
},
{
"cve": "CVE-2026-0089",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0089"
},
{
"cve": "CVE-2026-0091",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0091"
},
{
"cve": "CVE-2026-0093",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0093"
},
{
"cve": "CVE-2026-0094",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0094"
},
{
"cve": "CVE-2026-0095",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0095"
},
{
"cve": "CVE-2026-0096",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0096"
},
{
"cve": "CVE-2026-0097",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0097"
},
{
"cve": "CVE-2026-0098",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0098"
},
{
"cve": "CVE-2026-0099",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0099"
},
{
"cve": "CVE-2026-0100",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-0100"
},
{
"cve": "CVE-2026-20431",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20431"
},
{
"cve": "CVE-2026-20432",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20432"
},
{
"cve": "CVE-2026-20433",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20433"
},
{
"cve": "CVE-2026-20435",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20435"
},
{
"cve": "CVE-2026-20447",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20447"
},
{
"cve": "CVE-2026-20448",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20448"
},
{
"cve": "CVE-2026-20449",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20449"
},
{
"cve": "CVE-2026-20450",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20450"
},
{
"cve": "CVE-2026-20453",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20453"
},
{
"cve": "CVE-2026-20454",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20454"
},
{
"cve": "CVE-2026-20455",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-20455"
},
{
"cve": "CVE-2026-21352",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21352"
},
{
"cve": "CVE-2026-21353",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21353"
},
{
"cve": "CVE-2026-21367",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21367"
},
{
"cve": "CVE-2026-21372",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21372"
},
{
"cve": "CVE-2026-21373",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21373"
},
{
"cve": "CVE-2026-21374",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21374"
},
{
"cve": "CVE-2026-21375",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21375"
},
{
"cve": "CVE-2026-21376",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21376"
},
{
"cve": "CVE-2026-21378",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21378"
},
{
"cve": "CVE-2026-21380",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21380"
},
{
"cve": "CVE-2026-21381",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21381"
},
{
"cve": "CVE-2026-21538",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21538"
},
{
"cve": "CVE-2026-21539",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21539"
},
{
"cve": "CVE-2026-21540",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21540"
},
{
"cve": "CVE-2026-21541",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21541"
},
{
"cve": "CVE-2026-21542",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21542"
},
{
"cve": "CVE-2026-21543",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21543"
},
{
"cve": "CVE-2026-21544",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21544"
},
{
"cve": "CVE-2026-21545",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21545"
},
{
"cve": "CVE-2026-21546",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21546"
},
{
"cve": "CVE-2026-21547",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21547"
},
{
"cve": "CVE-2026-21736",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-21736"
},
{
"cve": "CVE-2026-22163",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-22163"
},
{
"cve": "CVE-2026-22167",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-22167"
},
{
"cve": "CVE-2026-24085",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-24085"
},
{
"cve": "CVE-2026-24089",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-24089"
},
{
"cve": "CVE-2026-25276",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-25276"
},
{
"cve": "CVE-2026-25277",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-25277"
},
{
"cve": "CVE-2026-28574",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-28574"
},
{
"cve": "CVE-2026-28577",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-28577"
},
{
"cve": "CVE-2026-28578",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-28578"
},
{
"cve": "CVE-2026-28580",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-28580"
},
{
"cve": "CVE-2026-28581",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-28581"
},
{
"cve": "CVE-2026-28586",
"product_status": {
"known_affected": [
"T054959"
]
},
"release_date": "2026-06-01T22:00:00.000+00:00",
"title": "CVE-2026-28586"
}
]
}
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…