Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-46116 (GCVE-0-2026-46116)
Vulnerability from cvelistv5
Published
2026-05-28 09:35
Modified
2026-06-14 17:55
Severity ?
VLAI Severity ?
EPSS score ?
Summary
In the Linux kernel, the following vulnerability has been resolved:
xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete
KASAN reproduces a slab-use-after-free in __xfrm_state_delete()'s
hlist_del_rcu calls under syzkaller load on linux-6.12.y stable
(reproduced on 6.12.47, also reachable via the same code path on
torvalds/master and on the ipsec tree). Nine unique signatures cluster
in the xfrm_state lifecycle, the load-bearing one being:
BUG: KASAN: slab-use-after-free in __hlist_del include/linux/list.h:990 [inline]
BUG: KASAN: slab-use-after-free in hlist_del_rcu include/linux/rculist.h:516 [inline]
BUG: KASAN: slab-use-after-free in __xfrm_state_delete net/xfrm/xfrm_state.c
Write of size 8 at addr ffff8881198bcb70 by task kworker/u8:9/435
Workqueue: netns cleanup_net
Call Trace:
__hlist_del / hlist_del_rcu
__xfrm_state_delete
xfrm_state_delete
xfrm_state_flush
xfrm_state_fini
ops_exit_list
cleanup_net
The other observed signatures hit the same slab object from
__xfrm_state_lookup, xfrm_alloc_spi, __xfrm_state_insert and an OOB
write variant of __xfrm_state_delete, all on the byseq/byspi
hash chains.
__xfrm_state_delete() guards its byseq and byspi unhashes with
value-based predicates:
if (x->km.seq)
hlist_del_rcu(&x->byseq);
if (x->id.spi)
hlist_del_rcu(&x->byspi);
while everywhere else in the file (e.g. state_cache, state_cache_input)
the safer hlist_unhashed() check is used. xfrm_alloc_spi() sets
x->id.spi = newspi inside xfrm_state_lock and then immediately inserts
into byspi, but a path that observes x->id.spi != 0 outside of
xfrm_state_lock can still skip-or-hit the byspi unhash inconsistently
with whether x is actually on the list. The same holds for x->km.seq
versus byseq, and the bydst/bysrc unhashes have no predicate at all,
so a second __xfrm_state_delete() on the same object writes through
LIST_POISON pprev.
The defensive change here:
- Use hlist_del_init_rcu() instead of hlist_del_rcu() on bydst,
bysrc, byseq and byspi so a second deletion is a no-op rather
than a write through LIST_POISON pprev. The byseq/byspi nodes
are already initialised in xfrm_state_alloc().
- Test hlist_unhashed() rather than the value predicate for
byseq/byspi, so the unhash decision tracks list state rather than
mutable scalar fields.
Empirical verification: applied this patch on top of v6.12.47, rebuilt,
and re-ran the same syzkaller harness for 1h16m on a previously-crashy
configuration that produced ~100 hits each of slab-use-after-free
Read in xfrm_alloc_spi / Read in __xfrm_state_lookup / Write in
__xfrm_state_delete. After the patch, 7.1M execs across 32 VMs at
~1550 exec/sec produced zero xfrm_state UAF/OOB hits. /proc/slabinfo
confirms the xfrm_state slab is actively allocated and freed during
the run (~143 KiB resident), so the fuzzer is still exercising those
code paths -- they just no longer crash.
Reproduction:
- Linux 6.12.47 x86_64 + KASAN_GENERIC + KASAN_INLINE + KCOV
- syzkaller @ 746545b8b1e4c3a128db8652b340d3df90ce61db
- 32 QEMU/KVM VMs x 2 vCPU on AWS c5.metal bare metal
- 9 unique signatures collected in ~9h, all within xfrm_state
lifecycle
References
Impacted products
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"net/xfrm/xfrm_state.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "b4a53add2fa8f1b5aa17d4c5686c320785fab182",
"status": "affected",
"version": "7b4dc3600e4877178ba94c7fbf7e520421378aa6",
"versionType": "git"
},
{
"lessThan": "26edb0a3c99f9d958c212be68b21f1221614dcf0",
"status": "affected",
"version": "7b4dc3600e4877178ba94c7fbf7e520421378aa6",
"versionType": "git"
},
{
"lessThan": "4980162de555cb838f1a189ce7d2cbf5d2e7b050",
"status": "affected",
"version": "7b4dc3600e4877178ba94c7fbf7e520421378aa6",
"versionType": "git"
},
{
"lessThan": "a2e2d08fb070fab4947447171f1c4e3ca5a188e5",
"status": "affected",
"version": "7b4dc3600e4877178ba94c7fbf7e520421378aa6",
"versionType": "git"
},
{
"lessThan": "14acf9652e5690de3c7486c6db5fb8dafd0a32a3",
"status": "affected",
"version": "7b4dc3600e4877178ba94c7fbf7e520421378aa6",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"net/xfrm/xfrm_state.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "2.6.19"
},
{
"lessThan": "2.6.19",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.140",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.88",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.30",
"versionType": "semver"
},
{
"lessThanOrEqual": "7.0.*",
"status": "unaffected",
"version": "7.0.7",
"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.140",
"versionStartIncluding": "2.6.19",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.88",
"versionStartIncluding": "2.6.19",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18.30",
"versionStartIncluding": "2.6.19",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.0.7",
"versionStartIncluding": "2.6.19",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.1",
"versionStartIncluding": "2.6.19",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nxfrm: defensively unhash xfrm_state lists in __xfrm_state_delete\n\nKASAN reproduces a slab-use-after-free in __xfrm_state_delete()\u0027s\nhlist_del_rcu calls under syzkaller load on linux-6.12.y stable\n(reproduced on 6.12.47, also reachable via the same code path on\ntorvalds/master and on the ipsec tree). Nine unique signatures cluster\nin the xfrm_state lifecycle, the load-bearing one being:\n\n BUG: KASAN: slab-use-after-free in __hlist_del include/linux/list.h:990 [inline]\n BUG: KASAN: slab-use-after-free in hlist_del_rcu include/linux/rculist.h:516 [inline]\n BUG: KASAN: slab-use-after-free in __xfrm_state_delete net/xfrm/xfrm_state.c\n Write of size 8 at addr ffff8881198bcb70 by task kworker/u8:9/435\n\n Workqueue: netns cleanup_net\n Call Trace:\n __hlist_del / hlist_del_rcu\n __xfrm_state_delete\n xfrm_state_delete\n xfrm_state_flush\n xfrm_state_fini\n ops_exit_list\n cleanup_net\n\nThe other observed signatures hit the same slab object from\n__xfrm_state_lookup, xfrm_alloc_spi, __xfrm_state_insert and an OOB\nwrite variant of __xfrm_state_delete, all on the byseq/byspi\nhash chains.\n\n__xfrm_state_delete() guards its byseq and byspi unhashes with\nvalue-based predicates:\n\n\tif (x-\u003ekm.seq)\n\t\thlist_del_rcu(\u0026x-\u003ebyseq);\n\tif (x-\u003eid.spi)\n\t\thlist_del_rcu(\u0026x-\u003ebyspi);\n\nwhile everywhere else in the file (e.g. state_cache, state_cache_input)\nthe safer hlist_unhashed() check is used. xfrm_alloc_spi() sets\nx-\u003eid.spi = newspi inside xfrm_state_lock and then immediately inserts\ninto byspi, but a path that observes x-\u003eid.spi != 0 outside of\nxfrm_state_lock can still skip-or-hit the byspi unhash inconsistently\nwith whether x is actually on the list. The same holds for x-\u003ekm.seq\nversus byseq, and the bydst/bysrc unhashes have no predicate at all,\nso a second __xfrm_state_delete() on the same object writes through\nLIST_POISON pprev.\n\nThe defensive change here:\n\n - Use hlist_del_init_rcu() instead of hlist_del_rcu() on bydst,\n bysrc, byseq and byspi so a second deletion is a no-op rather\n than a write through LIST_POISON pprev. The byseq/byspi nodes\n are already initialised in xfrm_state_alloc().\n - Test hlist_unhashed() rather than the value predicate for\n byseq/byspi, so the unhash decision tracks list state rather than\n mutable scalar fields.\n\nEmpirical verification: applied this patch on top of v6.12.47, rebuilt,\nand re-ran the same syzkaller harness for 1h16m on a previously-crashy\nconfiguration that produced ~100 hits each of slab-use-after-free\nRead in xfrm_alloc_spi / Read in __xfrm_state_lookup / Write in\n__xfrm_state_delete. After the patch, 7.1M execs across 32 VMs at\n~1550 exec/sec produced zero xfrm_state UAF/OOB hits. /proc/slabinfo\nconfirms the xfrm_state slab is actively allocated and freed during\nthe run (~143 KiB resident), so the fuzzer is still exercising those\ncode paths -- they just no longer crash.\n\nReproduction:\n\n - Linux 6.12.47 x86_64 + KASAN_GENERIC + KASAN_INLINE + KCOV\n - syzkaller @ 746545b8b1e4c3a128db8652b340d3df90ce61db\n - 32 QEMU/KVM VMs x 2 vCPU on AWS c5.metal bare metal\n - 9 unique signatures collected in ~9h, all within xfrm_state\n lifecycle"
}
],
"metrics": [
{
"cvssV3_1": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-06-14T17:55:37.369Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/b4a53add2fa8f1b5aa17d4c5686c320785fab182"
},
{
"url": "https://git.kernel.org/stable/c/26edb0a3c99f9d958c212be68b21f1221614dcf0"
},
{
"url": "https://git.kernel.org/stable/c/4980162de555cb838f1a189ce7d2cbf5d2e7b050"
},
{
"url": "https://git.kernel.org/stable/c/a2e2d08fb070fab4947447171f1c4e3ca5a188e5"
},
{
"url": "https://git.kernel.org/stable/c/14acf9652e5690de3c7486c6db5fb8dafd0a32a3"
}
],
"title": "xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-46116",
"datePublished": "2026-05-28T09:35:30.689Z",
"dateReserved": "2026-05-13T15:03:33.098Z",
"dateUpdated": "2026-06-14T17:55:37.369Z",
"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…