Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-45845 (GCVE-0-2026-45845)
Vulnerability from cvelistv5
Published
2026-05-27 09:24
Modified
2026-06-14 17:46
Severity ?
VLAI Severity ?
EPSS score ?
Summary
In the Linux kernel, the following vulnerability has been resolved:
net/sched: taprio: fix NULL pointer dereference in class dump
When a TAPRIO child qdisc is deleted via RTM_DELQDISC, taprio_graft()
is called with new == NULL and stores NULL into q->qdiscs[cl - 1].
Subsequent RTM_GETTCLASS dump operations walk all classes via
taprio_walk() and call taprio_dump_class(), which calls taprio_leaf()
returning the NULL pointer, then dereferences it to read child->handle,
causing a kernel NULL pointer dereference.
The bug is reachable with namespace-scoped CAP_NET_ADMIN on any kernel
with CONFIG_NET_SCH_TAPRIO enabled. On systems with unprivileged user
namespaces enabled, an unprivileged local user can trigger a kernel
panic by creating a taprio qdisc inside a new network namespace,
grafting an explicit child qdisc, deleting it, and requesting a class
dump. The RTM_GETTCLASS dump itself requires no capability.
Oops: general protection fault, probably for non-canonical address 0xdffffc0000000007: 0000 [#1] SMP KASAN NOPTI
KASAN: null-ptr-deref in range [0x0000000000000038-0x000000000000003f]
RIP: 0010:taprio_dump_class (net/sched/sch_taprio.c:2478)
Call Trace:
<TASK>
tc_fill_tclass (net/sched/sch_api.c:1966)
qdisc_class_dump (net/sched/sch_api.c:2326)
taprio_walk (net/sched/sch_taprio.c:2514)
tc_dump_tclass_qdisc (net/sched/sch_api.c:2352)
tc_dump_tclass_root (net/sched/sch_api.c:2370)
tc_dump_tclass (net/sched/sch_api.c:2431)
rtnl_dumpit (net/core/rtnetlink.c:6864)
netlink_dump (net/netlink/af_netlink.c:2325)
rtnetlink_rcv_msg (net/core/rtnetlink.c:6959)
netlink_rcv_skb (net/netlink/af_netlink.c:2550)
</TASK>
Fix this by substituting &noop_qdisc when new is NULL in
taprio_graft(), a common pattern used by other qdiscs (e.g.,
multiq_graft()) to ensure the q->qdiscs[] slots are never NULL.
This makes control-plane dump paths safe without requiring individual
NULL checks.
Since the data-plane paths (taprio_enqueue and taprio_dequeue_from_txq)
previously had explicit NULL guards that would drop/skip the packet
cleanly, update those checks to test for &noop_qdisc instead. Without
this, packets would reach taprio_enqueue_one() which increments the root
qdisc's qlen and backlog before calling the child's enqueue; noop_qdisc
drops the packet but those counters are never rolled back, permanently
inflating the root qdisc's statistics.
After this change *old can be a valid qdisc, NULL, or &noop_qdisc.
Only call qdisc_put(*old) in the first case to avoid decreasing
noop_qdisc's refcount, which was never increased.
References
Impacted products
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"net/sched/sch_taprio.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "ec2501e361b08b50bcb1e7b3253fc861abbda28d",
"status": "affected",
"version": "665338b2a7a0139337d1f85be65ed16e487f84c1",
"versionType": "git"
},
{
"lessThan": "d02e2fbf60de46678e2ea698a6a904fd21e1cc31",
"status": "affected",
"version": "665338b2a7a0139337d1f85be65ed16e487f84c1",
"versionType": "git"
},
{
"lessThan": "48b26d48e76221dc90b02bf5428bab53643461ca",
"status": "affected",
"version": "665338b2a7a0139337d1f85be65ed16e487f84c1",
"versionType": "git"
},
{
"lessThan": "8f1ff8866cb9f655e5faea6994eb902960be8e04",
"status": "affected",
"version": "665338b2a7a0139337d1f85be65ed16e487f84c1",
"versionType": "git"
},
{
"lessThan": "3d07ca5c0fae311226f737963984bd94bb159a87",
"status": "affected",
"version": "665338b2a7a0139337d1f85be65ed16e487f84c1",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"net/sched/sch_taprio.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.6"
},
{
"lessThan": "6.6",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.141",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.91",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.33",
"versionType": "semver"
},
{
"lessThanOrEqual": "7.0.*",
"status": "unaffected",
"version": "7.0.10",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "7.1",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.6.141",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.91",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18.33",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.0.10",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.1",
"versionStartIncluding": "6.6",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/sched: taprio: fix NULL pointer dereference in class dump\n\nWhen a TAPRIO child qdisc is deleted via RTM_DELQDISC, taprio_graft()\nis called with new == NULL and stores NULL into q-\u003eqdiscs[cl - 1].\nSubsequent RTM_GETTCLASS dump operations walk all classes via\ntaprio_walk() and call taprio_dump_class(), which calls taprio_leaf()\nreturning the NULL pointer, then dereferences it to read child-\u003ehandle,\ncausing a kernel NULL pointer dereference.\n\nThe bug is reachable with namespace-scoped CAP_NET_ADMIN on any kernel\nwith CONFIG_NET_SCH_TAPRIO enabled. On systems with unprivileged user\nnamespaces enabled, an unprivileged local user can trigger a kernel\npanic by creating a taprio qdisc inside a new network namespace,\ngrafting an explicit child qdisc, deleting it, and requesting a class\ndump. The RTM_GETTCLASS dump itself requires no capability.\n\n Oops: general protection fault, probably for non-canonical address 0xdffffc0000000007: 0000 [#1] SMP KASAN NOPTI\n KASAN: null-ptr-deref in range [0x0000000000000038-0x000000000000003f]\n RIP: 0010:taprio_dump_class (net/sched/sch_taprio.c:2478)\n Call Trace:\n \u003cTASK\u003e\n tc_fill_tclass (net/sched/sch_api.c:1966)\n qdisc_class_dump (net/sched/sch_api.c:2326)\n taprio_walk (net/sched/sch_taprio.c:2514)\n tc_dump_tclass_qdisc (net/sched/sch_api.c:2352)\n tc_dump_tclass_root (net/sched/sch_api.c:2370)\n tc_dump_tclass (net/sched/sch_api.c:2431)\n rtnl_dumpit (net/core/rtnetlink.c:6864)\n netlink_dump (net/netlink/af_netlink.c:2325)\n rtnetlink_rcv_msg (net/core/rtnetlink.c:6959)\n netlink_rcv_skb (net/netlink/af_netlink.c:2550)\n \u003c/TASK\u003e\n\nFix this by substituting \u0026noop_qdisc when new is NULL in\ntaprio_graft(), a common pattern used by other qdiscs (e.g.,\nmultiq_graft()) to ensure the q-\u003eqdiscs[] slots are never NULL.\nThis makes control-plane dump paths safe without requiring individual\nNULL checks.\n\nSince the data-plane paths (taprio_enqueue and taprio_dequeue_from_txq)\npreviously had explicit NULL guards that would drop/skip the packet\ncleanly, update those checks to test for \u0026noop_qdisc instead. Without\nthis, packets would reach taprio_enqueue_one() which increments the root\nqdisc\u0027s qlen and backlog before calling the child\u0027s enqueue; noop_qdisc\ndrops the packet but those counters are never rolled back, permanently\ninflating the root qdisc\u0027s statistics.\n\nAfter this change *old can be a valid qdisc, NULL, or \u0026noop_qdisc.\nOnly call qdisc_put(*old) in the first case to avoid decreasing\nnoop_qdisc\u0027s refcount, which was never increased."
}
],
"providerMetadata": {
"dateUpdated": "2026-06-14T17:46:27.191Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/ec2501e361b08b50bcb1e7b3253fc861abbda28d"
},
{
"url": "https://git.kernel.org/stable/c/d02e2fbf60de46678e2ea698a6a904fd21e1cc31"
},
{
"url": "https://git.kernel.org/stable/c/48b26d48e76221dc90b02bf5428bab53643461ca"
},
{
"url": "https://git.kernel.org/stable/c/8f1ff8866cb9f655e5faea6994eb902960be8e04"
},
{
"url": "https://git.kernel.org/stable/c/3d07ca5c0fae311226f737963984bd94bb159a87"
}
],
"title": "net/sched: taprio: fix NULL pointer dereference in class dump",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-45845",
"datePublished": "2026-05-27T09:24:48.438Z",
"dateReserved": "2026-05-13T15:03:33.078Z",
"dateUpdated": "2026-06-14T17:46:27.191Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
CERTFR-2026-AVI-0731
Vulnerability from certfr_avis
De multiples vulnérabilités ont été découvertes dans les produits Microsoft. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, une élévation de privilèges et un déni de service à distance.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
NoneImpacted products
| Vendor | Product | Description | ||
|---|---|---|---|---|
| Microsoft | N/A | Nuance PowerScribe One version 2019.8 antérieures à 2019.8.43.19 | ||
| Microsoft | N/A | PowerScribe One version 2023.1 SP2 Patch 11 antérieures à 2023.2.3054 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.3 antérieures à 7.0.197.10 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.1 antérieures à 2019.1.96.6 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.8 antérieures à 7.0.427.15 | ||
| Microsoft | N/A | Microsoft Visual Studio 2026 version 18.6 antérieures à 18.6.3 | ||
| Microsoft | N/A | Microsoft SharePoint Server 2019 versions antérieures à 16.0.10417.20153 | ||
| Microsoft | N/A | PowerScribe One version 2023.1 SP3 Patch 6 antérieures à 2023.3.9072 | ||
| Microsoft | N/A | Microsoft PowerToys versions antérieures à v0.99.1 | ||
| Microsoft | N/A | azl3 httpd 2.4.67-1 versions antérieures à 2.4.68-1 | ||
| Microsoft | N/A | Visual Studio Code - MSSQL Extension versions antérieures à 1.123.1 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.3 antérieures à 2019.3.16.21 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.5 antérieures à 2019.5.14.40 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.4 antérieures à 7.0.212.10 | ||
| Microsoft | N/A | Microsoft Live Share Canvas SDK versions antérieures à 1.4.2 | ||
| Microsoft | N/A | Microsoft SharePoint Enterprise Server 2016 versions antérieures à 16.0.5556.1005 | ||
| Microsoft | N/A | Microsoft Exchange Server 2019 Cumulative Update 14 versions antérieures à 15.02.1544.041 | ||
| Microsoft | N/A | azl3 erlang 26.2.5.20-1 versions antérieures à 26.2.5.21-1 | ||
| Microsoft | N/A | azl3 libinput 1.25.0-1 versions antérieures à 1.25.0-2 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.10 antérieures à 2019.10.36.14 | ||
| Microsoft | N/A | Microsoft Dynamics 365 (on-premises) version 9.1 antérieures à 9.1 Train 26062 (06.2) | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.6 antérieures à 2019.6.36.40 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.2 antérieures à 2019.2.9.11 | ||
| Microsoft | N/A | Visual Studio Code versions antérieures à 1.123.1 | ||
| Microsoft | N/A | azl3 docker-buildx 0.14.0-13 versions antérieures à 0.14.0-15 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.7 antérieures à 2019.7.107.26 | ||
| Microsoft | N/A | Microsoft PC Manager versions antérieures à 3.21.6.0 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.5 antérieures à 7.0.243.19 | ||
| Microsoft | N/A | azl3 docker-compose 2.27.0-11 versions antérieures à 2.27.0-13 | ||
| Microsoft | N/A | Microsoft SharePoint Server Subscription Edition versions antérieures à 16.0.19725.20384 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.4 antérieures à 2019.4.9.17 | ||
| Microsoft | N/A | Microsoft Visual Studio Code CoPilot Chat Extension versions antérieures à 1.123.1 | ||
| Microsoft | N/A | Nuance PowerScribe 360 4.0 versions antérieures à 7.0.11.49 | ||
| Microsoft | N/A | Visual Studio Code versions antérieures à 1.119.1 | ||
| Microsoft | N/A | azl3 packer 1.9.5-15 versions antérieures à 1.9.5-16 | ||
| Microsoft | N/A | Nuance PowerScribe One version 2019.9 antérieures à 2019.9.31.23 | ||
| Microsoft | N/A | Linux kernel - Microsoft MANA Network Driver versions antérieures à 7.1 | ||
| Microsoft | N/A | azl3 kernel 6.6.139.1-1 versions antérieures à 6.6.141.1-1 | ||
| Microsoft | N/A | Microsoft Bing Search pour Android versions antérieures à 33.3 | ||
| Microsoft | N/A | Microsoft Defender pour Endpoint pour Mac versions antérieures à 101.26042.0011 | ||
| Microsoft | N/A | azl3 perl 5.38.2-509 versions antérieures à 5.38.2-510 | ||
| Microsoft | N/A | azl3 freeipmi 1.6.17-1 versions antérieures à 1.6.18-1 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.1 antérieures à 7.0.111.68 | ||
| Microsoft | N/A | Microsoft Exchange Server Subscription Edition RTM versions antérieures à 15.02.2562.043 | ||
| Microsoft | N/A | Microsoft Teams pour Android versions antérieures à 1.0.76.2026111302 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.6 antérieures à 7.0.277.28 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.7 antérieures à 7.0.316.12 | ||
| Microsoft | N/A | Microsoft Exchange Server 2019 Cumulative Update 15 versions antérieures à 15.02.1748.046 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.9 antérieures à 7.0.528.24 | ||
| Microsoft | N/A | Microsoft Exchange Server 2016 Cumulative Update 23 versions antérieures à 15.01.2507.069 | ||
| Microsoft | N/A | Nuance PowerScribe 360 version 4.0.2 antérieures à 7.0.154.18 | ||
| Microsoft | N/A | Microsoft SharePoint Enterprise Server 2016 versions antérieures à 16.0.5556.1002 |
References
| Title | Publication Time | Tags | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{
"$ref": "https://www.cert.ssi.gouv.fr/openapi.json",
"affected_systems": [
{
"description": "Nuance PowerScribe One version 2019.8 ant\u00e9rieures \u00e0 2019.8.43.19",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "PowerScribe One version 2023.1 SP2 Patch 11 ant\u00e9rieures \u00e0 2023.2.3054",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.3 ant\u00e9rieures \u00e0 7.0.197.10",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.1 ant\u00e9rieures \u00e0 2019.1.96.6",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.8 ant\u00e9rieures \u00e0 7.0.427.15",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Visual Studio 2026 version 18.6 ant\u00e9rieures \u00e0 18.6.3",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft SharePoint Server 2019 versions ant\u00e9rieures \u00e0 16.0.10417.20153",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "PowerScribe One version 2023.1 SP3 Patch 6 ant\u00e9rieures \u00e0 2023.3.9072",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft PowerToys versions ant\u00e9rieures \u00e0 v0.99.1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 httpd 2.4.67-1 versions ant\u00e9rieures \u00e0 2.4.68-1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Visual Studio Code - MSSQL Extension versions ant\u00e9rieures \u00e0 1.123.1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.3 ant\u00e9rieures \u00e0 2019.3.16.21",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.5 ant\u00e9rieures \u00e0 2019.5.14.40",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.4 ant\u00e9rieures \u00e0 7.0.212.10",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Live Share Canvas SDK versions ant\u00e9rieures \u00e0 1.4.2",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft SharePoint Enterprise Server 2016 versions ant\u00e9rieures \u00e0 16.0.5556.1005",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Exchange Server 2019 Cumulative Update 14 versions ant\u00e9rieures \u00e0 15.02.1544.041",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 erlang 26.2.5.20-1 versions ant\u00e9rieures \u00e0 26.2.5.21-1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 libinput 1.25.0-1 versions ant\u00e9rieures \u00e0 1.25.0-2",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.10 ant\u00e9rieures \u00e0 2019.10.36.14",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Dynamics 365 (on-premises) version 9.1 ant\u00e9rieures \u00e0 9.1 Train 26062 (06.2)",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.6 ant\u00e9rieures \u00e0 2019.6.36.40",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.2 ant\u00e9rieures \u00e0 2019.2.9.11",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Visual Studio Code versions ant\u00e9rieures \u00e0 1.123.1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 docker-buildx 0.14.0-13 versions ant\u00e9rieures \u00e0 0.14.0-15",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.7 ant\u00e9rieures \u00e0 2019.7.107.26",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft PC Manager versions ant\u00e9rieures \u00e0 3.21.6.0",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.5 ant\u00e9rieures \u00e0 7.0.243.19",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 docker-compose 2.27.0-11 versions ant\u00e9rieures \u00e0 2.27.0-13",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft SharePoint Server Subscription Edition versions ant\u00e9rieures \u00e0 16.0.19725.20384",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.4 ant\u00e9rieures \u00e0 2019.4.9.17",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Visual Studio Code CoPilot Chat Extension versions ant\u00e9rieures \u00e0 1.123.1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 4.0 versions ant\u00e9rieures \u00e0 7.0.11.49",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Visual Studio Code versions ant\u00e9rieures \u00e0 1.119.1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 packer 1.9.5-15 versions ant\u00e9rieures \u00e0 1.9.5-16",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe One version 2019.9 ant\u00e9rieures \u00e0 2019.9.31.23",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Linux kernel - Microsoft MANA Network Driver versions ant\u00e9rieures \u00e0 7.1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 kernel 6.6.139.1-1 versions ant\u00e9rieures \u00e0 6.6.141.1-1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Bing Search pour Android versions ant\u00e9rieures \u00e0 33.3",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Defender pour Endpoint pour Mac versions ant\u00e9rieures \u00e0 101.26042.0011",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 perl 5.38.2-509 versions ant\u00e9rieures \u00e0 5.38.2-510",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "azl3 freeipmi 1.6.17-1 versions ant\u00e9rieures \u00e0 1.6.18-1",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.1 ant\u00e9rieures \u00e0 7.0.111.68",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Exchange Server Subscription Edition RTM versions ant\u00e9rieures \u00e0 15.02.2562.043",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Teams pour Android versions ant\u00e9rieures \u00e0 1.0.76.2026111302",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.6 ant\u00e9rieures \u00e0 7.0.277.28",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.7 ant\u00e9rieures \u00e0 7.0.316.12",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Exchange Server 2019 Cumulative Update 15 versions ant\u00e9rieures \u00e0 15.02.1748.046",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.9 ant\u00e9rieures \u00e0 7.0.528.24",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft Exchange Server 2016 Cumulative Update 23 versions ant\u00e9rieures \u00e0 15.01.2507.069",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Nuance PowerScribe 360 version 4.0.2 ant\u00e9rieures \u00e0 7.0.154.18",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
},
{
"description": "Microsoft SharePoint Enterprise Server 2016 versions ant\u00e9rieures \u00e0 16.0.5556.1002",
"product": {
"name": "N/A",
"vendor": {
"name": "Microsoft",
"scada": false
}
}
}
],
"affected_systems_content": null,
"content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).",
"cves": [
{
"name": "CVE-2026-45842",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45842"
},
{
"name": "CVE-2026-42902",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42902"
},
{
"name": "CVE-2026-46119",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46119"
},
{
"name": "CVE-2026-42789",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42789"
},
{
"name": "CVE-2026-47639",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47639"
},
{
"name": "CVE-2026-45845",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45845"
},
{
"name": "CVE-2026-46124",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46124"
},
{
"name": "CVE-2026-46082",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46082"
},
{
"name": "CVE-2026-45464",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45464"
},
{
"name": "CVE-2026-46065",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46065"
},
{
"name": "CVE-2026-46227",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46227"
},
{
"name": "CVE-2026-47631",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47631"
},
{
"name": "CVE-2026-42496",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42496"
},
{
"name": "CVE-2026-46185",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46185"
},
{
"name": "CVE-2026-46064",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46064"
},
{
"name": "CVE-2026-45988",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45988"
},
{
"name": "CVE-2026-46112",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46112"
},
{
"name": "CVE-2026-46196",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46196"
},
{
"name": "CVE-2026-42790",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42790"
},
{
"name": "CVE-2026-46063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46063"
},
{
"name": "CVE-2026-45583",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45583"
},
{
"name": "CVE-2026-45500",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45500"
},
{
"name": "CVE-2026-39833",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-39833"
},
{
"name": "CVE-2026-46233",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46233"
},
{
"name": "CVE-2026-45504",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45504"
},
{
"name": "CVE-2026-47292",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47292"
},
{
"name": "CVE-2026-46114",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46114"
},
{
"name": "CVE-2026-45650",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45650"
},
{
"name": "CVE-2026-46080",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46080"
},
{
"name": "CVE-2026-46231",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46231"
},
{
"name": "CVE-2026-45835",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45835"
},
{
"name": "CVE-2026-45996",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45996"
},
{
"name": "CVE-2026-46229",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46229"
},
{
"name": "CVE-2026-46019",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46019"
},
{
"name": "CVE-2026-46173",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46173"
},
{
"name": "CVE-2026-46195",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46195"
},
{
"name": "CVE-2026-46204",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46204"
},
{
"name": "CVE-2026-46214",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46214"
},
{
"name": "CVE-2026-45647",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45647"
},
{
"name": "CVE-2025-15649",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15649"
},
{
"name": "CVE-2026-48560",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48560"
},
{
"name": "CVE-2026-45502",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45502"
},
{
"name": "CVE-2026-46027",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46027"
},
{
"name": "CVE-2026-45591",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45591"
},
{
"name": "CVE-2026-46040",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46040"
},
{
"name": "CVE-2026-46236",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46236"
},
{
"name": "CVE-2026-45481",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45481"
},
{
"name": "CVE-2026-46113",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46113"
},
{
"name": "CVE-2026-46137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46137"
},
{
"name": "CVE-2026-45841",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45841"
},
{
"name": "CVE-2026-46072",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46072"
},
{
"name": "CVE-2026-46159",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46159"
},
{
"name": "CVE-2026-46190",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46190"
},
{
"name": "CVE-2026-46142",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46142"
},
{
"name": "CVE-2026-47634",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47634"
},
{
"name": "CVE-2026-45468",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45468"
},
{
"name": "CVE-2026-50292",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50292"
},
{
"name": "CVE-2026-42835",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42835"
},
{
"name": "CVE-2026-46209",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46209"
},
{
"name": "CVE-2026-46031",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46031"
},
{
"name": "CVE-2026-46186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46186"
},
{
"name": "CVE-2026-46002",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46002"
},
{
"name": "CVE-2026-43503",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43503"
},
{
"name": "CVE-2026-46101",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46101"
},
{
"name": "CVE-2026-46099",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46099"
},
{
"name": "CVE-2026-45989",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45989"
},
{
"name": "CVE-2026-46091",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46091"
},
{
"name": "CVE-2026-46024",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46024"
},
{
"name": "CVE-2026-46106",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46106"
},
{
"name": "CVE-2026-46037",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46037"
},
{
"name": "CVE-2026-46116",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46116"
},
{
"name": "CVE-2026-46083",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46083"
},
{
"name": "CVE-2026-46151",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46151"
},
{
"name": "CVE-2026-46220",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46220"
},
{
"name": "CVE-2026-46127",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46127"
},
{
"name": "CVE-2026-46176",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46176"
},
{
"name": "CVE-2026-46146",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46146"
},
{
"name": "CVE-2026-45836",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45836"
},
{
"name": "CVE-2026-46178",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46178"
},
{
"name": "CVE-2026-45846",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45846"
},
{
"name": "CVE-2026-46133",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46133"
},
{
"name": "CVE-2026-46005",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46005"
},
{
"name": "CVE-2026-40371",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40371"
},
{
"name": "CVE-2026-46069",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46069"
},
{
"name": "CVE-2026-47298",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47298"
},
{
"name": "CVE-2026-46122",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46122"
},
{
"name": "CVE-2026-47637",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47637"
},
{
"name": "CVE-2026-46022",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46022"
},
{
"name": "CVE-2026-46103",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46103"
},
{
"name": "CVE-2026-46226",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46226"
},
{
"name": "CVE-2026-46043",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46043"
},
{
"name": "CVE-2026-46120",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46120"
},
{
"name": "CVE-2026-46198",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46198"
},
{
"name": "CVE-2026-49975",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-49975"
},
{
"name": "CVE-2026-46189",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46189"
},
{
"name": "CVE-2026-46011",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46011"
},
{
"name": "CVE-2026-46128",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46128"
},
{
"name": "CVE-2026-45503",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45503"
},
{
"name": "CVE-2026-46012",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46012"
},
{
"name": "CVE-2026-45479",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45479"
},
{
"name": "CVE-2026-46197",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46197"
},
{
"name": "CVE-2026-45467",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45467"
},
{
"name": "CVE-2026-45999",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45999"
},
{
"name": "CVE-2026-46180",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46180"
},
{
"name": "CVE-2026-46038",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46038"
},
{
"name": "CVE-2026-48962",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48962"
},
{
"name": "CVE-2026-46206",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46206"
},
{
"name": "CVE-2026-46000",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46000"
},
{
"name": "CVE-2026-46234",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46234"
},
{
"name": "CVE-2026-46109",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46109"
},
{
"name": "CVE-2026-46062",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46062"
},
{
"name": "CVE-2026-46108",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46108"
},
{
"name": "CVE-2026-46049",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46049"
},
{
"name": "CVE-2026-45458",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45458"
},
{
"name": "CVE-2026-47640",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47640"
},
{
"name": "CVE-2026-45997",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45997"
},
{
"name": "CVE-2026-46070",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46070"
},
{
"name": "CVE-2026-46150",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46150"
},
{
"name": "CVE-2026-44819",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44819"
},
{
"name": "CVE-2026-45840",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45840"
},
{
"name": "CVE-2026-45484",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45484"
},
{
"name": "CVE-2026-46300",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46300"
},
{
"name": "CVE-2026-46219",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46219"
},
{
"name": "CVE-2026-46172",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46172"
},
{
"name": "CVE-2026-45993",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45993"
},
{
"name": "CVE-2026-46161",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46161"
},
{
"name": "CVE-2026-46026",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46026"
},
{
"name": "CVE-2026-45844",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45844"
},
{
"name": "CVE-2026-46110",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46110"
},
{
"name": "CVE-2026-48562",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48562"
},
{
"name": "CVE-2026-45998",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45998"
},
{
"name": "CVE-2026-44821",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44821"
},
{
"name": "CVE-2026-47284",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47284"
},
{
"name": "CVE-2026-46111",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46111"
},
{
"name": "CVE-2026-46018",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46018"
},
{
"name": "CVE-2026-45991",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45991"
},
{
"name": "CVE-2026-46046",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46046"
},
{
"name": "CVE-2026-46145",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46145"
},
{
"name": "CVE-2026-46156",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46156"
},
{
"name": "CVE-2026-45476",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45476"
},
{
"name": "CVE-2026-46125",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46125"
},
{
"name": "CVE-2026-46152",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46152"
},
{
"name": "CVE-2026-45482",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45482"
},
{
"name": "CVE-2026-46075",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46075"
},
{
"name": "CVE-2026-46167",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46167"
},
{
"name": "CVE-2026-46191",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46191"
},
{
"name": "CVE-2026-26142",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-26142"
},
{
"name": "CVE-2026-48959",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48959"
},
{
"name": "CVE-2026-33113",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33113"
},
{
"name": "CVE-2026-46129",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46129"
},
{
"name": "CVE-2026-46006",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46006"
},
{
"name": "CVE-2026-49161",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-49161"
},
{
"name": "CVE-2026-45843",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45843"
},
{
"name": "CVE-2026-46115",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46115"
},
{
"name": "CVE-2026-46016",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46016"
},
{
"name": "CVE-2026-46015",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46015"
},
{
"name": "CVE-2026-45485",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45485"
},
{
"name": "CVE-2026-46136",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46136"
},
{
"name": "CVE-2026-46068",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46068"
},
{
"name": "CVE-2026-46056",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46056"
},
{
"name": "CVE-2026-46230",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46230"
},
{
"name": "CVE-2026-46138",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46138"
},
{
"name": "CVE-2026-46225",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46225"
},
{
"name": "CVE-2026-46004",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46004"
},
{
"name": "CVE-2026-46086",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46086"
},
{
"name": "CVE-2026-46094",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46094"
},
{
"name": "CVE-2026-46149",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46149"
},
{
"name": "CVE-2026-46208",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46208"
},
{
"name": "CVE-2026-45483",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45483"
},
{
"name": "CVE-2026-46205",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46205"
},
{
"name": "CVE-2026-46218",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46218"
},
{
"name": "CVE-2026-45456",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45456"
},
{
"name": "CVE-2026-46132",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46132"
},
{
"name": "CVE-2026-46160",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46160"
},
{
"name": "CVE-2026-46177",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46177"
},
{
"name": "CVE-2026-47287",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47287"
},
{
"name": "CVE-2026-46131",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46131"
},
{
"name": "CVE-2026-46084",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46084"
},
{
"name": "CVE-2026-46079",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46079"
},
{
"name": "CVE-2026-45471",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45471"
},
{
"name": "CVE-2026-50512",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50512"
},
{
"name": "CVE-2026-45501",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45501"
},
{
"name": "CVE-2026-46085",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46085"
},
{
"name": "CVE-2026-47638",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47638"
},
{
"name": "CVE-2026-47636",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47636"
},
{
"name": "CVE-2026-46021",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46021"
},
{
"name": "CVE-2026-45465",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45465"
},
{
"name": "CVE-2026-48569",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-48569"
},
{
"name": "CVE-2026-45462",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45462"
},
{
"name": "CVE-2026-46107",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46107"
},
{
"name": "CVE-2026-46047",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46047"
},
{
"name": "CVE-2026-46273",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46273"
},
{
"name": "CVE-2026-40376",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40376"
},
{
"name": "CVE-2026-45994",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45994"
},
{
"name": "CVE-2026-44824",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44824"
},
{
"name": "CVE-2026-46163",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46163"
},
{
"name": "CVE-2026-46164",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46164"
},
{
"name": "CVE-2026-45838",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45838"
},
{
"name": "CVE-2026-45454",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45454"
},
{
"name": "CVE-2026-45453",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45453"
},
{
"name": "CVE-2026-46077",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46077"
},
{
"name": "CVE-2026-46187",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46187"
},
{
"name": "CVE-2026-46168",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46168"
},
{
"name": "CVE-2026-45986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45986"
},
{
"name": "CVE-2026-45987",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45987"
},
{
"name": "CVE-2026-45644",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45644"
},
{
"name": "CVE-2026-46050",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46050"
},
{
"name": "CVE-2026-46003",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46003"
},
{
"name": "CVE-2026-46009",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46009"
},
{
"name": "CVE-2026-46144",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46144"
},
{
"name": "CVE-2026-46023",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46023"
},
{
"name": "CVE-2026-47641",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47641"
},
{
"name": "CVE-2026-46193",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46193"
},
{
"name": "CVE-2026-46033",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46033"
},
{
"name": "CVE-2026-46212",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46212"
},
{
"name": "CVE-2026-50031",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50031"
},
{
"name": "CVE-2026-45834",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45834"
},
{
"name": "CVE-2026-46089",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46089"
},
{
"name": "CVE-2026-50511",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-50511"
},
{
"name": "CVE-2026-46199",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46199"
},
{
"name": "CVE-2026-46123",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46123"
},
{
"name": "CVE-2026-46098",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46098"
},
{
"name": "CVE-2026-47281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47281"
},
{
"name": "CVE-2026-46165",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46165"
},
{
"name": "CVE-2026-46052",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46052"
},
{
"name": "CVE-2026-46053",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46053"
},
{
"name": "CVE-2026-45475",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45475"
},
{
"name": "CVE-2026-46238",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46238"
},
{
"name": "CVE-2026-46051",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46051"
},
{
"name": "CVE-2026-46155",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46155"
},
{
"name": "CVE-2026-45839",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-45839"
},
{
"name": "CVE-2026-46088",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46088"
},
{
"name": "CVE-2026-46048",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46048"
},
{
"name": "CVE-2026-46102",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46102"
},
{
"name": "CVE-2026-46078",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46078"
},
{
"name": "CVE-2026-46058",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46058"
}
],
"initial_release_date": "2026-06-10T00:00:00",
"last_revision_date": "2026-06-10T00:00:00",
"links": [],
"reference": "CERTFR-2026-AVI-0731",
"revisions": [
{
"description": "Version initiale",
"revision_date": "2026-06-10T00:00:00.000000"
}
],
"risks": [
{
"description": "D\u00e9ni de service \u00e0 distance"
},
{
"description": "Ex\u00e9cution de code arbitraire \u00e0 distance"
},
{
"description": "Atteinte \u00e0 l\u0027int\u00e9grit\u00e9 des donn\u00e9es"
},
{
"description": "Non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur"
},
{
"description": "Contournement de la politique de s\u00e9curit\u00e9"
},
{
"description": "Atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es"
},
{
"description": "\u00c9l\u00e9vation de privil\u00e8ges"
}
],
"summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans les produits Microsoft. Certaines d\u0027entre elles permettent \u00e0 un attaquant de provoquer une ex\u00e9cution de code arbitraire \u00e0 distance, une \u00e9l\u00e9vation de privil\u00e8ges et un d\u00e9ni de service \u00e0 distance.",
"title": "Multiples vuln\u00e9rabilit\u00e9s dans les produits Microsoft",
"vendor_advisories": [
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46231",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46231"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46018",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46018"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45845",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45845"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46226",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46226"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46088",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46088"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46050",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46050"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46173",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46173"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46062",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46062"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46167",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46167"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46070",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46070"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47638",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47638"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46132",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46132"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45465",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45465"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46037",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46037"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45454",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45454"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45838",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45838"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46009",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46009"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-48569",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-48569"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46185",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46185"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46098",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46098"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46187",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46187"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46026",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46026"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46177",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46177"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46124",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46124"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46005",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46005"
},
{
"published_at": "2026-05-31",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-42789",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42789"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46150",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46150"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46079",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46079"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46163",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46163"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46137",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46137"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46220",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46220"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46172",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46172"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45840",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45840"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46040",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46040"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46002",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46002"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46138",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46138"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45500",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45500"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-42902",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42902"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46219",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46219"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45835",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45835"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46238",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46238"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45476",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45476"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46015",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46015"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45834",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45834"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46111",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46111"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46212",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46212"
},
{
"published_at": "2026-05-27",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-39833",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-39833"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46038",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46038"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46024",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46024"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46176",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46176"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46196",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46196"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46214",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46214"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46103",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46103"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45462",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45462"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46077",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46077"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46234",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46234"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47640",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47640"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46131",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46131"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46120",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46120"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47639",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47639"
},
{
"published_at": "2026-05-27",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46300",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46300"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45846",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45846"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46043",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46043"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46225",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46225"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47292",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47292"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46195",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46195"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46191",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46191"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46149",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46149"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45481",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45481"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-48562",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-48562"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46193",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46193"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45591",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45591"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47637",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47637"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45479",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45479"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45583",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45583"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46115",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46115"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46161",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46161"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46027",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46027"
},
{
"published_at": "2026-06-02",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-48959",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-48959"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45467",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45467"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45475",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45475"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46133",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46133"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45989",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45989"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47298",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47298"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46064",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46064"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46046",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46046"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46102",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46102"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45844",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45844"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46006",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46006"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46236",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46236"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45650",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45650"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46065",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46065"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47636",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47636"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46012",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46012"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46209",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46209"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46136",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46136"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45996",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45996"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46146",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46146"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46094",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46094"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-33113",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-33113"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45998",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45998"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46108",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46108"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46101",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46101"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46058",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46058"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45503",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45503"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-44821",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-44821"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-42496",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42496"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46085",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46085"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46165",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46165"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-49161",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-49161"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46049",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46049"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46031",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46031"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46047",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46047"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47281",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47281"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46089",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46089"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47284",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47284"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45468",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45468"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-40371",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40371"
},
{
"published_at": "2026-05-31",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-48962",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-48962"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-49975",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-49975"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45483",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45483"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-44824",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-44824"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45997",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45997"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46227",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46227"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47287",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47287"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45987",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45987"
},
{
"published_at": "2026-05-31",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-42790",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42790"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-26142",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-26142"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46129",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46129"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45994",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45994"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45484",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45484"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45647",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45647"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46114",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46114"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46075",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46075"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45842",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45842"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45836",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45836"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45841",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45841"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46230",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46230"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45843",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45843"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46086",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46086"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47634",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47634"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46000",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46000"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45999",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45999"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46123",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46123"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46205",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46205"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-50511",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-50511"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45485",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45485"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47641",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47641"
},
{
"published_at": "2026-06-06",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-50292",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-50292"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46052",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46052"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46178",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46178"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46068",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46068"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46107",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46107"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46033",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46033"
},
{
"published_at": "2026-06-05",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46273",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46273"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46160",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46160"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46190",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46190"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46011",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46011"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46113",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46113"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46016",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46016"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46233",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46233"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46199",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46199"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45456",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45456"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-50512",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-50512"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46156",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46156"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46145",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46145"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46072",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46072"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46051",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46051"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46164",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46164"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46056",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46056"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46109",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46109"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46204",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46204"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46152",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46152"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46197",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46197"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46189",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46189"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46125",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46125"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46144",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46144"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46078",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46078"
},
{
"published_at": "2026-05-27",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-43503",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-43503"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45464",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45464"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46159",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46159"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45839",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45839"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45502",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45502"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46048",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46048"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46116",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46116"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45471",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45471"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45986",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45986"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45453",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45453"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46019",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46019"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46142",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46142"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45458",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45458"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45482",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45482"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-48560",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-48560"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46208",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46208"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45993",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45993"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46229",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46229"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46155",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46155"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46022",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46022"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46110",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46110"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45991",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45991"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46003",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46003"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46128",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46128"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46106",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46106"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-42835",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42835"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45988",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45988"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45501",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45501"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46063",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46063"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46168",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46168"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46021",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46021"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46091",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46091"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46218",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46218"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46206",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46206"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46119",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46119"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46084",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46084"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46127",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46127"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46186",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46186"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46198",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46198"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46151",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46151"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46082",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46082"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-40376",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40376"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45504",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45504"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46004",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46004"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46083",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46083"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46099",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46099"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-47631",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-47631"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46053",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46053"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-44819",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-44819"
},
{
"published_at": "2026-06-04",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-50031",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-50031"
},
{
"published_at": "2026-05-31",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2025-15649",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-15649"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46122",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46122"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46080",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46080"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46023",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46023"
},
{
"published_at": "2026-06-09",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-45644",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-45644"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46112",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46112"
},
{
"published_at": "2026-05-28",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46069",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46069"
},
{
"published_at": "2026-05-29",
"title": "Bulletin de s\u00e9curit\u00e9 Microsoft CVE-2026-46180",
"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-46180"
}
]
}
Loading…
Loading…
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.
Loading…
Loading…