H AI APT Attack BigBrothers BotNet Congress Cryptocurrency Cyber CyberCrime Exploit Hack ICS Incindent IoT IT Mobil OS Phishing Ransom Safety Security Social Spam Virus Vulnerebility
Linux Detection Engineering - Local Privilege Escalation
Seven of the thirteen Linux privilege escalation CVEs we tracked in 2026 turned out to be the same copy-on-write bug pointed at different kernel interfaces. We ran the public proof-of-concept for eleven exploits and two misconfigurations, and noted which rules fired.
Local privilege escalation (LPE) is the step that turns a foothold into full control of a host. An attacker who lands as an unprivileged user rarely stops there. They want root, and Linux keeps offering new ways to get it.
In this edition of our "Linux Detection Engineering" series, we’ll cover:
The default flow that a Linux LPE produces on the host and the general rules that detect it.
The recurring LPE patterns behind the most recent LPEs and how each works, along with how each looks through the lens of Elastic Defend.
The Elastic detection and endpoint rules that fire on each.
Over the past year, the pace of publicly disclosed Linux LPEs has picked up sharply, and the shape of those disclosures has changed with it.

For most of the last decade, escalations arrived steadily but from all over the map, including from trusted helpers like sudo, pkexec, and polkit; kernel bugs scattered across Executable and Linkable Format (ELF) loading, ptrace, eBPF, and packet sockets; and user namespaces widening what an ordinary account could reach. That variety kept the workload manageable. Each bug had its own subsystem and write-up, so reading each advisory as it landed and adding a rule for that technique worked.
Then came 2026.

Seven of the 13 disclosures that we track here share one bug class: a copy-on-write or zero-copy path that writes into data that it was supposed to copy first. Copy Fail opened in April 2026, and DirtyFrag, Fragnesia, DirtyDecrypt, and DirtyClone pushed the identical idea through ESP, RxRPC, and the socket-buffer fragment helpers within weeks. pedit COW moved it into traffic control. RefluXFS took it back to the filesystem in July 2026. Neither figure is a census, so read them as a picture of how the work changed rather than a count of every bug.
Qualys attributes RefluXFS to a research effort with Anthropic, pointing Claude Mythos Preview at the kernel's memory-management and filesystem code to hunt for a DirtyCOW-style race and then reproducing and verifying the result before disclosure. The author of OVSwrap credits a comparable large language model-assisted (LLM-assisted) workflow. Both teams kept humans on validation and disclosure, and LLMs are unlikely to be the only factor here. What the two write-ups show is the loop itself: hand a model a known bug class, ask for a new instance, repeat. When one idea can be aimed at a dozen kernel interfaces in a quarter, a detection rule written per Common Vulnerabilities and Exposures (CVE) keeps arriving late.
The good news is that most LPEs, however novel the trigger, share a single detectable flow, and beyond it, they fall into a small number of bug classes. So we detect in two layers: a general layer keyed on the flow every escalation produces (an unprivileged process becoming root), and a per-technique layer that adds signal specific to a bug class.
Setting up Elastic Defend and Auditd to detect Linux privilege escalation
To follow along and generate the telemetry shown here, enable the prebuilt rules
and reproduce the techniques in a lab:
In Kibana, navigate to Security -> Rules -> Detection rules (SIEM), and install the Elastic prebuilt rules. Enable the Linux privilege escalation rules (by filtering on tags OS: Linux and Tactic: Privilege Escalation).
Deploy Elastic Defend on a Linux test host for endpoint (behavioral) coverage.
For syscall-level visibility, enable the Auditd Manager integration. The page-cache class, in particular, relies on socket, splice, and bind auditing, as well as execve. The Copy Fail and DirtyFrag research lists the exact auditd rules to add.
Reproduce each technique safely in a disposable virtual machine (VM) using the relevant public proof of concept (PoC). Treat all exploit code as lab-only, and never run it against systems that you don’t own.
All of the rules mentioned in the blog are available as a detection and/or endpoint rule. Detection rules live in Elastic’s detection-rules repository, while endpoint rules live in Elastic’s protections-artifacts repository.
The limitations of this Linux privilege escalation detection framework
This post is built around the public PoC for each vulnerability. We’re aware
that a PoC can be modified: swap the targeted setuid binary, change paths, or
reshape the exploit to sidestep a specific match. That’s exactly why the
detection is layered and outcome-oriented rather than tied to any one
implementation. The goal is a general LPE detection framework that holds up
across reimplementations and covers the shared flow that every escalation
produces.
We aren’t claiming to detect 100% of Linux LPEs, and certainly not an LPE custom-built to evade these detections. What we aim for is broad, durable coverage of the way that escalations actually behave on a host, with LPE technique-specific rules covering the foundations and bug class-specific rules to catch those that were missed.
How Linux privilege escalation detection works: The flow that every exploit
produces
Almost every local privilege escalation, whatever the underlying bug, produces
the same skeleton of activity on the host:
An unprivileged user (uid != 0) runs something, usually a freshly dropped or compiled binary, a script, or a shell one-liner, from a location that they can write to (for example, /tmp, /dev/shm, /var/tmp, /home, or /run/user/).
Moments later, a process in that lineage is running as root: a uid_change to 0, an effective uid or guid of 0, or an interactive root shell.
In certain PoCs, the exploit then confirms success by running whoami, id, or logname.
That "exec from a writable path and become root" skeleton is the backbone of our general detection. Because these rules key on the outcome and its immediate context rather than on any exploit-specific artifact, they cover a broad class of LPEs, including ones that we’ve never seen. They’re also what catch the page-cache family and the no-userland-tell kernel bugs, where there’s nothing implementation-specific to match.
Detecting SUID and SGID helper abuse
Setuid-root binaries and helpers are the single most common final step in a
Linux LPE, because they’re the sanctioned way for an unprivileged user to run
something as root, so any slip in how one of them behaves hands over that
privilege. What ties the subcases together is the privilege shape: a process
running with effective uid 0 while the real user (and usually the parent) is
not, launched with minimal arguments from an interpreter, a shell one-liner, or
a writable path. We split the coverage by how the abused binary is chosen, from
the handful of helpers that appear in almost every write-up, out to the long
tail and the proxying tricks that a name-based rule misses. This category maps
to the Abuse Elevation Control Mechanism: Setuid and Setgid (T1548.001)
technique on the MITRE ATT&CK matrix.
Detecting abuse of su, sudo, pkexec, and passwd
A short list of setuid helpers (su, sudo, pkexec, passwd) accounts for the
overwhelming majority of real-world SUID abuse, whether as the finishing move of
a memory-corruption exploit or a plain misconfiguration. A dedicated, tightly
scoped rule for these keeps false positives near zero while covering the common
case, so it’s the first thing to reach for.
Let’s begin by covering the different building blocks relevant to building a strong yet general SUID LPE detector, one by one. The following logic looks for instances where either the user or group ID is 0, while the real user/group ID is not. This is a default and benign SUID behavior and would trigger on typical sudo usage by a user.
(
(process.user.id == 0 and process.real_user.id != 0) or
(process.group.id == 0 and process.real_group.id != 0)
)
This logic is followed by the execution of a commonly abused SUID helper with a low process argument count. This already cuts down the false positive rate drastically. For example, in a benign use case, the sudo command is generally used with additional arguments, making a sudo invocation with an argument count of 1 rare. However, just relying on these two building blocks isn’t strong enough to be a detection on its own, as this activity still happens too frequently in benign scenarios.
(
(process.name == "su" and process.args_count <= 2) or
(process.name == "sudo" and process.args_count == 1) or
(process.name == "pkexec" and process.args_count == 1) or
(process.name == "passwd" and process.args_count <= 2)
)
The euid-0 / non-root-real-user shape is paired with an interpreter, writable-path, or shell one-liner parent, which is what separates exploitation from a user legitimately typing sudo.
(
process.parent.name like (
".*", "python*", "perl*", "ruby*", "lua*", "php*", "node",
"deno", "bun", "java"
) or
process.parent.executable like (
"./*", "/tmp/*", "/var/tmp/*", "/dev/shm/*", "/run/user/*",
"/var/run/user/*", "/home/*/*"
) or
(
process.parent.name in (
"bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish", "mksh"
) and
process.parent.args in ("-c", "-cl", "-lc", "--command", "-ic", "-ci") and
process.parent.args_count <= 4
)
)
And it’s followed by a bunch of known legitimate exclusion activity. Combining these three building blocks makes for a strong general SUID/SGID helper LPE detection. This logic maps to Suspicious SUID/SGID Utility Execution.
Detecting uncommon SUID binaries without a name list
Not every abused SUID binary is on that short list. This variant drops the hard-coded
names entirely and keys on the privilege shape plus a self-referential command
line (the process was invoked as itself), which is what a freshly abused, less
common setuid binary looks like on the wire. We still check beforehand to see
whether we’re dealing with a SUID binary:
(
(process.user.id == 0 and process.real_user.id != 0) or
(process.group.id == 0 and process.real_group.id != 0)
)
But this is quickly followed by the main logic differentiator between these different rules, which is displayed below:
(
stringcontains(process.executable, process.command_line) or
stringcontains(process.name, process.command_line)
)
Instead of relying on allowlisting a list of known SUID binaries, we use a clever stringcontains Event Query Language (EQL) trick. By using the stringcontains function, we can compare the process.executable to the process.command_line value (or process.name to process.command_line), effectively matching on instances where an unknown SUID binary (which we established through the user.id versus real_user.id comparison) is executed directly. The gap it fills is the long tail: because there’s no name list, there’s no blind spot for whichever setuid binary a given system happens to ship, at the cost of a broader exclusion list for legitimate helpers.
We follow this rule with an exclusion of known SUID helpers, to minimize coverage overlap with the previous (and other) rules. This maps to Potential Privilege Escalation via a SUID/SGID Binary.
Detecting SUID helper proxy execution via process arguments
Some abuse doesn’t run the helper as the process itself; it hands the helper as
an argument to another privileged binary, proxying the execution so a name-based
rule sees the wrong thing. The tell is a process whose command line starts with
its own executable, a single-argument parent, and a known setuid helper path
sitting in the arguments.
process.args in (
"/bin/su", "/usr/bin/su",
"/bin/umount", "/usr/bin/umount",
"/bin/chfn", "/usr/bin/chfn",
"/bin/chsh", "/usr/bin/chsh",
"/bin/gpasswd", "/usr/bin/gpasswd",
"/bin/newgrp", "/usr/bin/newgrp",
"/usr/bin/newuidmap", "/usr/bin/newgidmap",
"/usr/lib/dbus-1.0/dbus-daemon-launch-helper",
"/usr/libexec/dbus-daemon-launch-helper",
"/usr/lib/openssh/ssh-keysign", "/usr/libexec/openssh/ssh-keysign",
"/usr/bin/pkexec", "/usr/libexec/pkexec", "/usr/lib/polkit-1/pkexec",
"/usr/lib/snapd/snap-confine"
) and
process.args_count <= 2
The proxy execution rule differs from the two rules above by looking at the helper in process.args rather than process.name, so it catches the proxying pattern (binfmt_misc style and similar) that name-based matching would miss entirely. Although not exhaustive, the argument list does target the most commonly available SUID helpers on a default Linux system. This maps to Potential Privilege Escalation via SUID/SGID Proxy Execution.
Further SUID and SGID privilege escalation rules
We didn’t get into every SUID-based LPE rule that we created to cover this
attack vector. We encourage anyone interested in digging deeper to take a look
at our other public rules related to SUID/SGID LPE, which can be found here:
Potential Privilege Escalation via SUID/SGID Proxy Execution (and its Elastic Defend counterpart)
Self-elevation: Exec from a writable path and then a UID change to root
Many kernel and logic exploits never touch a helper; the exploit process, or
something in its lineage, simply becomes root. The observable is always the same
pair: a non-root process execs from a writable path (/tmp, /dev/shm, /var/tmp,
/home/*, /run/user/*), and shortly after, a process in that lineage emits a uid_change
to 0. The subcases differ only in how tightly we can tie the exec to the
elevation and in whether the exploit politely confirms its own success.
Detecting exec and then elevating by correlating on the parent process
The most general form correlates the two events by their shared parent: a non-root,
interactive exec from a writable path, followed by a uid_change to 0 under the
same parent, within a short window.
sequence by process.parent.entity_id with maxspan=15s
[process where event.type == "start" and event.action == "exec" and
user.id != 0 and process.parent.user.id != 0 and
process.parent.group.id != 0 and
(
process.executable like (
".*", "/tmp/*", "/dev/shm/*", "/var/tmp/*", "/run/user/*",
"/var/run/user/*", "/home/*/*"
) or
process.parent.executable like (
".*", "/tmp/*", "/dev/shm/*", "/var/tmp/*", "/run/user/*",
"/var/run/user/*", "/home/*/*"
)
)]
[process where event.type == "change" and event.action == "uid_change" and
user.id == 0 and process.parent.user.id != 0 and
process.parent.group.id != 0]
It needs no recon command and no known binary, just the exec-then-elevate pair from a world-writable location, so it fires on self-elevating exploits that give nothing else away. Given that this activity is also known to fire on false positives (edge cases where benign precompiled binaries in /tmp or /home directories elevate), this rule requires slightly more tuning to fit in well with your environment. For static server environments, the rule should generally be plug and play. This maps to Potential Privilege Escalation via a Parent Process Sequence.
Using descendant-of to catch root transitions several processes deep
The root transition doesn’t always land in the immediate child. When a web
server or interpreter running as a service account spawns a chain that ends in
an interactive root process several hops down, a direct parent/child correlation
breaks. To combat this, we added another layer, using the descendant of
functionality.
In this query, we target interactive executions where the user.id is 0, while the parent user is a nonsystem user (uid >= 1000).
process where event.type == "start" and event.action == "exec" and
process.interactive == true and user.id == 0 and (
process.parent.user.id >= 1000 or
process.parent.user.name in (
"apache", "www-data", "httpd", "nginx", "lighttpd", "tomcat",
"tomcat8", "tomcat9", "ftp", "ftpuser", "ftpd"
)
)
The interactive-root match is then followed by descendant of logic, where the descendant is an executable launched from a world-/user-writable location.
descendant of [
process where event.type == "start" and event.action == "exec" and
user.id != 0 and
process.executable like (
".*", "/tmp/*", "/dev/shm/*", "/var/tmp/*", "/home/*/*",
"/run/user/*", "/var/run/user/*"
)
]
sing descendant of instead of a fixed parent link accommodates any depth of intermediate processes, and folding in service accounts (uid >= 1000, or www-data, nginx, tomcat) covers the web-shell-to-root path that the sequence rules can miss. This maps to Potential Local Privilege Escalation via a Suspicious Descendant Process.
Detecting the exec, elevate, and confirm sequence
When the exploit verifies its own success (the near-universal habit of running
id, whoami, or logname right after getting root), we can require all three
stages: the writable-path exec, the uid_change to 0, and then the privilege
check as root.
sequence with maxspan=10s
[process where event.type == "start" and event.action == "exec" and
user.id != 0 and process.executable like (
".*", "/tmp/*", "/dev/shm/*", "/var/tmp/*", "/home/*/*",
"/run/user/*", "/var/run/user/*"
)] by process.entity_id
[process where event.type == "change" and event.action == "uid_change" and
user.id == 0] by process.entity_id
[process where event.type == "start" and event.action == "exec" and
process.name in ("whoami", "id", "logname") and
user.id == 0] by process.parent.entity_id
The confirm stage is what makes this the lowest-false-positive, highest-true-positive signal of the group for public PoCs, which frequently check their work, so it’s the rule to lead an investigation with. This maps to General Privilege Escalation Sequence Detected.
Detecting a Python interpreter escalating to root
A growing share of public PoCs finish with a one-line interpreter payload, and
Python is the workhorse. Rather than matching an exact one-liner, we key on a
uid_change to 0 where the responsible process is a Python interpreter running
from a world-/user-writable working directory with a non-root parent.
event.category:process and event.type:change and event.action:uid_change and
user.id:0 and not process.parent.user.id:0 and
not process.parent.group.id:0 and process.name:python* and
process.working_directory:(
/tmp* or /var/tmp* or /dev/shm* or /home/* or /run/user* or
/var/run/user* or /var/www*
) and
process.parent.working_directory:(
/tmp* or /var/tmp* or /dev/shm* or /home/* or /run/user* or
/var/run/user* or /var/www*
) and
process.command_line:*
As this activity is also known to hit on false positives, the new terms rule type was used to only alert on instances where the process.command_line hasn’t been seen on the host.id in the last five days.
With so many 2026 PoCs (Copy Fail, DirtyClone, CIFSwitch among them) shipped as Python, this catches the interpreter-driven finish generically, independent of the specific exploit. This maps to Suspicious UID Change to Root via Python and its Elastic Defend counterpart, which is slightly more restricted in terms of logic: Potential Privilege Escalation via Python Exploit.
More exec and elevate rules for Linux privilege escalation detection
We just described the most common exec and elevate relationships. However,
several LPEs don’t trigger on the parent/descendant relationship, but require
keying on parent → child or process → process relationships. You can find the
whole list of public detection and endpoint rules below:
Potential Privilege Escalation via a Parent Process Sequence
Potential Privilege Escalation via a Parent/Child Process Sequence
Potential Local Privilege Escalation via a Suspicious Descendant Process
The main difference between the detection and endpoint rule logic is the scope. Our endpoint detection and response (EDR) ruleset is generally optimized for a low false positive rate, over a high true positive rate. Because this can lead to false negatives, we “duplicate” the endpoint rule logic to detection rules with fewer to zero exclusions.
Detecting unshare and user namespace privilege escalation
Not every escalation runs straight at a setuid binary or a kernel bug in the
host context. A large family of Linux LPEs first calls unshare(CLONE_NEWUSER) to
gain capabilities inside a new user namespace and then uses that borrowed power
to reach code paths (filesystems, mounts, networking) that were never meant to
take untrusted input. Because that unshare step is shared across CIFSwitch,
pedit COW, DirtyClone, and container escapes, we detect it independently of
whichever bug follows.
We detect two behavioral red flags: correlating the namespace creation to a root transition, and flagging anomalous unshare usage on its own.
Detecting unshare followed by a root transition
The high-confidence form correlates a non-root unshare that creates a user
namespace with a uid_change to 0 shortly after, under the same lineage.
sequence by process.parent.entity_id with maxspan=60s
[process where event.action == "exec" and event.type == "start" and
process.name == "unshare" and
process.args in ("-r", "-rm", "-m", "-U", "--user") and user.id != 0]
[process where event.action == "uid_change" and event.type == "change" and
user.id == 0 and process.parent.user.id != 0]
Match the namespace flags by substring rather than by exact token, so the combined short form is caught alongside the split -U -r -m form. This maps to Potential Local Privilege Escalation via Unshare.
The auditd variant additionally keys on the unshare syscall's namespace-flag argument, which is independent of how the flags were spelled on the command line.
sequence by host.id, process.parent.pid with maxspan=30s
[process where host.os.type == "linux" and
(
(
auditd.data.syscall == "unshare" and auditd.data.class == "namespace" and
auditd.data.a0 in (
"10000000", "50000000", "70000000", "10020000", "50020000", "70020000"
)
) or
(
process.name == "unshare" and
(
process.args in ("--user", "--map-root-user", "--map-current-user") or
process.args like ("-*U*", "-*r*")
)
)
) and user.id != "0" and user.id != null]
[process where host.os.type == "linux" and
user.id == "0" and user.id != null and
(
process.name in (
"su", "sudo", "pkexec", "passwd", "chsh", "newgrp", "doas", "run0",
"sg", "dash", "sh", "bash", "zsh", "fish", "ksh", "csh", "tcsh",
"ash", "mksh", "busybox", "rbash", "rzsh", "rksh", "tmux",
"screen", "node"
) or
process.name like ("python*", "perl*", "ruby*", "php*", "lua*")
)]
Tying the unshare to the subsequent uid_change keeps false positives low; sandboxing and container tooling call unshare constantly but rarely transition to root in the same lineage. This maps to Potential Privilege Escalation via unshare Followed by Root Process.
Detecting anomalous unshare usage without a root transition
Some namespace abuse is worth surfacing before any root transition, in
particular, container escapes, where the goal is the host rather than uid 0.
This form keys on unshare execution itself, filtered down to the parents that
don’t legitimately use it.
process where host.os.type == "linux" and event.type == "start" and
event.action in ("exec", "exec_event", "start", "executed") and
process.name: "unshare"
The standalone unshare rule differs from the sequence rules by needing no root transition at all, which makes it a broader hunting and triage signal (and a noisier one), useful for the escape-to-host case that the correlation rules would never see. This maps to Namespace Manipulation Using Unshare.
GTFOBins abuse: Privilege escalation from a misconfigured SUID bit
The last category is the plain misconfiguration end of the spectrum: a binary
that shouldn’t be setuid-root is, and dropping to a root shell is a one-liner
straight out of GTFOBins. There’s no CVE or exploit chain, just a privilege that
was granted and then abused.
Detecting known GTFOBins binaries running as root
A large, curated set of interactive-capable binaries (find, gdb, vim, dd, nmap,
and many more) can spawn a shell or run a command, and when any of them ships
setuid-root, that’s instant root. As this is a known list, we can use a large
allowlist to detect this activity. We again use the ID versus real ID
correlation to detect the execution of the SUID binary, in conjunction with a
known SUID binary and a set of known noisy exclusions. The process listing is
ordered from A-Z.
process where event.type == "start" and event.action == "exec" and (
(process.user.id == 0 and process.real_user.id != 0) or
(process.group.id == 0 and process.real_group.id != 0)
) and
process.name in (
"aa-exec", "ab", "agetty", "alpine", "ar", "arj", "arp", "as",
"ascii-xfr", "ash", "aspell", "atobm",
"base32", "base64", "basenc", "basez", "bc", "bridge", "busctl", "busybox",
[...]
"xdotool", "xmodmap", "xmore", "xxd", "xz",
"yash",
"zsh", "zsoelim"
)
This is the highest-volume, best-understood class, and a maintained name list keeps it cheap to run. It maps to Potential Privilege Escalation via SUID Binary.
Detecting GTFOBins edge cases: Capabilities and copied shells
While having this one allowlisted rule catches a lot of known bad behavior, it
doesn’t suffice in scenarios where a capability, such as cap_setuid bit, is set
instead of just a +s bit, or when a shell is copied to another directory and run
from there. To catch some of these edge cases, we have several other rules in
place:
Shell Privileged Mode from Non-Standard Path with Root Effective User
Potential Root Effective Shell from Non-Standard Path via Auditd
With this general layer in place, we’ll now take a look at some of 2026’s LPEs. For each showcased technique, we explain how it works, run and validate the detection of the public PoC, and note the rules that fire (the general-flow rules above, plus anything technique-specific).
Testing the framework against 11 public proof-of-concept exploits
To test whether this model survives changes in implementation, we ran 11 public
exploit PoCs and two SUID misconfiguration cases. The summary records the first
useful signal from each run, the privileged effect the test reached, and the
rules that best explain the chain.
“No distinct precursor alert” means that the run produced no alert identifying the kernel primitive before the privileged effect. It does not mean that the PoC generated no userland activity.
Page-cache and zero-copy corruption |
|---|
Copy Fail: CVE-2026-31431 · AF_ALG AEAD page-cache corruptionObserved path: AF_ALG socket() and splice() burst → cached /usr/bin/su corrupted → su executes with root effective UID. Key alerts: Potential Copy Fail (CVE-2026-31431) Exploitation via AF_ALG Socket; Suspicious SUID/SGID Utility Execution. |
DirtyFrag: CVE-2026-43284 / CVE-2026-43500 · ESP or RxRPC page-cache corruptionObserved path: No distinct primitive alert in this run → shared page-cache fragments reach in-place processing → /bin/su executes with root effective UID. Key alerts: Potential Privilege Escalation via a Parent/Child Process Sequence; Suspicious SUID Binary Execution; Suspicious SUID/SGID Utility Execution. |
Fragnesia skb_segment() variant: related to CVE-2026-46300 · GRO/GSO fragment-marker lossObserved path: Local compilation and network activity → skb_segment() loses the shared-fragment marker → ESP-in-TCP modifies cached /usr/bin/su and the corrupted image executes. Key alerts: Potential Privilege Escalation via Recently Compiled Executable; Network Connection via Recently Compiled Executable; UID Elevation from Previously Unknown Executable. |
DirtyDecrypt / DirtyCBC: CVE-2026-31635 · RxGK in-place decryptionObserved path: Local compilation; PoC creates user and network namespaces internally → AF_RXRPC and splice() place file-backed pages in the decrypt path → /usr/bin/su produces the privileged shell in this test. Key alerts: General Privilege Escalation Sequence Detected; Potential Privilege Escalation via Recently Compiled Executable; Potential Privilege Escalation via SUID/SGID Proxy Execution. |
pedit COW: CVE-2026-46331 · tc act_pedit partial COWObserved path: PoC calls unshare() internally and configures act_pedit through Netlink → write extends beyond the copied region → cached su entry point is replaced and execution yields a root shell. Key alerts: UID Elevation from Previously Unknown Executable; Potential Privilege Escalation via a Suspicious UID Change; Potential Privilege Escalation via SUID/SGID Proxy Execution. |
DirtyClone Python port: CVE-2026-43503 · TEE clone and ESP page-cache corruptionObserved path: Python PoC executes from a user-controlled directory → cloned socket buffer loses SKBFL_SHARED_FRAG → Python uid_change to 0 observed. Key alerts: Potential Privilege Escalation via Python Exploit; public SIEM counterpart: Suspicious UID Change to Root via Python. For DirtyClone, confirm whether the observed uid_change represented host root or namespace-mapped root before describing it as completed host escalation. |
Namespace and trusted-helper exploitation |
|---|
CIFSwitch: CVE-2026-46243 · CIFS origin validation and trusted helperObserved path: unshare creates a hostile mount namespace → forged cifs.spnego request launches root-owned cifs.upcall → helper loads attacker-controlled NSS code and writes a sudoers rule. Key alerts: Namespace Manipulation Using Unshare; Suspicious Path Mounted; Sudoers File Activity. |
OVSwrap: CVE-2026-64531 · OVS nested Netlink length truncationObserved path: unshare -Urn provides namespace-local CAP_NET_ADMIN → wrapped nla_len enables kernel read and decrement primitives → host writer creates a passwordless sudo rule and launches sudo -n bash. Key alerts: Namespace Manipulation Using Unshare; Passwordless Sudo Probing; Suspicious UID Change to Root via Python. |
Ptrace_may_dream: CVE-2026-46333 · Exit-time FD theft and AccountsService abuseObserved path: busctl --system call triggers AccountsService activity → pidfd_getfd() race duplicates a root-authenticated D-Bus socket → account shell, password, and administrator status are changed before su/sudo yields root. Key alerts: Potential Privilege Escalation via Busctl System Call; File Creation in World-Writable Directory by Unusual Process. |
Privileged file-descriptor theft |
|---|
Ssh-keysign-pwn: CVE-2026-46333 · Exit-time FD theftObserved path: Recently compiled PoC repeatedly starts SUID-root ssh-keysign → races pidfd_getfd() during process exit → duplicates and reads one SSH host private-key descriptor; no root shell. Key alerts: Suspicious SUID Binary Execution; Potential Privilege Escalation via a Parent/Child Process Sequence; Potential Privilege Escalation via Recently Compiled Executable. |
Chage_pwn: CVE-2026-46333 · Exit-time FD theftObserved path: PoC repeatedly starts chage -l → races pidfd_getfd() after privilege drop → duplicates the open /etc/shadow descriptor and reads the file; no root shell. Key alerts: Potential Shadow Read via Unprivileged User. |
SUID misconfiguration |
|---|
SUID find -exec: No CVE · SUID misconfigurationObserved path: Root-owned SUID find executes /bin/sh -p through -exec → shell retains root effective UID. Key alert: Privilege Escalation via SUID/SGID. |
Privileged Bash with -p: No CVE · SUID misconfigurationObserved path: System Bash is copied to a non-standard path and configured SUID-root → bash -p preserves the elevated effective UID → root-capable shell. Key alerts: System Binary Copied or Moved; Shell Privileged Mode from Non-Standard Path with Root Effective User. |
With the general layer in place, the public PoCs become a validation set. We don’t need every exploit to look the same. We need the alerts to tell the same story: an unprivileged process prepares the ground and crosses a trust boundary, and then a root process appears.
Sometimes the earliest signal is a kernel primitive, such as AF_ALG plus splice(), and other times it’s namespace setup with unshare. Sometimes the trigger is quiet, and the only clean signal is the finish: a SUID helper, a Python process, or a shell suddenly running with effective uid 0. That’s the point of layering. Each PoC enters through a different door, but the investigation keeps folding back into the same model: precursor, root transition, and privileged execution.
Kernel page-cache and zero-copy corruption: The Copy Fail bug class
The page-cache corruption variants are the clearest example of why per-CVE
detection is too narrow. Linux uses zero-copy paths, such as splice() and
sendfile(), to move file-backed page-cache pages through kernel subsystems
without copying them. When one of those subsystems writes in place without first
honoring copy-on-write, an unprivileged user can corrupt the in-memory image of
a privileged file. The file on disk may remain clean, but the cached version of
/usr/bin/su, /bin/su, or another privileged target is no longer the version that
the system administrator expects.
The lineage runs from DirtyCOW and Dirty Pipe into the 2026 wave: Copy Fail, DirtyFrag, DirtyClone, Fragnesia, pedit COW, and related variants. The interfaces differ, but the defender’s problem is the same. We want to catch the primitive where it’s stable, and we want to catch the privileged outcome when the primitive isn’t visible enough.
Copy Fail (CVE-2026-31431)
Copy Fail is the cleanest place to start because it gives us both sides of the
story. The public PoC chains an AF_ALG socket with splice() to land a controlled
write into a page-cache page and then uses that corruption against a privileged
file. Public technical write-ups describe the vulnerable path as the authencesn
AEAD implementation mishandling input manipulated through splice(), producing
page-cache corruption through the crypto API.
In Kibana, this gives us a rare luxury: detection of the primitive and of the finish. The auditd layer can catch the non-root process producing a burst of socket(AF_ALG) calls interleaved with splice(), while Elastic Defend catches the behavioral outcome when the corrupted privileged file is executed.

The screenshot shows the expected mix: Potential Copy Fail (CVE-2026-31431) Exploitation via AF_ALG Socket alongside multiple SUID/SGID detections spread across security information and event management (SIEM) and EDR, where Suspicious SUID/SGID Utility Execution is the main EDR rule that fires when su runs with elevated effective privileges. This is the ideal case for layered detection; the kernel-specific signal tells us which exploit family we’re probably looking at, and the general-flow rules confirm that the host actually crossed into root.
DirtyFrag (CVE-2026-43284)
DirtyFrag is a useful counterexample. It reaches the same page-cache corruption
outcome, but it doesn’t look like Copy Fail on the wire. Public research
describes DirtyFrag as chaining the xfrm-ESP Page-Cache Write issue (CVE-2026-43284),
with the RxRPC Page-Cache Write issue (CVE-2026-43500). The common failure is
that shared socket-buffer fragments can reach in-place writers without the
kernel first forcing a safe copy.
That changes the detection story. We shouldn’t expect the AF_ALG rule to fire, because this is no longer the Copy Fail primitive. What remains stable is the finish. In the lab run, the exploit process drives the corruption, and then /bin/su appears with root effective privileges, while the real user remains non-root.

The screenshot shows the general layer doing the work: Suspicious SUID Binary Execution, Potential Privilege Escalation via a Parent/Child Process Sequence, and the Elastic Defend Suspicious SUID/SGID Utility Execution alert. The trigger changed, but the host still had to execute a privileged binary in a suspicious lineage.
The full auditd configuration and queries for the AF_ALG and DirtyFrag primitive coverage are in the Copy Fail and DirtyFrag research. The next variants keep the same page-cache finish but move the trigger into different kernel interfaces.
Fragnesia (CVE-2026-46300)
Fragnesia is close enough to DirtyFrag that it belongs right next to it, but it
adds a useful detection angle because the public PoC leaves more endpoint
exhaust. The PoC targets skb_segment() in net/core/skbuff.c. During Generic
Segmentation Offload (GSO) segmentation, skb_segment() propagates SKBFL_SHARED_FRAG
from the head skb but not from a frag_list member that carries page-cache-backed
fragments. Once that marker is lost, the resulting skbs can pass the ESP skip_cow
guard and be decrypted in place over page-cache pages. The trigger is networking-heavy,
namespaces, veth pairs, send(), splice(), Generic Receive Offload (GRO)
coalescing, GSO segmentation, and an ESP-in-TCP receiver, but the primitive is
the same shape we keep seeing: a controlled page-cache write that’s iterated
until a SUID binary is corrupted and a root shell appears.

In Kibana, this one is louder than DirtyClone and more endpoint-friendly than a pure syscall primitive. The screenshot shows ./skb_segment_exploit driving the setup, followed by /usr/bin/su as the privileged finish. The alerts line up with that story. Two unique rules that triggered are related to the compilation of this exploit on the host, right before execution, and the fact that this exploit makes local network connections:
This is followed by similar SIEM and EDR rules triggering on the general LPE process:
Potential Privilege Escalation via SUID/SGID Proxy Execution (EDR and SIEM)
Potential Privilege Escalation via a Parent Process Sequence
File Creation in World-Writable Directory by Unusual Process
That’s the right detection outcome for this variant. We don’t need a narrow rule named after skb_segment() to get useful coverage. The kernel trigger is specialized and timing-sensitive, but the exploit still has to stage from a user-controlled context, exercise an unusual local networking path, corrupt a privileged target, and pivot through a SUID helper. The general-flow rules capture the root transition, while the recently compiled executable, world-writable file, network, and SUID/SGID alerts provide the analyst with sufficient context to recognize the Fragnesia-style path.
DirtyDecrypt / DirtyCBC (CVE-2026-31635)
DirtyDecrypt, also called DirtyCBC by the PoC authors, is another Copy Fail–style page-cache write, but the abused interface moves into RxRPC. The repository describes it as an rxgk page-cache write caused by a missing copy-on-write guard in rxgk_decrypt_skb(). The PoC comments spell out the failure mode: rxgk_decrypt_skb() builds an skb scatterlist and calls into Kerberos decryption without first forcing a safe copy, while the krb5enc AEAD template decrypts in place before the HMAC check. When the skb fragments are backed by page-cache pages, the failed decrypt still corrupts the cached file data.
In practice, this looks like a sibling of DirtyFrag rather than of Copy Fail. There’s no AF_ALG burst to lean on. The PoC sets up user and network namespaces, drives the RxRPC path over loopback, splices file-backed pages into the packet path, and repeatedly fires the decrypt primitive until the target bytes land. The checked PoC then targets a readable SUID-root binary, such as /usr/bin/su, backs it up under /tmp, corrupts the in-memory image with a tiny setuid(0) plus /bin/sh payload, and executes the target.

The screenshot shows the same layered outcome that we’ve seen across the page-cache family. The exploit process is ./dirtydecrypt, launched from a user-controlled working directory, and the privileged finish is /usr/bin/su. Coverage comes from the general-flow and SUID layers:
Potential Privilege Escalation via SUID/SGID Proxy Execution (EDR and SIEM)
Potential Privilege Escalation via Recently Compiled Executable
File Creation in World-Writable Directory by Unusual Process
Potential Privilege Escalation via a Parent Process Sequence
DirtyDecrypt moves the primitive into RxRPC and Kerberos-style in-place decrypt, but the endpoint story is still familiar: a recently compiled local PoC stages from a writable path, corrupts a privileged file-backed page, and pivots through a SUID helper.
pedit COW (CVE-2026-46331)
pedit COW moves the same failure mode into traffic control. Instead of crypto sockets or ESP/RxRPC paths, the abused interface is the tc packet-editing action, act_pedit. The kernel computes a copy-on-write range before the edit loop, but that calculation can miss the runtime offset used by typed keys, leaving part of the write region outside the copied area. The result is another page-cache corruption path. NVD describes the issue as net/sched: fix pedit partial COW leading to page cache corruption, where tcf_pedit_act() computes the COW range once before the key loop and can leave part of the write region un-COW’d.
pedit COW looks nothing like Copy Fail in telemetry. There’s no AF_ALG burst. The PoC needs the traffic-control path and typically begins by obtaining namespace-local networking capability, such as CAP_NET_ADMIN, through unshare. From the detection side, that means we lean on the namespace precursor and the root outcome.

The screenshot shows this clearly. Some of the interesting alerts are the broader signals: file creation in a world-writable directory, UID elevation from a previously unknown executable, suspicious UID change, parent-process escalation, and SUID/SGID proxy execution. There’s currently no per-CVE tc rule, but the layered model still catches the behavior that matters: a user-controlled process sets up the path, corrupts the privileged image, and pivots into root execution.
DirtyClone (CVE-2026-43503)
DirtyClone is the quietest of the page-cache examples in the endpoint view. The bug sits in the Linux networking stack, where socket-buffer fragment transfer helpers fail to preserve the SKBFL_SHARED_FRAG marker. When that marker is lost, later in-place writers can treat shared, file-backed memory as private and write into page-cache-backed data. NVD describes CVE-2026-43503 as missing propagation of SKBFL_SHARED_FRAG through helpers such as __pskb_copy_fclone() and skb_shift(), which can let an unprivileged user write into the page cache of a root-owned read-only file through later in-place writers.
In our run, the public PoC doesn’t give us a loud, stable userland primitive to key on. It’s Python-driven, runs from a user-controlled working directory, and crosses into root. That makes it a perfect test for the general-flow layer.

The screenshot shows one alert: Potential Privilege Escalation via Python Exploit. That may look sparse compared to Copy Fail, but it’s an important result. It means that the framework still produced a signal when the implementation didn’t expose a useful per-CVE tell. We can enrich later if a stable syscall or interface pattern emerges, but we don’t need to wait for that to detect the root transition.
Taken together, the page-cache examples show the full range. Copy Fail gives us primitive-plus-outcome. DirtyFrag and Fragnesia show the same corruption model moving through networking paths, where SKB fragment handling, zero-copy, and in-place ESP processing do the damage. pedit COW moves the idea into traffic control. DirtyClone shows why the outcome layer has to stand on its own when the kernel trigger is quiet.
Exploits that start with unshare: CIFSwitch and OVSwrap
The next set of PoCs looks different because the attacker first changes the privilege context around the process. A large family of Linux LPEs begins with unshare(CLONE_NEWUSER), which gives an ordinary user capabilities inside a new namespace. Those namespace-local capabilities open kernel code paths in networking, filesystems, and mounts that weren’t designed with untrusted local users in mind.
This is also where kernel bugs and userspace helpers start to blur together. Some exploits use unshare to reach a kernel primitive. Others use it to build a hostile filesystem or mount namespace and then trick a privileged helper into trusting what it sees. For detection, unshare is valuable because it happens early and repeats across otherwise unrelated techniques.
CIFSwitch (CVE-2026-46243)
CIFSwitch is a trusted-helper bug reached through the kernel. The PoC abuses a missing validation in the cifs.spnego key type: an attacker calls request_key() with a forged key description, causing the kernel to invoke the root-owned cifs.upcall helper with attacker-controlled fields. With upcall_target=app, the helper enters the attacker's mount namespace and performs a getpwuid() lookup before dropping privileges: loading an attacker-controlled Network Security Services (NSS) library and executing code as root.
The important part is the handoff. The exploit starts with unshare to build the hostile namespace and then relies on a privileged helper to finish the escalation. That gives us several detection opportunities before and during the root transition.

The screenshot shows the expected spread:
That’s the right shape for this technique. We aren’t depending on a rule named after CIFSwitch. We’re catching the setup, the suspicious namespace behavior, the mount activity, and the root transition. If the helper changes, the early namespace signal and the general escalation rules still give us coverage.
OVSwrap (CVE-2026-64531)
OVSwrap is a good example of the other side of namespace-based privilege escalation. Unlike CIFSwitch, where the namespace is used to construct an environment that a privileged userspace helper later trusts, OVSwrap uses a private user and network namespace to reach a vulnerable kernel interface directly. An ordinary user can run unshare -Urn, gain CAP_NET_ADMIN over the newly created network namespace, and create a private Open vSwitch (OVS) datapath without needing host-level CAP_NET_ADMIN.
The vulnerability is in the kernel's OVS action handling. OVS accepts nested Netlink actions from userspace and expands them into an internal action stream, but the nla_len field describing an individual Netlink attribute is only 16 bits wide. Before the fix, a generated nested action could grow beyond 65,535 bytes without being rejected. The stored length would wrap, causing later OVS parsing to resume from attacker-controlled data inside the generated action stream. The public PoC uses this to construct kernel read and targeted decrement primitives, locate a host-side process and its credentials, and modify its fsuid and fsgid until the process can write as root.
The endpoint story is particularly useful for detection because the kernel primitive itself is complex, but the setup and finish are not. The PoC is Python-driven and creates a private namespace with unshare; after corrupting the host-side writer's credentials, it writes a passwordless sudo rule and executes sudo -n bash.

In the lab run, this produced the following alerts:
Potential Shadow File Read via Command Line Utilities (manual validation activity)
This is exactly the kind of exploit where the layered approach pays off. We don’t need an endpoint rule that understands malformed OVS CLONE actions, conntrack expansion, forged tunnel metadata, or the kernel decrement primitive. Instead, we see the stable behavior around it: a Python PoC enters a new namespace, unshare exposes a privileged kernel networking path, the process crosses from an ordinary user context into host-root capabilities, and the exploit finishes through passwordless sudo.
OVSwrap therefore complements CIFSwitch nicely. Both begin with an unprivileged user creating namespaces, but what happens next is very different: CIFSwitch hands control to a privileged helper, while OVSwrap attacks the kernel's OVS datapath and directly corrupts host credentials. The implementation changes; the namespace precursor and root-transition layer remain useful.
Privileged D-Bus and policy helpers
Not every helper-based LPE starts with a namespace. Some go straight at the
services that grant controlled root access: sudo, polkit / pkexec, and
privileged services reachable over D-Bus. These components are heavily used and
well-audited, but they sit directly on the privilege boundary. One logic slip
can turn a normal user request into root execution.
The upside for defenders is that the actors are named. We can key on specific binaries, services, and command-line shapes, in addition to the general root-transition layer.
ptrace_may_dream (busctl abuse)
ptrace_may_dream is a good example of a helper path that’s precise in telemetry.
The technique talks to a privileged D-Bus system service directly with busctl.
The escalation is driven by an unprivileged user invoking busctl --system call
against a service that then performs a privileged action on the user’s behalf.
Because the tell is specific and rarely legitimate in normal workstation or server activity, detection can be tight.

The screenshot shows repeated Potential Privilege Escalation via Busctl System Call alerts, plus File Creation in a World-Writable Directory by Unusual Process. That’s a different detection shape from the page-cache examples, but the same investigation logic applies: suspicious precursor, privileged service interaction, and a path toward root-controlled behavior.
Privileged file-descriptor theft from trusted helpers
The previous examples all end in something easy to recognize: a process becomes
root, a privileged service acts, or a SUID binary hands the user a shell. This
pattern is slightly different. The attacker doesn’t need the helper to execute a
command. They need it to open something privileged, drop credentials, and die
slowly enough that the file descriptor can be stolen.
That’s the core of CVE-2026-46333. The bug sits in the kernel’s __ptrace_may_access() path. During process exit, there’s a short window when a task has already dropped its memory image but still has open file descriptors. Paired with pidfd_getfd(), that window lets an unprivileged process duplicate descriptors from a dying privileged process when the credential checks line up. Qualys described the impact as both credential disclosure and root-code-execution potential, with case studies against chage, ssh-keysign, pkexec, and accounts-daemon.
For defenders, this is an important variation on the normal LPE flow. A successful exploit may never create an obvious root shell. Instead, root-only material leaves the boundary: SSH host private keys, /etc/shadow, or an authenticated privileged IPC connection. The detection strategy, therefore, has to widen slightly. We still care about suspicious SUID/SGID execution and parent-child escalation, but we also care about non-root processes entering sensitive group context, especially from user-writable or freshly compiled paths.
ssh-keysign-pwn (CVE-2026-46333)
ssh-keysign-pwn targets OpenSSH’s ssh-keysign helper. The helper is interesting
because it opens SSH host private keys before dropping privileges. The public
PoC repeatedly spawns ssh-keysign, opens a pidfd for the child, races pidfd_getfd()
across likely file descriptors, and checks whether any duplicated descriptor
points to an ssh_host_*_key file. The repository describes the target directly:
sshkeysign_pwn pulls SSH host private keys, while chage_pwn pulls /etc/shadow.

In the screenshot, the parent process is the user-controlled ./sshkeysign_pwn binary, and the privileged child is /usr/lib/openssh/ssh-keysign. The privilege shape is exactly what the SUID/SGID layer is built for: ssh-keysign runs with user.id:0, while the real user remains 1000, and the parent is a recently compiled executable in the user’s working directory. This results in the following rules triggering:
Potential Privilege Escalation via a Parent/Child Process Sequence
Potential Privilege Escalation via Recently Compiled Executable
That’s enough to make the alert useful, even though the payload is a stolen descriptor, not a shell. The endpoint doesn’t have to prove that the SSH host key was printed to stdout. The host already showed the suspicious relationship that matters: a local PoC repeatedly drove a SUID-root helper that briefly held root-only secrets.
chage_pwn (CVE-2026-46333)
chage_pwn uses the same kernel primitive against a different helper and a more
directly dangerous file. chage -l <user> opens account-aging data, including /etc/shadow,
and then drops privileges. The PoC forks chage, opens a pidfd for the child,
races pidfd_getfd() over candidate descriptors, looks for a duplicated
descriptor pointing at /etc/shadow, and then reads from that descriptor.

This one is useful because it validates a slightly different detection idea. The screenshot shows repeated Potential Shadow Read via Unprivileged User alerts on ./chage_pwn root. The process is still running as the unprivileged user, but the meaningful transition is group-based: the process enters shadow context from a user-controlled executable path.
Plain SUID and SGID misconfiguration
The last examples are deliberately simple. A binary that shouldn’t be SUID-root
is SUID-root, and the user runs it in the way that GTFOBins has documented for
years. It’s the same finish we saw in the page-cache family, just without the
corruption step. Copy Fail, DirtyFrag, pedit COW, and similar bugs often end by
making a privileged binary behave like an attacker-controlled SUID helper.
GTFOBins abuse starts there.
SUID abuse example: Root shell via find -exec
find can execute commands with -exec. When find is SUID-root, that executed
command inherits the elevated context.

The screenshot shows that find runs with root effective privileges, while the real user is non-root, and the command line includes the shell execution path. The alert is Privilege Escalation via SUID/SGID.
Privileged-mode shell: Root from bash -p
Shells usually drop elevated privileges unless told not to. The -p flag keeps
the privileged effective identity. If a SUID-root shell exists, or if a root-owned
copy of bash is placed somewhere unusual with the SUID bit set, launching it
with -p drops the caller directly into a root-capable shell.

The screenshot shows two useful detections: System Binary Copied or Moved, followed by Shell Privileged Mode from Non-Standard Path with Root Effective User. First, a system binary was copied into an unusual location (which is specific to how we set up this technique). Then the copied shell was executed in privileged mode.
This is the simplest form of the same pattern that we’ve been following throughout the section. A user-controlled path, a privileged execution context, and a root-capable process. Whether the attacker got there through AF_ALG, ESP/RxRPC, act_pedit, unshare, D-Bus, or a bad SUID bit, the endpoint story is still recognizable.
What this Linux privilege escalation detection framework covers
In this edition of our "Linux Detection Engineering" series, we built a layered
framework for Linux local privilege escalation. The first layer detects the
default flow every escalation shares: an unprivileged process executing from a
writable path and becoming root, whether through a SUID helper, a self-elevating
exploit, a suspicious descendant reaching root, a full exec-elevate-confirm
sequence, a root shell from a nonstandard path, or an interpreter one-liner. The
second layer adds bug-class coverage across the kernel page-cache corruption
family, namespaces and capabilities, trusted-helper abuse, sudo and polkit,
privileged D-Bus services, and plain SUID/SGID misconfiguration.
The value of this framework is durability. The 2026 surge produced many new CVEs, but they largely reused a handful of ideas and all ended in the same observable root transition, so outcome-oriented detection held up as the PoCs multiplied. It doesn’t claim to catch every possible LPE, but it gives defenders broad, resilient coverage of how escalations actually behave and a clear place to slot in each new technique as it appears.
September 2026 Microsoft Patch Tuesday
|
Description |
|||||||
|---|---|---|---|---|---|---|---|
|
CVE |
Disclosed |
Exploited |
Exploitability (old versions) |
current version |
Severity |
CVSS Base (AVG) |
CVSS Temporal (AVG) |
|
.NET Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
.NET Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
.NET and Visual Studio Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
.NET and Visual Studio Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
ASP.NET Core Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
Active Directory Certificate Services (AD CS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Active Directory Certificate Services (AD CS) Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Active Directory Certificate Services (AD CS) Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Active Directory Domain Services Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Active Directory Federation Services (AD FS) Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
Audio Video Control Transport Protocol Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Azure AI Language Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
10.0 |
8.7 |
|
|
Azure Arc SQL Server Extension Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Azure Cosmos DB Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.5 |
7.4 |
|
|
Azure CycleCloud Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.7 |
6.7 |
|
|
Azure HDInsight Ambari Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.2 |
6.5 |
|
|
BranchCache Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Connected Devices Platform Service (Cdpsvc) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Connected User Experiences and Telemetry Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Copilot Studio Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.3 |
8.1 |
|
|
Data Sharing Service Client Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
DirectWrite Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Entra ID Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.9 |
8.6 |
|
|
GitHub Copilot and Visual Studio Code Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.3 |
4.6 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Graphic Fonts Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Graphic Fonts Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Graphics Kernel Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
HEIF Image Extensions Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
HEVC Video Extensions Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
HEVC Video Extensions Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
HID Class Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
IP Helper Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
Internet Connection Sharing (ICS) Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Internet Storage Name Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Kernel Streaming WOW Thunk Service Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Account Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Account Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Authentication Library (MSAL) for Node.js Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.4 |
6.4 |
|
|
Microsoft Authenticator Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.6 |
7.5 |
|
|
Microsoft Azure Active Directory B2C Elevation of Privilege
Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
10.0 |
8.7 |
|
|
Microsoft Azure CLI Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Microsoft COM for Windows Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Microsoft COM for Windows Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft DirectMusic Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Microsoft Discovery Studio Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.4 |
6.4 |
|
|
Microsoft Dynamics 365 On-Premises Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Entra ID Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.1 |
7.9 |
|
|
Microsoft Excel Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Excel Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Exchange Server Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Microsoft Exchange Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
9.1 |
7.9 |
|
|
Microsoft Exchange Server Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
Microsoft Exchange Server Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Exchange Server Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.3 |
8.1 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Exchange Server Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Fabric Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.5 |
7.4 |
|
|
Microsoft Failover Cluster Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
Microsoft Graphics Component Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Graphics Component Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Install Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Microsoft JScript Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Microsoft Local Security Authority (LSA) Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Office Access Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.3 |
6.4 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Office Excel Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Office Excel Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Office Graphics Component Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Microsoft Office Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Office Outlook Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
|||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Office Outlook Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
|||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Microsoft Office PowerPoint Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Office PowerPoint Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
|||
|
Microsoft Office Publisher Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Office Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Office SharePoint Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft Office SharePoint Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
3.5 |
3.1 |
|
|
Microsoft Office SharePoint Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Microsoft Office SharePoint Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.3 |
6.4 |
|
|
No |
No |
- |
- |
Important |
7.3 |
6.4 |
|
|
No |
No |
- |
- |
Important |
3.5 |
3.1 |
|
|
No |
No |
- |
- |
Important |
4.6 |
4.0 |
|
|
Microsoft Office Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Office Word Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.0 |
4.4 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
|||
|
No |
No |
- |
- |
Important |
|||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Office Word Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft OpenSSH for Windows Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Microsoft Power Automate Desktop Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Microsoft PowerShell Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Remote Desktop App for Windows Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Microsoft SQL Server Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft SQL Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.6 |
8.3 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft SQL Server Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft SQL Server Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.5 |
7.4 |
|
|
No |
No |
- |
- |
Important |
8.5 |
7.4 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.5 |
7.4 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
4.9 |
4.3 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft SQL Server Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Standard XPS Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Microsoft Standard XPS Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Standard XPS Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Microsoft Storage Port Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Teams for Android Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
No |
No |
- |
- |
Important |
5.8 |
5.1 |
|
|
Microsoft Trace Data Helper Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft UxTheme Library (uxtheme.dll) Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Microsoft VOLSNAP.SYS Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Microsoft WDAC OLE DB provider for SQL Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Microsoft WebP Image Extension Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Microsoft Windows Media Foundation Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Microsoft Windows PDF Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Microsoft Windows SCSI Class System File Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Microsoft Windows SCSI Class System File Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.6 |
4.0 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Microsoft Windows Search Component Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Microsoft Windows Search Component Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Windows Search Component Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Windows Speech Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Microsoft Windows Speech Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Microsoft Word Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Power Automate Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.5 |
7.4 |
|
|
PowerShell Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Push Message Routing Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
RPC Runtime Library Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Raw Image Extension Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Remote Desktop Client Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Remote Desktop Gateway Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Remote Desktop Licensing Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Remote Desktop ServicesRemote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Role: Windows Fax Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
SQL Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
SQL Server Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Skype for Business Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Skype for Business Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Skype for Business Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
8.3 |
7.2 |
|
|
Skype for Business and Lync Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Spring Cloud Azure Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.0 |
7.8 |
|
|
Storage Spaces Controller Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Telnet Client Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Virtual Hard Disk (VHD) Miniport Driver Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Virtual Hard Disk (VHD) Miniport Driver Elevation of Privilege Vulernability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Virtual Hard Disk (VHD) Miniport Driver Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
Visual Studio Code Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.4 |
6.4 |
|
|
Visual Studio Code Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.4 |
6.4 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.2 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.2 |
7.1 |
|
|
No |
No |
- |
- |
Important |
9.6 |
8.3 |
|
|
No |
No |
- |
- |
Important |
8.2 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.2 |
7.1 |
|
|
Visual Studio Code Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Visual Studio Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Volume Manager Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Volume Shadow Copy Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Web Media Extensions Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Win32k Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.6 |
4.9 |
|
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows AF_UNIX Socket Provider Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows ALPC Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
Windows Accounts Control Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Active Directory Domain Services Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Active Directory Domain Services Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows Advanced Local Procedure Call (ALPC) Elevation of Privilege Vulnerability |
|||||||
|
No |
Yes |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Ancillary Function Driver for WinSock Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows Audio Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Authentication Methods Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Autopilot Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Bind Filter Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Biometric Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Biometric Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows BitLocker Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Windows BitLocker Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
Windows Bluetooth Port Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Bluetooth Port Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
Windows Bluetooth Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Boot Manager Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Windows Broadcast DVR User Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Broker Infrastructure Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows CD-ROM Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows CD-ROM Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
4.6 |
4.0 |
|
|
Windows Camera Frame Server Monitor Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Cloud Files Mini Filter Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Cloud Files Mini Filter Driver Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Compressed Folder Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Compressed Folder Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows Compressed Folder Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Windows Connected User Experiences and Telemetry Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows Container Manager Service Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
Windows Core Messaging Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Credential Guard Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
Windows Credential Providers Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Credential Providers Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows DCOM Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows DHCP Client Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows DHCP Client Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Windows DHCP Server Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows DHCP Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Windows DHCP Server Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
Windows DHCP Server Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
6.4 |
5.6 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
6.4 |
5.6 |
|
|
No |
No |
- |
- |
Important |
6.4 |
5.6 |
|
|
Windows DNS Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
Windows DNS Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
Windows DNS Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows DNS Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
Windows DNS Server Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.9 |
5.2 |
|
|
Windows DNS Server Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
Windows DNS Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows DWM Core Library Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows Defender Firewall Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Defender Firewall Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Deployment Services Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
Windows Device Association Broker Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Device Association Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Device Health Attestation (DHA) Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
7.5 |
|
|
Windows Devices Human Interface Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Direct Show Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Windows Display Enhancement Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Distributed File System (DFS) Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.3 |
4.6 |
|
|
Windows Distributed File System (DFS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Embedded Mode Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Encrypting File System (EFS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Encrypting File System (EFS) Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Enterprise App Management Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Error Reporting Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Error Reporting Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Error Reporting Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows Event Logging Service Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Failover Cluster Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.4 |
5.6 |
|
|
Windows Failover Cluster Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Fast FAT Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Windows Fast FAT Driver Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.4 |
6.4 |
|
|
Windows File History Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
6.4 |
5.6 |
|
|
Windows GDI Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows GDI+ Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Windows GDI+ Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Graphics Component Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows Group Policy Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Windows HTTP Print Provider Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Windows HTTP.sys Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows Hello Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
Windows Hello Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
4.4 |
3.9 |
|
|
Windows Host Guardian Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Hyper-V Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
Windows Hyper-V Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows IP Address Management (IPAM) Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Image Acquisition Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Image Acquisition Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
Windows Imaging Component Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Imaging Component Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Installer Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Internet Connection Sharing (ICS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Internet Connection Sharing (ICS) Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Internet Key Exchange (IKE) Extension Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Internet Key Exchange (IKE) Protocol Extensions Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Kerberos Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Kerberos Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Kerberos Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows Kernel Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Kernel Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Kernel Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Kernel-Mode Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Key Distribution Center Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Key Distribution Center Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows LDAP - Lightweight Directory Access Protocol Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows License Manager Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows License Manager Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Link Layer Topology Discovery Protocol Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows MIDI Service Module Elevation of Privileges Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows MIDI Service Module Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Management Instrumentation Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
6.4 |
5.6 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Management Instrumentation Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Management Services Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Media Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Media Player Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows Message Queuing Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Message Queuing Queue Manager Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Message Queuing Queue Manager Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Message Queuing Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows Mobile Broadband Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Modern Device Management (MDM) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Modern Device Management (MDM) Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Modern Execution Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows NDIS Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows NFS Portmapper Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows NTFS Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
No |
No |
- |
- |
Important |
8.4 |
7.3 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows NTFS Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows NTFS Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Important |
8.4 |
7.3 |
|
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
No |
No |
- |
- |
Important |
8.4 |
7.3 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Windows NTFS Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
Windows Netlogon Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Windows Netlogon Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Network Connection Broker Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Network Connection Broker Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Network File System Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Network File System Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Notification Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows OLE DB Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows OLE DB Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Online Certificate Status Protocol (OCSP) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Overlay Filter Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
Windows Overlay Filter Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
4.8 |
4.2 |
|
|
Windows Paint Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows Partition Management Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Partition Management Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Performance Monitor Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Power Dependency Coordinator Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Power Dependency Coordinator Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Print Spooler Components Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Print Spooler Components Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Print Spooler Components Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Print Spooler Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows PrintWorkflowUserSvc Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows Program Compatibility Assistant Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Program Compatibility Assistant Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Push Notifications Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows RNDIS Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.6 |
4.0 |
|
|
Windows RNDIS Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Windows Registry Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows Reliable Multicast Transport Driver (RMCAST) Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.1 |
7.1 |
|
|
Windows Remote Access Connection Manager Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Remote Access Connection Manager Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Remote Access Connection Manager Tampering Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Remote Desktop Client Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows Remote Desktop Client Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
Windows Remote Desktop Licensing Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Remote Desktop Protocol Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Remote Desktop Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows Remote Desktop Services Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Remote Desktop Services Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Resilient File System (ReFS) Deduplication Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Resilient File System (ReFS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Routing and Remote Access Service (RRAS) Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows Routing and Remote Access Service (RRAS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Routing and Remote Access Service (RRAS) Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Critical |
8.8 |
7.7 |
|
|
Windows SMB Client Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows SMB Client Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows SMB Client Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows SMB Server Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows SMB Server Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows SMB Server Network Transport Driver (srvnet.sys) Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Schannel Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.3 |
4.6 |
|
|
Windows Schannel Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Secure Boot Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.4 |
3.9 |
|
|
Windows Secure Kernel Mode Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
Windows Secure Socket Tunneling Protocol (SSTP) Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
Windows Secure Socket Tunneling Protocol (SSTP) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Secure Socket Tunneling Protocol (SSTP) Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Windows Security Center Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Security Health Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Server Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Services for NFS ONCRPC XDR Driver Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Services for NFS ONCRPC XDR Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Services for NFS ONCRPC XDR Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Services for NFS ONCRPC XDR Driver Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
No |
No |
- |
- |
Critical |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Windows Setup Files Cleanup Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Shell Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Shell Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
9.8 |
8.5 |
|
|
Windows Shell Spoofing Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows Smart Card Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Spaceport.sys Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Spaceport.sys Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.7 |
5.0 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows Spaceport.sys Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Storage Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Storage Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.3 |
3.8 |
|
|
Windows Storage Management Provider Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Storage Port Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.6 |
4.0 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Storage Spaces Controller Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Storage Spaces Controller Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows TCP/IP Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows TCP/IP Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
Windows TCP/IP Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.5 |
6.5 |
|
|
Windows Task Scheduler Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Text Shaping Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Text Shaping Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.1 |
7.1 |
|
|
Windows URL Moniker Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows URL Moniker Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.3 |
3.8 |
|
|
Windows USB Audio Class Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows USB Audio Class driver (usbaudio.sys) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
6.6 |
5.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows USB Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows USB Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows USB Hub Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Windows USB Mass Storage Class Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.8 |
5.9 |
|
|
Windows USB Mass Storage Class Driver Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows USB Mass Storage Class Driver Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Windows USB Video Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Critical |
8.2 |
7.1 |
|
|
Windows Universal Disk Format File System Driver (UDFS) Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
7.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
7.8 |
|
|
Windows Universal Plug and Play (UPnP) Device Host Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Update Stack Elevation of Privilege Vulnerability |
|||||||
|
No |
Yes |
- |
- |
Important |
7.8 |
7.2 |
|
|
Windows VHD miniport driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows VOLSNAP.SYS Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Virtual Trusted Platform Module Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.5 |
6.5 |
|
|
Windows Virtualization-Based Security (VBS) Enclave Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
7.8 |
6.8 |
|
|
Windows Virtualization-Based Security (VBS) Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Critical |
5.5 |
4.8 |
|
|
Windows Volume Manager Extension Driver Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Volume Manager Extension Driver Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Web Platform Storage Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows WebClient Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Win32K Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.7 |
4.1 |
|
|
Windows Win32k Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.1 |
6.2 |
|
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows Wireless Networking Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Wireless Wide Area Network Service Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
5.5 |
4.8 |
|
|
Windows Work Folder Service Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.0 |
6.1 |
|
|
Windows Work Folder Service Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows Work Folders Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Windows exFAT File System Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.0 |
7.0 |
|
|
Windows iSCSI Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Windows iSCSI Remote Code Execution Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
No |
No |
- |
- |
Important |
8.8 |
7.7 |
|
|
Windows iSCSI Security Feature Bypass Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
9.8 |
8.5 |
|
|
Windows iSCSI Target Service Denial of Service Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.5 |
5.7 |
|
|
Winsock Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
6.7 |
5.8 |
|
|
Xbox Gaming Services Elevation of Privilege Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
7.8 |
6.8 |
|
|
Xbox Information Disclosure Vulnerability |
|||||||
|
No |
No |
- |
- |
Important |
4.3 |
3.8 |
|
ApApple today released updates for iOS/iPadOS (26 and 18) and macOS 26. This update fixes 108 vulnerabilities and comes about two weeks after the much smaller macOS update that addressed the single screen-sharing vulnerability. This vulnerability did not affect iOS/iPadOS.
None of the vulnerabilities has been exploited so far. There are a few WebKit vulnerabilities, but no standalone Safari patch for older operating systems. 87 of the vulnerabilities affect only iOS 18, making this more of an iOS 18 release than one for the newer operating systems. Only six vulnerabilities affect all three OSs released today. All 6 vulnerabilities affect WebKit.
Apple's vulnerability summary notes that the vulnerabilities patched in today's VisionOS release will be enumerated at a later date.
|
iOS 26.6.1 and iPadOS 26.6.1 |
iOS 18.7.10 and iPadOS 18.7.10 |
macOS Tahoe 26.6.2 |
|---|---|---|
|
CVE-2026-28958: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-28973: A
malicious app may be able to break out of its sandbox. |
||
|
|
x |
|
|
CVE-2026-28984: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-28990: Processing
a maliciously crafted image may corrupt process memory. |
||
|
|
x |
|
|
CVE-2026-28996: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-39868: An app
may be able to cause unexpected system termination or corrupt kernel
memory. |
||
|
|
x |
|
|
CVE-2026-39877: An app
may be able to disclose kernel memory. |
||
|
|
x |
|
|
CVE-2026-43661: Processing
a maliciously crafted image may corrupt process memory. |
||
|
|
x |
|
|
CVE-2026-43663: Processing
maliciously crafted web content may lead to an unexpected process
crash. |
||
|
|
x |
|
|
CVE-2026-43667: An
attacker in a privileged network position may be able to cause a
denial-of-service. |
||
|
|
x |
|
|
CVE-2026-43673: Processing
a maliciously crafted audio file may corrupt process memory. |
||
|
|
x |
|
|
CVE-2026-43676: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-43700: Processing
maliciously crafted web content may disclose sensitive user
information. |
||
|
|
x |
|
|
CVE-2026-43701: A
malicious website may be able to process restricted web content
outside the sandbox. |
||
|
|
x |
|
|
CVE-2026-43705: Processing
maliciously crafted web content may lead to memory corruption. |
||
|
|
x |
|
|
CVE-2026-43708: A
malicious website may exfiltrate data cross-origin. |
||
|
|
x |
|
|
CVE-2026-43711: Processing
a maliciously crafted video file may lead to unexpected app
termination. |
||
|
|
x |
|
|
CVE-2026-43714: A
malicious app may be able to access protected user data. |
||
|
|
x |
|
|
CVE-2026-43717: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-43720: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-43722: An app
may be able to leak sensitive kernel state. |
||
|
|
x |
|
|
CVE-2026-43723: An app
may be able to gain root privileges. |
||
|
|
x |
|
|
CVE-2026-43724: An app
may be able to cause unexpected system termination or write kernel
memory. |
||
|
|
x |
|
|
CVE-2026-43725: A
malicious website may be able to process restricted web content
outside the sandbox. |
||
|
|
x |
|
|
CVE-2026-43727: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-43729: Processing
a maliciously crafted image may corrupt process memory. |
||
|
|
x |
|
|
CVE-2026-43731: Processing
maliciously crafted web content may lead to memory corruption. |
||
|
|
x |
|
|
CVE-2026-43735: A
malicious website may exfiltrate data cross-origin. |
||
|
|
x |
|
|
CVE-2026-43738: Processing
a maliciously crafted asset catalog may result in disclosure of
process memory. |
||
|
|
x |
|
|
CVE-2026-43742: Processing
maliciously crafted web content may lead to an unexpected process
crash. |
||
|
|
x |
|
|
CVE-2026-43744: Processing
an audio stream in a maliciously crafted media file may terminate
the process. |
||
|
|
x |
|
|
CVE-2026-43745: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-43754: An app
may be able to leak sensitive kernel state. |
||
|
|
x |
|
|
CVE-2026-43757: An app
may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-43769: An app
may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-43776: Processing
a maliciously crafted file may lead to unexpected app termination or
arbitrary code execution. |
||
|
|
x |
|
|
CVE-2026-43778: An app
may be able to cause unexpected system termination or corrupt kernel
memory. |
||
|
|
x |
|
|
CVE-2026-43794: Processing
maliciously crafted web content may lead to memory corruption. |
||
|
x |
x |
x |
|
CVE-2026-43796: An app
may be able to read a persistent device identifier. |
||
|
|
x |
|
|
CVE-2026-43797: An app
may be able to access information about a user's contacts. |
||
|
|
x |
|
|
CVE-2026-43800: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-43801: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-43802: An app
may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-43803: A
remote attacker may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-43807: A
malicious accessory may be able to cause unexpected app termination. |
||
|
|
x |
|
|
CVE-2026-43810: A
remote user may be able to cause unexpected system termination or
corrupt kernel memory. |
||
|
|
x |
|
|
CVE-2026-43811: An app
may be able to modify protected parts of the file system. |
||
|
|
x |
|
|
CVE-2026-43812: An app
may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-43818: Processing
a maliciously crafted image may lead to arbitrary code execution. |
||
|
|
x |
|
|
CVE-2026-43821: An app
may be able to read files outside of its sandbox. |
||
|
|
x |
|
|
CVE-2026-64692: An app
may be able to cause a denial-of-service. |
||
|
|
x |
|
|
CVE-2026-64693: Processing
a maliciously crafted image may lead to a denial-of-service. |
||
|
|
x |
|
|
CVE-2026-64695: A
remote user may be able to cause unexpected system termination or
corrupt kernel memory. |
||
|
|
x |
|
|
CVE-2026-64700: An app
may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-64707: An app
may be able to delete files for which it does not have permission. |
||
|
|
x |
|
|
CVE-2026-64709: An app
may be able to disclose kernel memory. |
||
|
|
x |
|
|
CVE-2026-64715: Processing
maliciously crafted web content may lead to an unexpected process
crash. |
||
|
x |
|
x |
|
CVE-2026-64719: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-64721: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-64722: Processing
a 3D model may result in disclosure of process memory. |
||
|
|
x |
|
|
CVE-2026-64723: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-64724: An
attacker on the local network may be able to cause a denial-of-service. |
||
|
|
x |
|
|
CVE-2026-64725: An app
may be able to cause a denial-of-service. |
||
|
|
x |
|
|
CVE-2026-64726: An
attacker in physical proximity may be able to corrupt process
memory. |
||
|
|
x |
|
|
CVE-2026-64732: An
attacker with physical access may be able to access sensitive user
data during iPhone Mirroring. |
||
|
|
x |
|
|
CVE-2026-64734: Processing
a maliciously crafted contact may leak sensitive data. |
||
|
|
x |
|
|
CVE-2026-64735: A
remote attacker may be able to bypass network filters. |
||
|
|
x |
|
|
CVE-2026-64738: A
malicious app may be able to break out of its sandbox. |
||
|
|
x |
|
|
CVE-2026-64739: An
attacker may be able to cause unexpected app termination. |
||
|
|
x |
|
|
CVE-2026-64740: A
malicious app may be able to break out of its sandbox. |
||
|
|
x |
|
|
CVE-2026-64742: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-64743: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-64744: An app
may be able to disclose kernel memory. |
||
|
|
x |
|
|
CVE-2026-64746: An app
may be able to add contacts without user authorization. |
||
|
|
x |
|
|
CVE-2026-64747: An app
may be able to execute arbitrary code with kernel privileges. |
||
|
|
x |
|
|
CVE-2026-64749: An app
may be able to cause unexpected system termination or corrupt kernel
memory. |
||
|
|
x |
|
|
CVE-2026-64755: An app
may be able to access sensitive user data. |
||
|
|
x |
|
|
CVE-2026-64757: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-64760: An app
may be able to leak sensitive kernel state. |
||
|
|
x |
|
|
CVE-2026-64762: An app
may be able to cause unexpected system termination. |
||
|
|
x |
|
|
CVE-2026-64763: Processing
a maliciously crafted file may lead to unexpected app termination or
arbitrary code execution. |
||
|
|
x |
|
|
CVE-2026-64764: Processing
a maliciously crafted file may lead to unexpected app termination or
arbitrary code execution. |
||
|
|
x |
|
|
CVE-2026-64765: Processing
a maliciously crafted file may lead to unexpected app termination or
arbitrary code execution. |
||
|
|
x |
|
|
CVE-2026-64768: A
remote attacker may cause an unexpected app termination. |
||
|
|
x |
|
|
CVE-2026-64769: A
remote attacker may be able to cause unexpected application
termination or heap corruption. |
||
|
|
x |
|
|
CVE-2026-64771: A
remote attacker may be able to cause unexpected application
termination or heap corruption. |
||
|
|
x |
|
|
CVE-2026-64772: A
remote attacker may be able to cause unexpected application
termination or heap corruption. |
||
|
|
x |
|
|
CVE-2026-64774: A
remote attacker may be able to cause unexpected application
termination or heap corruption. |
||
|
|
x |
|
|
CVE-2026-64778: Visiting
a maliciously crafted website may leak sensitive data. |
||
|
x |
x |
x |
|
CVE-2026-64779: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
x |
x |
|
CVE-2026-64780: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
x |
x |
|
CVE-2026-64781: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
x |
x |
|
CVE-2026-64782: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
x |
x |
|
CVE-2026-64784: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
|
x |
|
CVE-2026-64787: Processing
maliciously crafted web content may lead to an unexpected process
termination. |
||
|
x |
|
x |
|
CVE-2026-64788: Processing
maliciously crafted web content may lead to memory corruption. |
||
|
x |
|
x |
|
CVE-2026-65329: An
attacker in a privileged network position may be able to bypass
IPSec authentication and intercept network traffic. |
||
|
x |
|
|
|
CVE-2026-65330: An app
may be able to cause unexpected system termination or corrupt kernel
memory. |
||
|
x |
|
x |
|
CVE-2026-65331: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
|
x |
|
CVE-2026-65334: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
|
x |
|
CVE-2026-65338: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
x |
|
x |
|
CVE-2026-65339: An app
may be able to leak sensitive user information. |
||
|
x |
|
x |
|
CVE-2026-65340: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
||
|
|
x |
|
|
CVE-2026-65341: Processing
maliciously crafted web content may lead to memory corruption. |
||
|
x |
x |
x |
|
CVE-2026-65343: A
remote attacker may be able to cause unexpected system termination. |
||
|
x |
|
x |
|
CVE-2026-65346: Processing
an image may lead to arbitrary code execution. |
||
|
x |
|
x |
|
CVE-2026-65347: Processing
an image may lead to a denial-of-service. |
||
|
x |
|
x |
|
CVE-2026-65349: An app
may be able to cause unexpected system termination or read kernel
memory. |
||
|
x |
|
x |
About 20 years ago, with macOS 10.5 (Leopard), Apple introduced screen sharing. Apple did not invent a new protocol for screen sharing. Instead, it used the established VNC protocol. VNC is a pretty simple, unencrypted protocol using TCP port 5900. Historically, the protocol used a simple global password for authentication. Apple adapted the protocol for its own use, but overall, left the VNC protocol itself alone.
A couple of weeks ago, two severe vulnerabilities exposed issues Apple introduced when it bolted on its own modifications to VNC. Currently, these vulnerabilities are being exploited, and a system with screen sharing exposed should be considered compromised. But here are some tips to improve screen sharing security.
One weakness exposed by these recent vulnerabilities is Apple's support for both "regular" VNC authentication and authentication via Apple's own macOS authentication system.

Apple does allow old-fashioned VNC authentication by defining a VNC password. If this authentication scheme is used, a VNC client is prompted only for a password, not a username. The client may then ask for permission to use the screen, or they will be presented with an OS login prompt. This can be useful if you are trying to provide remote support to a logged-in user. But it does provide access to the system without any strong authentication. Access should still be secured by local user credentials, but the process already runs with elevated privileges to allow access for any user who logs in. This contributed to a recent vulnerability.
Next, you can restrict which users can remotely access the system. This should be restricted to allow only users who need remote access to connect.
Access to screen sharing can also be controlled via macOS's built-in firewall. But the settings are not always clear. Just enabling the firewall is not sufficient.

If "Automatically allow built-in software" is enabled, the firewall will allow access to screen sharing. The same is true for "Automatically allow downloaded signed software". Even if "stealth mode" is enabled, screen sharing is still available. You may also select "Block all incoming connections", which will block everything, even applications you approved in the past.
Here are a few command-line tips to secure the system (this is for macOS 26; prior versions use slightly different syntax)
# use this to check the current firewall state
# /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
# turn firewall on
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate on
# turn stealth mode on to not respond to pings
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setstealthmode on
# do not allow signed binaries
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setallowsigned off
# disable filesharing
sudo launchctl disable system/com.apple.smbd
# disable screensharing
sudo launchctl disable system/com.apple.screensharing
A script like this is handy if you need to switch from your internal network to a public one. VNC access should always happen via a VPN. SSH forwarding works well with VNC. Other solutions, like Tailscale, are easy to use if you need VNC for remote support.
Linux Kernel Process Accounting
A couple of days ago, Xavier posted about Atuin to gain more insight into the command history. Atuin does a great job of better organizing what is usually handled by "bash_history" and collecting meaningful additional data. Our reader David commented that this can also be done quite well with Linux's kernel process accounting feature, and I think he is very right. I really like Linux process accounting for a number of reasons, so here is a quick introduction.
Process accounting is a kernel feature. You will not see a specific process responsible for it. Instead, the "accton" command signals the kernel to start logging process data to a specific location (usually /var/log/account/pacct). Once a process terminates, the kernel will log respective details to the binary log file.
1
- Installation
I don't think process accounting is enabled by default on any Linux system. It
does add a little additional overhead, but some users may shy away from it
because it requires additional disk writes to collect the information. Memory
and other CPUs should not be significantly impacted by process accounting. On my
not very busy Proxmox system, it uses about 50 MB/day of disk space. So nothing
that should be noticeable for most systems.
Installation usually comes down to installing the respective package for your distribution. On Debian based distributions, it is just
apt install acct
This will typically also configure the startup scripts, but it can't hurt to run
systemctl enable --now acct
That is it. Wait a little bit, and you will see the log.
2
- How to read the logs
Logs are saved in a binary format. The "lastcomm" command can be used to display
the log in a readable format. For example:
ip6tables-save S root __ 0.00 secs Wed Aug 12 06:25
iptables-restor S root __ 0.00 secs Wed Aug 12 06:25
iptables-save S root __ 0.00 secs Wed Aug 12 06:25
check_ssh 100107 __ 0.00 secs Wed Aug 12 06:25
cron F 100000 __ 0.00 secs Wed Aug 12 06:25
sh S 100000 __ 0.00 secs Wed Aug 12 06:25
debian-sa1 100000 __ 0.00 secs Wed Aug 12 06:25
These are a few lines from my Proxmox server. It logs the process name, Flags (S=super user, F=forked process, D=generated core dump, X=terminated by signal), User name (or ID), CPU execution time, and finally the timestamp at which the process was started. The output may be modified slightly depending on the command-line arguments used.
3
- Remote Logging
Unlike most Linux logs, these logs are not created by syslog. However, you may
still read them with syslog to forward them to a central log collector/SIEM.
Syslog-ng for example include a "s_pacct" processor for process accounting logs.
You enable it with this configuration:
source s_pacct {
pacct(file("/var/log/account/pacct"));
};
4
- Other useful tools
The "sa" command can be used to easily extract summaries from accounting data.
For example, a breakdown by CPU time used by different processes
#
sa -c | head -10
329063 100.00% 259245.37re 100.00% 70.29cp 100.00% 0avio 24320k
469 0.14% 55.38re 0.02% 52.65cp 74.90% 0avio 124752k ffmpeg
488 0.15% 5.43re 0.00% 4.57cp 6.51% 0avio 5338k apt-get
2820 0.86% 3.60re 0.00% 3.34cp 4.74% 0avio 13295k ceph
1231 0.37% 1.96re 0.00% 1.92cp 2.73% 0avio 1974k ps
312 0.09% 1907.83re 0.74% 1.36cp 1.93% 0avio 88176k named
7 0.00% 39483.07re 15.23% 0.76cp 1.08% 0avio 6348k systemd-journal
123 0.04% 34804.71re 13.43% 0.34cp 0.48% 0avio 20367k ***other*
8 0.00% 0.68re 0.00% 0.27cp 0.38% 0avio 3926k store
366 0.11% 0.58re 0.00% 0.26cp 0.36% 0avio 2235k dpkg-deb*
5
- Containers
Process accounting is a kernel feature, and the kernel must be compiled and
configured to support process accounting. If you are running Linux containers in
Proxmox (the platform I am using), process accounting will not work unless the
container is privileged. But it does not have to work. The container processes
are logged by the host, which I think is actually better. This way, the logs are
more easily centralized, and they can't be tampered with from inside the
container.
6
- Conclusion
I think Linux kernel process accounting is a very neat and often overlooked
feature. You may be able to do more fine-grained inspection with eBPF, but
process accounting is "ready to go and useful" with little work. It does not log
command line options, which may be an issue in incident response. But it is a
very good supplement to other features like bash_history files, and it captures
processes that bash_history would never see.
Microsoft Patch Tuesday August 2026
This month we got patches for 418 vulnerabilities. Of these, 62 are critical, 1 is being exploited in the wild, and 2 were publicly disclosed as zero-days. Notable fixes include Windows privilege escalation, container tampering, and critical QUIC and DNS Server remote code execution bugs.
A few vulnerabilities worth mentioning:
Windows Ancillary Function Driver for WinSock
Elevation of Privilege Vulnerability (CVE-2026-68820)
This Important-severity elevation of privilege vulnerability is listed by
Microsoft as exploited in the wild but not publicly disclosed, and it has a CVSS
score of 7.0. The flaw is a use-after-free issue in the Windows Ancillary
Function Driver for WinSock affecting supported Windows client and server
versions; a locally authenticated attacker with low privileges could run a
specially crafted application to trigger a race condition and, if successful,
gain SYSTEM privileges. The CVSS vector reflects local access, low privileges
required, no user interaction, and high attack complexity because exploitation
requires winning that race condition. Administrators should prioritize applying
the relevant Windows security updates, particularly on systems where local code
execution by untrusted users is possible, and monitor for suspicious
privilege-escalation activity.
Windows User Profile Service Elevation of
Privilege Vulnerability (CVE-2026-62832)
Microsoft says this vulnerability has been publicly disclosed but has not been
exploited in the wild, making it a zero-day disclosure without confirmed
exploitation at this time. Rated Important with a CVSS score of 7.8, this
Windows User Profile Service flaw is an improper link resolution, or “link
following,” issue that could allow a local authenticated attacker to elevate
privileges. To exploit it, an attacker would need credentials for another local
account and could run a specially crafted application to load another user’s
registry hive; successful exploitation could allow access to or modification of
another user’s data and ultimately grant administrator privileges. User
interaction is not required. Administrators should prioritize applying the
Microsoft security updates across affected Windows 10, Windows 11, Windows
Server 2022, and Windows Server 2025 systems, and should also limit local
account reuse and monitor for unusual registry hive loading or profile service
activity.
Windows Container Isolation FS Filter Driver (unionfs.sys)
Tampering Vulnerability (CVE-2026-72971)
This vulnerability was publicly disclosed before Patch Tuesday, making it a
zero-day, but Microsoft says it has not been exploited in the wild; it is rated
Important with a CVSS score of 5.5. The flaw is an improper link-resolution, or
“link following,” issue in the Windows Container Isolation file system filter
driver, unionfs.sys, affecting Windows 11 Version 26H1 on x64 and ARM64 systems.
A local, authenticated attacker could exploit it with low complexity and no user
interaction to tamper with files, resulting in high integrity impact, though
Microsoft rates confidentiality and availability impact as none. Administrators
should apply the Windows updates that correct the driver’s link-handling
behavior, particularly on systems using Windows containers or container
isolation features.
Microsoft QUIC Remote Code Execution
Vulnerability (CVE-2026-62815)
This Critical Microsoft QUIC remote code execution vulnerability is not listed
as exploited in the wild or publicly disclosed. It carries a CVSS score of 9.8
and is a use-after-free flaw that could allow an unauthenticated remote attacker
to send a specially crafted packet to an affected service over the network and
execute code on the target system, with no user interaction required. Affected
platforms include Windows 11 and Windows Server 2022/2025, including Server Core
installations. Administrators should prioritize applying the Microsoft update,
especially on systems exposing QUIC-enabled services to untrusted networks, and
consider limiting network exposure where patching cannot be completed
immediately.
Windows DNS Server Remote Code Execution
Vulnerability (CVE-2026-62878)
Microsoft reports that CVE-2026-62878 is neither exploited in the wild nor
publicly disclosed; it is a Critical Windows DNS Server remote code execution
vulnerability with a CVSS score of 9.8. The flaw is a stack-based buffer
overflow in Windows DNS that can be triggered remotely by an unauthenticated
attacker sending a specially crafted packet to an affected service over the
network, with no user interaction required, potentially allowing code execution
on the target DNS server. Affected systems include multiple Windows Server
releases from 2012 through 2025, as well as listed Windows 10 versions where the
vulnerable component is present. Administrators should apply Microsoft’s
security updates promptly, especially on DNS servers, and reduce exposure by
limiting DNS service access to trusted networks where possible, blocking
unnecessary inbound traffic at firewalls, and monitoring DNS servers for crashes
or anomalous traffic patterns.
This was a summary of Microsoft’s monthly updates highlighting some important vulnerabilities. Prioritize the exploited WinSock privilege-escalation flaw, then the publicly disclosed User Profile Service and unionfs.sys issues, and patch internet-exposed QUIC services and DNS servers quickly due to remote code execution risk.
A detailed list of this month's vulnerabilities follows below. To search and filter them, visit my dashboard: https://patchlens.io
| Description | |||||||
|---|---|---|---|---|---|---|---|
| CVE | Disclosed | Exploited | Exploitability (old versions) | current version | Severity | CVSS Base (AVG) | CVSS Temporal (AVG) |
| .NET Core Remote Code Execution Vulnerability | |||||||
| CVE-2026-70354 | No | No | - | - | Important | 7.8 | 6.8 |
| .NET Denial of Service Vulnerability | |||||||
| CVE-2026-62901 | No | No | - | - | Important | 7.5 | 6.5 |
| .NET Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62909 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-58641 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62871 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62886 | No | No | - | - | Important | 7.8 | 6.8 |
| .NET Framework Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62872 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-65810 | No | No | - | - | Important | 7.8 | 6.8 |
| .NET Framework Remote Code Execution Vulnerability | |||||||
| CVE-2026-62897 | No | No | - | - | Important | 7.0 | 6.1 |
| .NET Information Disclosure Vulnerability | |||||||
| CVE-2026-62900 | No | No | - | - | Important | 5.9 | 5.2 |
| CVE-2026-62902 | No | No | - | - | Important | 6.5 | 5.7 |
| .NET Security Feature Bypass Vulnerability | |||||||
| CVE-2026-62899 | No | No | - | - | Important | 5.9 | 5.2 |
| AMD Zen Information Disclosure Vulnerability | |||||||
| CVE-2026-59130 | No | No | - | - | Important | 5.6 | 4.9 |
| CVE-2026-59131 | No | No | - | - | Important | 5.6 | 4.9 |
| Active Directory Security Feature Bypass Vulnerability | |||||||
| CVE-2026-65777 | No | No | - | - | Important | 5.3 | 4.6 |
| Application Information Services Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61357 | No | No | - | - | Important | 7.8 | 6.8 |
|
Application Insights
Profiler Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-49163 | No | No | - | - | Critical | 8.8 | 7.7 |
|
Azure Active Directory
Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-50481 | No | No | - | - | Critical | 9.9 | 8.6 |
|
Azure Confidential
Ledger Remote Code Execution Vulnerability (no customer action required) |
|||||||
| CVE-2026-68823 | No | No | - | - | Critical | 9.1 | 7.9 |
| Azure CycleCloud Elevation of Privilege Vulnerability | |||||||
| CVE-2026-70340 | No | No | - | - | Important | 8.1 | 7.1 |
| Azure CycleCloud Information Disclosure Vulnerability | |||||||
| CVE-2026-65806 | No | No | - | - | Important | 6.5 | 5.7 |
|
Azure Entra ID
Spoofing Vulnerability (no customer action required) |
|||||||
| CVE-2026-62869 | No | No | - | - | Critical | 8.8 | 7.7 |
|
Azure Logic Apps
Information Disclosure Vulnerability (no customer action required) |
|||||||
| CVE-2026-56161 | No | No | - | - | Critical | 9.6 | 8.3 |
| Azure Monitor Agent Elevation of Privilege Vulnerability | |||||||
| CVE-2026-47299 | No | No | - | - | Important | 7.2 | 6.3 |
|
Azure SQL Database
Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-63522 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-56162 | No | No | - | - | Critical | 10.0 | 8.7 |
|
Azure SQL Managed
Instance Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-62836 | No | No | - | - | Critical | 8.7 | 7.6 |
|
Azure SRE Agent
Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-62830 | No | No | - | - | Critical | 9.9 | 8.6 |
|
Azure Service Bus
Remote Code Execution Vulnerability (no customer action required) |
|||||||
| CVE-2026-50515 | No | No | - | - | Critical | 9.9 | 8.6 |
| Azure Storage Explorer Elevation of Privilege Vulnerability | |||||||
| CVE-2026-57104 | No | No | - | - | Important | 8.8 | 7.7 |
| Capability Access Management Service (camsvc) Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62892 | No | No | - | - | Important | 7.0 | 6.1 |
| CoPilot Chat Security Feature Bypass Vulnerability | |||||||
| CVE-2026-65675 | No | No | - | - | Important | 7.1 | 6.2 |
|
Copilot Cowork
Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-59118 | No | No | - | - | Critical | 9.3 | 8.1 |
| Desktop Window Manager Elevation of Privilege Vulnerability | |||||||
| CVE-2026-65786 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65787 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65788 | No | No | - | - | Important | 7.0 | 6.1 |
| GitHub Copilot and Visual Studio Code Elevation of Privilege Vulnerability | |||||||
| CVE-2026-70335 | No | No | - | - | Important | 7.8 | 6.8 |
|
Microsoft 365 Admin
Center Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-62873 | No | No | - | - | Critical | 9.8 | 8.5 |
| Microsoft Access Remote Code Execution Vulnerability | |||||||
| CVE-2026-64906 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64912 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64908 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64914 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64920 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64919 | No | No | - | - | Important | 7.8 | 6.8 |
|
Microsoft Azure
Kubernetes Service Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-50516 | No | No | - | - | Critical | 9.4 | 8.2 |
| Microsoft COM for Windows Information Disclosure Vulnerability | |||||||
| CVE-2026-59136 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Defender for Endpoint for Mac Information Disclosure Vulnerability | |||||||
| CVE-2026-54123 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Digest Authentication Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62698 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft Dynamics 365 (On-Premises) Information Disclosure Vulnerability | |||||||
| CVE-2026-66301 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft Dynamics 365 On-Premises Remote Code Execution Vulnerability | |||||||
| CVE-2026-65815 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft Dynamics Business Central Information Disclosure Vulnerability | |||||||
| CVE-2026-40375 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft Entra Connect Elevation of Privilege Vulnerability | |||||||
| CVE-2026-65673 | No | No | - | - | Important | 7.8 | 6.8 |
|
Microsoft Entra
Provisioning Service Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-59115 | No | No | - | - | Critical | 9.9 | 8.6 |
| Microsoft Excel Information Disclosure Vulnerability | |||||||
| CVE-2026-68802 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-68808 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-68813 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70318 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70327 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-70328 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-68797 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-68799 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Excel Remote Code Execution Vulnerability | |||||||
| CVE-2026-65807 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-68793 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68794 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-68795 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68796 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68800 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68807 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68806 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68810 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68811 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68815 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68816 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-68798 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68801 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68803 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68804 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-68805 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68812 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68814 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-68817 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft Exchange Server Denial of Service Vulnerability | |||||||
| CVE-2026-62912 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft Exchange Server Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62910 | No | No | - | - | Important | 7.2 | 6.3 |
| CVE-2026-65813 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62911 | No | No | - | - | Critical | 8.0 | 7.0 |
| Microsoft Exchange Server Remote Code Execution Vulnerability | |||||||
| CVE-2026-62913 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft Exchange Server Security Feature Bypass Vulnerability | |||||||
| CVE-2026-62915 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft Exchange Server Spoofing Vulnerability | |||||||
| CVE-2026-62914 | No | No | - | - | Important | 7.3 | 6.4 |
| Microsoft High Performance Computing (HPC) Pack Elevation of Privilege Vulnerability | |||||||
| CVE-2026-59133 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft High Performance Computing (HPC) Pack Remote Code Execution Vulnerability | |||||||
| CVE-2026-59124 | No | No | - | - | Important | 9.8 | 8.5 |
| Microsoft Local Security Authority Server (lsasrv) Remote Code Execution Vulnerability | |||||||
| CVE-2026-62784 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft Office Elevation of Privilege Vulnerability | |||||||
| CVE-2026-68792 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft Office Graphics Component Information Disclosure Vulnerability | |||||||
| CVE-2026-63517 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62842 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-66809 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Office Graphics Component Remote Code Execution Vulnerability | |||||||
| CVE-2026-63513 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-63519 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-65664 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-63526 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-66807 | No | No | - | - | Critical | 7.8 | 6.8 |
| Microsoft Office Information Disclosure Vulnerability | |||||||
| CVE-2026-70315 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70314 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70317 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70323 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-63524 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-63529 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-64899 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Office Remote Code Execution Vulnerability | |||||||
| CVE-2026-63515 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-65657 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-65656 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65661 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-63532 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-63533 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64898 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-64903 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-64904 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64909 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-64910 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-64911 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-70130 | No | No | - | - | Critical | 8.4 | 7.3 |
| Microsoft Office SharePoint Spoofing Vulnerability | |||||||
| CVE-2026-57105 | No | No | - | - | Important | 8.0 | 7.0 |
| CVE-2026-70306 | No | No | - | - | Important | 9.3 | 8.1 |
| CVE-2026-70332 | No | No | - | - | Critical | 9.6 | 8.3 |
| Microsoft Office Word Information Disclosure Vulnerability | |||||||
| CVE-2026-63521 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70319 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-63528 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-63530 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-63531 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-64917 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-66806 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-66810 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Office Word Remote Code Execution Vulnerability | |||||||
| CVE-2026-63518 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-70311 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-63525 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-63527 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64905 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-64907 | No | No | - | - | Critical | 7.8 | 6.8 |
| CVE-2026-64915 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft OneDrive for MacOS Elevation of Privilege Vulnerability | |||||||
| CVE-2026-65680 | No | No | - | - | Important | 6.7 | 5.8 |
| Microsoft Outlook Remote Code Execution Vulnerability | |||||||
| CVE-2026-70329 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft Outlook Spoofing Vulnerability | |||||||
| CVE-2026-62882 | No | No | - | - | Important | 4.3 | 3.8 |
|
Microsoft Planetary
Computer Pro Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-63508 | No | No | - | - | Critical | 10.0 | 8.7 |
| Microsoft PowerPoint Remote Code Execution Vulnerability | |||||||
| CVE-2026-70313 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft PowerShell Remote Code Execution Vulnerability | |||||||
| CVE-2026-70337 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft PowerShell Security Feature Bypass Vulnerability | |||||||
| CVE-2026-70338 | No | No | - | - | Important | 7.8 | 6.8 |
|
Microsoft Purview
eDiscovery Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-65668 | No | No | - | - | Critical | 8.8 | 7.7 |
| Microsoft QUIC Information Disclosure Vulnerability | |||||||
| CVE-2026-62898 | No | No | - | - | Important | 7.5 | 6.5 |
| Microsoft QUIC Remote Code Execution Vulnerability | |||||||
| CVE-2026-62815 | No | No | - | - | Critical | 9.8 | 8.5 |
| Microsoft Remote Registry Service Denial of Service Vulnerability | |||||||
| CVE-2026-59138 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-61345 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft SharePoint Elevation of Privilege Vulnerability | |||||||
| CVE-2026-70324 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft SharePoint Remote Code Execution Vulnerability | |||||||
| CVE-2026-70321 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft SharePoint Server Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62827 | No | No | - | - | Critical | 8.8 | 7.7 |
| CVE-2026-70355 | No | No | - | - | Important | 7.3 | 7.3 |
| CVE-2026-64921 | No | No | - | - | Critical | 8.8 | 7.7 |
| CVE-2026-70326 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft SharePoint Server Information Disclosure Vulnerability | |||||||
| CVE-2026-62837 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft SharePoint Server Remote Code Execution Vulnerability | |||||||
| CVE-2026-63514 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-63520 | No | No | - | - | Important | 8.1 | 7.1 |
| CVE-2026-65658 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-65663 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-65665 | No | No | - | - | Critical | 8.8 | 7.7 |
| CVE-2026-64901 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-66805 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-66808 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft SharePoint Server Spoofing Vulnerability | |||||||
| CVE-2026-62829 | No | No | - | - | Important | 4.6 | 4.0 |
| CVE-2026-63516 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-64922 | No | No | - | - | Important | 4.6 | 4.0 |
| CVE-2026-65660 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-64897 | No | No | - | - | Important | 4.6 | 4.0 |
| CVE-2026-64900 | No | No | - | - | Important | 7.3 | 6.4 |
| CVE-2026-64902 | No | No | - | - | Important | 4.6 | 4.0 |
| CVE-2026-64916 | No | No | - | - | Important | 4.6 | 4.0 |
| CVE-2026-58639 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62839 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62917 | No | No | - | - | Important | 4.6 | 4.0 |
| Microsoft SharePoint Server Tampering Vulnerability | |||||||
| CVE-2026-63512 | No | No | - | - | Important | 6.5 | 5.7 |
|
Microsoft Teams
Elevation of Privilege Vulnerability (no customer action required) |
|||||||
| CVE-2026-62896 | No | No | - | - | Critical | 9.6 | 8.3 |
| CVE-2026-65667 | No | No | - | - | Critical | 10.0 | 8.7 |
| Microsoft Teams Remote Code Execution Vulnerability | |||||||
| CVE-2026-65768 | No | No | - | - | Important | 8.8 | 7.7 |
|
Microsoft Teams
Spoofing Vulnerability (no customer action required) |
|||||||
| CVE-2026-62918 | No | No | - | - | Critical | 7.5 | 6.5 |
| Microsoft Teams for Android and iOS Spoofing Vulnerability | |||||||
| CVE-2026-65767 | No | No | - | - | Important | 8.8 | 7.7 |
| Microsoft Teams iOS Information Disclosure Vulnerability | |||||||
| CVE-2026-65769 | No | No | - | - | Important | 6.5 | 5.7 |
| Microsoft Windows Cross Device Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-66804 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft Windows Search Component Information Disclosure Vulnerability | |||||||
| CVE-2026-59135 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Windows Storage Port Driver Elevation of Privilege Vulnerability | |||||||
| CVE-2026-65814 | No | No | - | - | Important | 7.8 | 6.8 |
| Microsoft Word Information Disclosure Vulnerability | |||||||
| CVE-2026-70310 | No | No | - | - | Important | 5.5 | 4.8 |
| Microsoft Word Remote Code Execution Vulnerability | |||||||
| CVE-2026-58651 | No | No | - | - | Important | 7.8 | 6.8 |
| Power BI Remote Code Execution Vulnerability | |||||||
| CVE-2026-65811 | No | No | - | - | Important | 8.8 | 7.7 |
| PowerShell Elevation of Privilege Vulnerability | |||||||
| CVE-2026-59119 | No | No | - | - | Important | 7.3 | 6.4 |
| PowerShell Information Disclosure Vulnerability | |||||||
| CVE-2026-58612 | No | No | - | - | Important | 7.4 | 6.4 |
| Powerpoint Information Disclosure Vulnerability | |||||||
| CVE-2026-68809 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70312 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70316 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70325 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70320 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-70322 | No | No | - | - | Important | 5.5 | 4.8 |
| RPC Runtime Library Remote Code Execution Vulnerability | |||||||
| CVE-2026-62781 | No | No | - | - | Important | 8.1 | 7.1 |
| Remote Access API Elevation of Privilege Vulnerability | |||||||
| CVE-2026-65671 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65672 | No | No | - | - | Important | 7.8 | 6.8 |
| Remote Access Management service/API (RPC server) Elevation of Privilege Vulnerability | |||||||
| CVE-2026-42976 | No | No | - | - | Important | 7.8 | 6.8 |
| Remote Desktop Client Remote Code Execution Vulnerability | |||||||
| CVE-2026-59134 | No | No | - | - | Important | 7.5 | 6.5 |
| CVE-2026-61352 | No | No | - | - | Important | 7.5 | 6.5 |
| CVE-2026-61363 | No | No | - | - | Important | 7.5 | 6.5 |
| CVE-2026-62824 | No | No | - | - | Critical | 8.8 | 7.7 |
| Remote Procedure Call Denial of Service Vulnerability | |||||||
| CVE-2026-54113 | No | No | - | - | Important | 7.5 | 6.5 |
| Virtual Hard Disk (VHD) Miniport Driver Elevation of Privilege Vulernability | |||||||
| CVE-2026-59125 | No | No | - | - | Important | 7.0 | 6.1 |
| Visual Studio Code Information Disclosure Vulnerability | |||||||
| CVE-2026-47285 | No | No | - | - | Important | 6.5 | 5.7 |
| Visual Studio Code Python Extension Security Feature Bypass Vulnerability | |||||||
| CVE-2026-54981 | No | No | - | - | Important | 7.8 | 6.8 |
| Visual Studio Code Remote Code Execution Vulnerability | |||||||
| CVE-2026-59113 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-69320 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-70336 | No | No | - | - | Important | 8.8 | 7.7 |
| Visual Studio Code Security Feature Bypass Vulnerability | |||||||
| CVE-2026-58650 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-69278 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-69306 | No | No | - | - | Important | 8.2 | 7.1 |
| Win32k Information Disclosure Vulnerability | |||||||
| CVE-2026-62746 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62798 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62743 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62786 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Accessibility Infrastructure (ATBroker.exe) Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61358 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Active Directory Certificate Services (AD CS) Remote Code Execution Vulnerability | |||||||
| CVE-2026-62818 | No | No | - | - | Critical | 8.8 | 7.7 |
| Windows Active Directory Domain Services Remote Code Execution Vulnerability | |||||||
| CVE-2026-49179 | No | No | - | - | Important | 8.8 | 7.7 |
| Windows Ancillary Function Driver for WinSock Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61348 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-68820 | No | Yes | - | - | Important | 7.0 | 6.1 |
| CVE-2026-70307 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Autopilot Elevation of Privilege Vulnerability | |||||||
| CVE-2026-65783 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-65779 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-65780 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-65778 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-65782 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-65781 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Backup Engine Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62908 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Bind Filter Driver Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61927 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-61934 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62705 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62722 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Cloud Files Mini Filter Driver Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62713 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62771 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Common Log File System Driver Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62728 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Container Isolation FS Filter Driver (unionfs.sys) Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62772 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Container Isolation FS Filter Driver (unionfs.sys) Information Disclosure Vulnerability | |||||||
| CVE-2026-62775 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Container Isolation FS Filter Driver (unionfs.sys) Tampering Vulnerability | |||||||
| CVE-2026-72971 | Yes | No | - | - | Important | 5.5 | 4.8 |
| Windows DHCP Client Denial of Service Vulnerability | |||||||
| CVE-2026-65785 | No | No | - | - | Important | 6.5 | 5.7 |
| Windows DHCP Client Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62755 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62736 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows DHCP Client Remote Code Execution Vulnerability | |||||||
| CVE-2026-61361 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows DHCP Server Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62812 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62761 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62776 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62803 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62807 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows DHCP Server Information Disclosure Vulnerability | |||||||
| CVE-2026-62718 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62715 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62716 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62742 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62745 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62720 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62714 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-62814 | No | No | - | - | Important | 6.5 | 5.7 |
| Windows DHCP Server Remote Code Execution Vulnerability | |||||||
| CVE-2026-62823 | No | No | - | - | Critical | 8.8 | 7.7 |
| Windows DNS Elevation of Privilege Vulnerability | |||||||
| CVE-2026-70304 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-70330 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-62769 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-62778 | No | No | - | - | Important | 8.1 | 7.1 |
| CVE-2026-62881 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-62883 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-65795 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-65797 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-65799 | No | No | - | - | Important | 6.7 | 5.8 |
| CVE-2026-65798 | No | No | - | - | Important | 6.7 | 5.8 |
| Windows DNS Server Remote Code Execution Vulnerability | |||||||
| CVE-2026-62787 | No | No | - | - | Important | 7.5 | 6.5 |
| CVE-2026-62817 | No | No | - | - | Critical | 8.8 | 7.7 |
| CVE-2026-62820 | No | No | - | - | Critical | 8.1 | 7.1 |
| CVE-2026-62878 | No | No | - | - | Critical | 9.8 | 8.5 |
| CVE-2026-65789 | No | No | - | - | Critical | 8.1 | 7.1 |
| CVE-2026-61920 | No | No | - | - | Important | 6.6 | 5.8 |
| Windows DWM Core Library Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61932 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62894 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62888 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows DWM Core Library Information Disclosure Vulnerability | |||||||
| CVE-2026-61933 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62703 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Defender Firewall Service Security Feature Bypass Vulnerability | |||||||
| CVE-2026-61936 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Deployment Services TFTP Server Remote Code Execution Vulnerability | |||||||
| CVE-2026-62893 | No | No | - | - | Critical | 9.8 | 8.5 |
| Windows Device Association Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62747 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62710 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Device Health Attestation (DHA) Remote Code Execution Vulnerability | |||||||
| CVE-2026-66802 | No | No | - | - | Critical | 8.1 | 7.1 |
| CVE-2026-71331 | No | No | - | - | Critical | 8.1 | 7.1 |
| Windows Display Enhancement Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61923 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Encrypting File System (EFS) Information Disclosure Vulnerability | |||||||
| CVE-2026-59128 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Event Logging Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-59126 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Event Logging Service Information Disclosure Vulnerability | |||||||
| CVE-2026-59137 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-61347 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows GDI Information Disclosure Vulnerability | |||||||
| CVE-2026-65662 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-61360 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows GDI+ Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62890 | No | No | - | - | Critical | 7.8 | 6.8 |
| Windows GDI+ Information Disclosure Vulnerability | |||||||
| CVE-2026-62709 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows GDI+ Remote Code Execution Vulnerability | |||||||
| CVE-2026-62822 | No | No | - | - | Critical | 8.8 | 7.7 |
| Windows Graphics Kernel Denial of Service Vulnerability | |||||||
| CVE-2026-62702 | No | No | - | - | Important | 6.8 | 5.9 |
| Windows Graphics Kernel Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61346 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62774 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows HTTP Protocol Stack Tampering Vulnerability | |||||||
| CVE-2026-62750 | No | No | - | - | Important | 6.5 | 5.7 |
| Windows HTTP.sys Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61937 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62753 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62735 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62739 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62741 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62811 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Hello Tampering Vulnerability | |||||||
| CVE-2026-61928 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Hyper-V Information Disclosure Vulnerability | |||||||
| CVE-2026-61368 | No | No | - | - | Important | 5.0 | 4.4 |
| Windows Imaging Component Information Disclosure Vulnerability | |||||||
| CVE-2026-62740 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Imaging Component Remote Code Execution Vulnerability | |||||||
| CVE-2026-54984 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Installer Elevation of Privilege Vulnerability | |||||||
| CVE-2026-59127 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61925 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-70344 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-70345 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-70346 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-70347 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61938 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62768 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65774 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Kerberos Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62754 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62766 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62773 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62752 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Kernel Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61930 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62737 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61929 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62708 | No | No | - | - | Important | 6.4 | 5.6 |
| CVE-2026-62749 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62780 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62788 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-65773 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Key Guard Elevation of Privilege Vulnerability | |||||||
| CVE-2026-66799 | No | No | - | - | Critical | 7.8 | 6.8 |
| Windows LDAP - Lightweight Directory Access Protocol Remote Code Execution Vulnerability | |||||||
| CVE-2026-62785 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-62795 | No | No | - | - | Important | 8.8 | 7.7 |
| Windows LUA File Virtualization Filter Driver Elevation of Privilege Vulnerability | |||||||
| CVE-2026-50472 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows License Manager Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62777 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows MIDI Service Module Elevation of Privileges Vulnerability | |||||||
| CVE-2026-62688 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62693 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Management Instrumentation Information Disclosure Vulnerability | |||||||
| CVE-2026-62738 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Management Services Denial of Service Vulnerability | |||||||
| CVE-2026-70348 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Message Queuing Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62719 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62717 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65790 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Modern Device Management (MDM) Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62707 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows NTFS Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62797 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62700 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62880 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows NTFS Information Disclosure Vulnerability | |||||||
| CVE-2026-61350 | No | No | - | - | Important | 4.6 | 4.0 |
| CVE-2026-62796 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-65784 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62793 | No | No | - | - | Important | 5.5 | 4.8 |
| CVE-2026-62887 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Narrator Braille Elevation of Privilege Vulnerability | |||||||
| CVE-2026-56174 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Network Address Translation (NAT) Spoofing Vulnerability | |||||||
| CVE-2026-56179 | No | No | - | - | Moderate | 8.3 | 7.2 |
| Windows Network Connection Broker Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61366 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Network File System Denial of Service Vulnerability | |||||||
| CVE-2026-68819 | No | No | - | - | Important | 5.9 | 5.2 |
| Windows Package Manager Elevation of Privilege Vulnerability | |||||||
| CVE-2026-68821 | No | No | - | - | Important | 7.3 | 6.4 |
| Windows Program Compatibility Assistant Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62696 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Projected File System Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62751 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Push Notifications Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62690 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Reliable Multicast Transport Driver (RMCAST) Remote Code Execution Vulnerability | |||||||
| CVE-2026-62816 | No | No | - | - | Critical | 8.8 | 7.7 |
| Windows Remote Access Connection Manager Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62783 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62758 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Remote Desktop Client Information Disclosure Vulnerability | |||||||
| CVE-2026-61924 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-61918 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-61921 | No | No | - | - | Important | 6.5 | 5.7 |
| Windows Remote Desktop Services Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61356 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61367 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62692 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61364 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61365 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Routing and Remote Access Service (RRAS) Remote Code Execution Vulnerability | |||||||
| CVE-2026-62819 | No | No | - | - | Critical | 8.1 | 7.1 |
| Windows SMB Client Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62799 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows SMB Client Information Disclosure Vulnerability | |||||||
| CVE-2026-62782 | No | No | - | - | Important | 6.5 | 5.7 |
| CVE-2026-65794 | No | No | - | - | Important | 6.5 | 5.7 |
| Windows SMBv3 Server Remote Code Execution Vulnerability | |||||||
| CVE-2026-62800 | No | No | - | - | Important | 8.8 | 7.7 |
| CVE-2026-62790 | No | No | - | - | Important | 8.8 | 7.7 |
| Windows Schannel Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62779 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Schannel Security Feature Bypass Vulnerability | |||||||
| CVE-2026-62757 | No | No | - | - | Important | 5.3 | 4.6 |
| Windows Secure Socket Tunneling Protocol (SSTP) Remote Code Execution Vulnerability | |||||||
| CVE-2026-62889 | No | No | - | - | Critical | 8.1 | 7.1 |
| Windows Sensor Data Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61355 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Shell Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62770 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Storage Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62695 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-61359 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows TCP/IP Denial of Service Vulnerability | |||||||
| CVE-2026-59132 | No | No | - | - | Important | 7.5 | 6.5 |
| Windows TCP/IP Remote Code Execution Vulnerability | |||||||
| CVE-2026-62792 | No | No | - | - | Important | 8.1 | 7.1 |
| Windows Telephony Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61353 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62723 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62724 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62748 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62729 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-59122 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62701 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62725 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62726 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62732 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62734 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows USB Driver Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61926 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Universal Disk Format File System Driver (UDFS) Remote Code Execution Vulnerability | |||||||
| CVE-2026-62699 | No | No | - | - | Important | 6.8 | 5.9 |
| Windows User Profile Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62832 | Yes | No | - | - | Important | 7.8 | 6.8 |
| Windows User-Mode Power Service (UMPS) Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62721 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows Win32k Elevation of Privilege Vulnerability | |||||||
| CVE-2026-62712 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62876 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62877 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65678 | No | No | - | - | Important | 7.0 | 6.1 |
| CVE-2026-62711 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62733 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-62885 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65775 | No | No | - | - | Important | 7.8 | 6.8 |
| CVE-2026-65776 | No | No | - | - | Important | 7.0 | 6.1 |
| Windows Wired AutoConfig Service Information Disclosure Vulnerability | |||||||
| CVE-2026-62730 | No | No | - | - | Important | 5.5 | 4.8 |
| Windows Work Folder Service Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61349 | No | No | - | - | Important | 7.8 | 6.8 |
| Windows iSCSI Target Service Denial of Service Vulnerability | |||||||
| CVE-2026-65681 | No | No | - | - | Important | 7.5 | 6.5 |
| CVE-2026-65796 | No | No | - | - | Important | 5.9 | 5.2 |
| Windows iSCSI Target Service Remote Code Execution Vulnerability | |||||||
| CVE-2026-65679 | No | No | - | - | Important | 8.1 | 7.1 |
| CVE-2026-65791 | No | No | - | - | Critical | 9.8 | 8.5 |
| Winlogon Elevation of Privilege Vulnerability | |||||||
| CVE-2026-61939 | No | No | - | - | Important | 7.0 | 6.1 |
Linux Shell Forensic: Let?s Dive Into Atuin!
UNIX systems (including Linux) are well-known to record a lot of activities in many different locations. But there is one domain where they definitely lack of "modern" logging: shells. Most shells provide an historization of the typed commands through a flat file in the $HOME directory (ex: $HOME/.bash_history). They suffer of multiple problems:
History is stored in memory and the file is updated when the shell exits
The order of commands is not reliable
There is no timestamps (by default)
The size of history can be limited (see $HISTFILESIZE)
Can be removed/tampered by the user
Note that if you use sudo to switch to another user (usually root), events are
sent to the classic logging mechanism (syslog or journal):
Aug 05 15:30:48 lab0 sudo[211956]: xavier : TTY=pts/1 ; PWD=/tmp ; USER=root ;
COMMAND=/usr/bin/whoami
To search across the history, the shell user can use the “reverse-i-search”
feature available in Bash (but also other shells). This is the built-in
incremental search through your command history, bound to CTRL-R. You hit it,
start typing part of a command you ran before, and bash walks backwards through
history showing the most recent match as you type — hence "reverse" (newest-first)
and "i" for incremental (it updates on every keystroke).
xavier@lab0:~$
(reverse-i-search)`grep': dpkg -l | grep curl
It’s nice but, again, limited!
There are tools that expand the power of reverse-i-search and the shell history
by storing everything into a database. One that became popular is called “Atuin”[1].

It enhances your shell history with a SQLite database, and records extra context for every command:
The directory it ran in,
how long it took,
whether it succeeded,
which machine and session it came from.
Even better, it can also sync your history across all of your machines, end-to-end
encrypted. The official Atuin server can be used but, of course, it’s possible
to deploy your own server (that's what I do in my infrastructure). From a
forensic point of view, this tool is both a gift and a trap for the investigator.
If you don’t know that Atuin is used, you’ll maybe loose lot of evidences. But
if you spot it, it’s for sure a win!
First step to check: Where the artifacts live?
Atuin follows XDG paths[2], so check every user's home directory plus root (per-user install):
File Purpose
~/.local/share/atuin/history.db Primary evidence (SQLite)
~/.local/share/atuin/history.db-wal Uncommitted records (DO NOT MISS)
~/.local/share/atuin/history.db-shm
~/.local/share/atuin/key E2E sync encryption key
~/.local/share/atuin/session Server session token (API bearer)
~/.config/atuin/config.toml Config: sync target, filters, custom paths
Do not assume the default location. The config location can be overridden with $ATUIN_CONFIG_DIR,
and the database, key, and session paths are all individually configurable in
config.toml. It's recommended to read the config first.
Atuin must be enable at shell level (for every shell, every user). Search for proof-of-activation in the shell RC files:
xavier@lab0:~$ grep atuin $HOME/.bashrc
. "$HOME/.atuin/bin/env"
eval "$(atuin init bash)"
Second step: Build your timeline
Forensicators love timelines! The main DB table is called “history”:
xavier@lab0:~$ sqlite3 history.db
SQLite version 3.46.1 2024-08-13 09:16:08
Enter ".help" for usage hints.
sqlite> .schema history
CREATE TABLE history (
id text primary key,
timestamp integer not null,
duration integer not null,
exit integer not null,
command text not null,
cwd text not null,
session text not null,
hostname text not null, deleted_at integer, author text, intent text, shell
text,
unique(timestamp, cwd, command)
);
CREATE INDEX idx_history_timestamp on history(timestamp);
CREATE INDEX idx_history_command_timestamp on history(
command,
timestamp
);
CREATE INDEX idx_history_active_timestamp on history(timestamp)
where deleted_at is null;
CREATE INDEX idx_history_session_timestamp on history(session, timestamp)
where deleted_at is null;
CREATE INDEX idx_history_cwd_timestamp on history(cwd, timestamp)
where deleted_at is null;
CREATE INDEX idx_history_hostname_timestamp on history(lower(hostname),
timestamp)
where deleted_at is null;
sqlite>
The id is a client-generated identifier used for syncing, and deleted_at is a
soft-delete marker.
Compared to .bash_history this gives you, per command:
a
UTC timestamp (nanoseconds since epoch — divide by 1e9),
the working directory,
the exit code,
execution duration,
a session ID,
the hostname
Triage query, read-only:
xavier@lab0:~$ sqlite3 "file:history.db?mode=ro&immutable=1" \
"SELECT datetime(timestamp/1000000000,'unixepoch') AS utc,
hostname, session, cwd, exit, command
FROM history ORDER BY timestamp;" | grep lab0 | head -5
2026-08-05 16:21:05|lab0:xavier|019fd2ba42c7779284d508825c4b2bd4|/home/xavier|0|vi
.bashrc
2026-08-05 16:21:16|lab0:xavier|019fd2ba42c7779284d508825c4b2bd4|/home/xavier|0|cat
$HOME/.atuin/bin/env
2026-08-05 16:22:53|lab0:xavier|019fd2bc13b174c094100175e489ade5|/home/xavier|0|byobu
2026-08-05 16:22:58|lab0:xavier|019fd2bc264c799196071edfbfe9d452|/home/xavier|0|ll
2026-08-05 16:23:11|lab0:xavier|019fd2bc264c799196071edfbfe9d452|/home/xavier|0|cd
footprint
Interesting tips to keep in mind during investigations:
"session"
lets you reconstruct individual terminal sessions: Use "group by" to rebuild
what an operator did in one window, in order.
If sync is enabled, commands executed on other machines under the same account
are pulled into this host's database. A row in this db is not proof the command
ran on this host.
Next step, investigate deleted and residual data:
The "soft-delete" design works is a goldmine: rows deleted via Atuin are marked with "deleted_at" rather than physically purged in many cases. Try to use "WHERE deleted_at IS NOT NULL" to recover "deleted" activity. Standard SQLite carving applies: freelist/unallocated pages and the WAL can hold prior row versions and dropped records (undark, bring2lite, or manual page carving).
A good news, the standard flat history file (~/.bash_history or ~/.zsh_history) is still written alongside Atuin, so cross-reference it.
Finally, don't forget the "sync" feature:
Check the configuration file, if "auto_sync = true" and the user is logged in, history is end-to-end encrypted and pushed to a server (by default: https://api.atuin.sh). If you are authenticated and have the E2E encryption key, history may be pullable back from the server. But a self-hosted server can be used. In this case, more evidences can be found on this server but raw data will also be encrypted.
A final note: The configuration file allows to specify commands that will never be recorded:
##
prevent commands matching any of these regexes from being written to history.
## Note that these regular expressions are unanchored, i.e. if they don't start
## with ^ or end with $, they'll match anywhere in the command.
## For details on the supported regular expression syntax, see
## https://docs.rs/regex/latest/regex/#syntax
# history_filter = [
# "^secret-cmd",
# "^innocuous-cmd .*--secret=.+",
# ]
##
prevent commands run with cwd matching any of these regexes from being written
## to history. Note that these regular expressions are unanchored, i.e. if they
don't
## start with ^ or end with $, they'll match anywhere in CWD.
## For details on the supported regular expression syntax, see
## https://docs.rs/regex/latest/regex/#syntax
# cwd_filter = [
# "^/very/secret/area",
# ]
Absence of a command in the database is therefore not evidence it wasn't run.
Other gaps: non-interactive shells and scripts (no init hook = no capture), and
commands in a sh session without the hook.
Apple Patches Everything (July 2026)
I am a bit late with this summary, but this week Apple released updates to all its operating systems and Safari. The Safari update, as usual, targets macOS prior to macOS 26. macOS updates covered the two older versions (14 and 15), while other operating system patches only covered the current 26 versions.
A total of 187 vulnerabilities are addressed in this update. Many cover multiple operating systems. Apple did not label any of the vulnerabilities as already being exploited.
|
iOS 26.6 and iPadOS 26.6 |
macOS Tahoe 26.6 |
macOS Sequoia 15.7.8 |
macOS Sonoma 14.8.8 |
tvOS 26.6 |
watchOS 26.6 |
visionOS 26.6 |
Safari 26.6 |
|---|---|---|---|---|---|---|---|
|
CVE-2025-43325: An
app may be able to access sensitive user data. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-20672: An
app may be able to access sensitive user data. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-23918: A
remote attacker may be able to cause a denial-of-service. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-28849: A
maliciously crafted ZIP archive may bypass Gatekeeper checks. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28896: An
attacker may be able to cause unexpected system termination or read
kernel memory. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28900: A
maliciously crafted ZIP archive may bypass Gatekeeper checks. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28911: A
malicious app may be able to corrupt memory of a system process. |
|||||||
|
|
x |
|
x |
|
|
|
|
|
CVE-2026-28912: A
user may be able to elevate privileges. |
|||||||
|
|
x |
x |
|
|
|
|
|
|
CVE-2026-28914: A
maliciously crafted ZIP archive may bypass Gatekeeper checks. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28926: An
app may be able to elevate privileges. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28928: An
app may be able to cause unexpected system termination. |
|||||||
|
x |
x |
|
|
x |
x |
|
|
|
CVE-2026-28931: Connecting
to a malicious NFS server may lead to kernel memory corruption. |
|||||||
|
x |
x |
|
|
x |
x |
|
|
|
CVE-2026-28932: An
app may be able to cause a denial of service. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-28936: Processing
a maliciously crafted file may lead to unexpected app termination. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28945: An app may be able to bypass network
restrictions. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-28961: An attacker with physical access to a locked
device may be able to view sensitive user information. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-28973: A malicious app may be able to break out of its
sandbox. |
|||||||
|
x |
x |
x |
x |
|
x |
|
|
|
CVE-2026-28981: Processing a maliciously crafted image may lead
to arbitrary code execution. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-28982: A remote user may be able to cause unexpected
system termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-28983: A remote attacker may be able to cause a denial
of service. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-39868: An app may be able to cause unexpected system
termination or corrupt kernel memory. |
|||||||
|
|
|
x |
x |
x |
x |
x |
|
|
CVE-2026-39873: Connecting to a malicious SMB server may lead to
unexpected system termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-39874: A malicious app may be able to gain root
privileges. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-39875: A malicious app may be able to gain root
privileges. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-39877: An app may be able to disclose kernel memory. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-43661: Processing a maliciously crafted image may
corrupt process memory. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-43665: A local attacker may be able to determine the
legacy VNC password configured for Screen Sharing. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-43672: A malicious application may be able to bypass
Privacy preferences. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43673: Processing
a maliciously crafted audio file may corrupt process memory. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43676: Processing
maliciously crafted web content may lead to an unexpected Safari
crash. |
|||||||
|
|
|
|
|
|
x |
x |
|
|
CVE-2026-43681: A
local user may be able to read kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43682: A
remote user may be able to cause unexpected system termination or
corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43693: An
app may be able to gain root privileges. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43694: An
app may be able to cause unexpected system termination or write
kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43698: An
app may be able to gain root privileges. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43699: Processing
maliciously crafted web content may lead to an unexpected process
crash. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43700: Processing
maliciously crafted web content may disclose sensitive user
information. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43701: A
malicious website may be able to process restricted web content
outside the sandbox. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43703: Processing
maliciously crafted web content may lead to an unexpected process
crash. |
|||||||
|
|
|
x |
x |
x |
x |
x |
|
|
CVE-2026-43704: A
malicious web extension may be able to cause an unexpected process
crash. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43705: Processing maliciously crafted web content may
lead to memory corruption. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43706: Processing maliciously crafted web content may
lead to an unexpected process crash. |
|||||||
|
|
|
x |
x |
x |
x |
x |
|
|
CVE-2026-43707: Processing maliciously crafted web content may
lead to an unexpected process crash. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43708: A malicious website may exfiltrate data
cross-origin. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43710: An attacker may be able to cause unexpected
system termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43711: Processing a maliciously crafted video file may
lead to unexpected app termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43712: Processing maliciously crafted web content may
lead to an unexpected process crash. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43713: Visiting a website may leak sensitive data. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43714: A malicious app may be able to access protected
user data. |
|||||||
|
x |
x |
x |
x |
|
x |
x |
|
|
CVE-2026-43715: Processing maliciously crafted web content may
lead to memory corruption. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43717: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
|
|
|
|
x |
x |
|
|
|
CVE-2026-43718: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43721: A malicious website may be able to silently
hijack clipboard data. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43722: An app may be able to leak sensitive kernel
state. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-43723: An app may be able to gain root privileges. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43724: An app may be able to cause unexpected system
termination or write kernel memory. |
|||||||
|
|
|
x |
x |
x |
x |
x |
|
|
CVE-2026-43725: A malicious website may be able to process
restricted web content outside the sandbox. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43728: An attacker may be able to modify the state of
the Keychain. |
|||||||
|
|
x |
|
|
|
|
|
|
|
CVE-2026-43729: Processing a maliciously crafted image may
corrupt process memory. |
|||||||
|
x |
x |
x |
|
x |
|
x |
|
|
CVE-2026-43730: An app may be able to fingerprint the user. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-43732: Processing maliciously crafted web content may
disclose sensitive user information. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43735: A malicious website may exfiltrate data
cross-origin. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43738: Processing a maliciously crafted asset catalog
may result in disclosure of process memory. |
|||||||
|
|
|
x |
x |
|
|
|
|
|
CVE-2026-43740: Processing maliciously crafted web content may
result in the disclosure of process memory. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-43743: An app may be able to cause unexpected system
termination. |
|||||||
|
|
|
|
|
x |
x |
|
|
|
CVE-2026-43744: Processing an audio stream in a maliciously
crafted media file may terminate the process. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43745: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
|
|
|
|
x |
x |
x |
|
|
CVE-2026-43747: Parsing a maliciously crafted file may lead to
an unexpected app termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43748: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
|
|
|
|
|
|
CVE-2026-43749: An app may be able to gain root privileges. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43750: An app may be able to execute arbitrary code out
of its sandbox or with certain elevated privileges. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43753: An attacker with physical access to a locked
device may be able to view sensitive user information. |
|||||||
|
x |
x |
x |
x |
|
|
|
|
|
CVE-2026-43754: An app may be able to leak sensitive kernel
state. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43755: An app may be able to gain root privileges. |
|||||||
|
|
x |
|
x |
|
|
|
|
|
CVE-2026-43756: An app may be able to access user-sensitive
data. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43757: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43758: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
x |
x |
|
x |
|
|
|
CVE-2026-43759: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
|
|
|
x |
|
|
|
CVE-2026-43760: An app may be able to access user-sensitive
data. |
|||||||
|
|
x |
|
x |
|
|
|
|
|
CVE-2026-43763: An app may be able to read files outside of its
sandbox. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43764: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43765: An app may be able to modify protected parts of
the file system. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43766: An attacker with physical access to a locked
device may be able to view sensitive user information. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43767: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43768: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43769: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43770: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
x |
x |
x |
|
|
|
|
CVE-2026-43771: An app may be able to cause a denial-of-service. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43772: An app may be able to break out of its sandbox. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43773: Mounting a maliciously crafted disk image may
cause unexpected system termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43774: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43775: An app may be able to access sensitive user
data. |
|||||||
|
|
|
x |
|
|
|
|
|
|
CVE-2026-43776: Processing a maliciously crafted file may lead
to unexpected app termination or arbitrary code execution. |
|||||||
|
x |
x |
x |
|
|
|
|
|
|
CVE-2026-43777: A remote attacker may be able to cause a denial
of service. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43778: An app may be able to cause unexpected system
termination or corrupt kernel memory. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43779: An app may be able to intercept network
connections intended for another process. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43780: Processing a maliciously crafted texture may
lead to unexpected app termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43781: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43782: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43792: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
|
|
|
|
|
x |
|
CVE-2026-43793: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43796: An app may be able to access sensitive user
data. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43797: An app may be able to access information about a
user's contacts. |
|||||||
|
x |
x |
|
|
|
|
|
|
|
CVE-2026-43799: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43800: An app may be able to access sensitive user
data. |
|||||||
|
x |
x |
|
|
x |
x |
|
|
|
CVE-2026-43801: An app may be able to access sensitive user
data. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43802: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-43803: A remote attacker may be able to cause
unexpected system termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43804: Visiting a website may lead to an app
denial-of-service. |
|||||||
|
x |
x |
|
|
|
|
x |
x |
|
CVE-2026-43805: An app may be able to cause unexpected system
termination or write kernel memory. |
|||||||
|
x |
x |
x |
x |
|
x |
|
|
|
CVE-2026-43806: A local attacker may be able to cause a denial
of service. |
|||||||
|
|
x |
|
|
|
|
|
|
|
CVE-2026-43807: A malicious accessory may be able to cause
unexpected app termination. |
|||||||
|
|
|
x |
x |
x |
x |
x |
|
|
CVE-2026-43810: A remote user may be able to cause unexpected
system termination or corrupt kernel memory. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-43811: An app may be able to modify protected parts of
the file system. |
|||||||
|
x |
|
|
|
|
|
|
|
|
CVE-2026-43812: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
x |
x |
|
x |
|
x |
|
|
CVE-2026-43813: A maliciously crafted app may be able to bypass
code signing enforcement. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-43816: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-43817: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
|
|
|
x |
x |
x |
|
|
CVE-2026-43818: Processing a maliciously crafted image may lead
to arbitrary code execution. |
|||||||
|
x |
x |
x |
x |
|
|
|
|
|
CVE-2026-43819: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
|
|
|
|
|
|
|
CVE-2026-43821: An app may be able to read files outside of its
sandbox. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-64691: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
|
|
|
|
|
|
|
CVE-2026-64692: An app may be able to cause a denial-of-service. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64693: Processing a maliciously crafted image may lead
to a denial-of-service. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64694: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64695: A remote user may be able to cause unexpected
system termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64696: A remote user may be able to cause unexpected
system termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64697: An app may be able to cause unexpected system
termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64698: An app may be able to cause unexpected system
termination or read kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64699: An app may be able to disclose kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64702: An app may be able to break out of its sandbox. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64703: An app may be able to cause a denial-of-service. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64704: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64707: An app may be able to delete files for which it
does not have permission. |
|||||||
|
x |
x |
x |
x |
|
|
x |
|
|
CVE-2026-64708: An app may bypass Gatekeeper checks. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64709: An app may be able to disclose kernel memory. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64710: An app may be able to leak sensitive user
information. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64711: An app may be able to leak sensitive user
information. |
|||||||
|
x |
x |
x |
x |
|
|
|
|
|
CVE-2026-64713: Websites may know if the user has visited a
given link. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-64716: Processing a maliciously crafted image may
corrupt process memory. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64718: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-64719: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-64720: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
x |
|
|
x |
x |
|
|
|
CVE-2026-64721: An app may be able to access sensitive user
data. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64722: Processing a 3D model may result in disclosure
of process memory. |
|||||||
|
x |
x |
x |
|
|
|
|
|
|
CVE-2026-64723: An app may be able to access sensitive user
data. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64724: An attacker on the local network may be able to
cause a denial-of-service. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64725: An app may be able to cause a denial-of-service. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64726: An attacker in physical proximity may be able to
corrupt process memory. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-64727: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
|
|
x |
|
|
|
|
CVE-2026-64728: Maliciously crafted web content may violate
iframe sandboxing policy. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-64730: Visiting a website that frames malicious content
may lead to UI spoofing. |
|||||||
|
x |
x |
|
|
x |
x |
x |
x |
|
CVE-2026-64731: A malicious app may be able to break out of its
sandbox. |
|||||||
|
|
x |
x |
|
|
|
|
|
|
CVE-2026-64732: An attacker with physical access may be able to
access sensitive user data during iPhone Mirroring. |
|||||||
|
x |
|
|
|
|
|
|
|
|
CVE-2026-64733: An app may be able to fingerprint the user. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-64734: Processing a maliciously crafted contact may
leak sensitive data. |
|||||||
|
x |
x |
x |
x |
|
x |
x |
|
|
CVE-2026-64735: A remote attacker may be able to bypass network
filters. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64737: A malicious app may be able to break out of its
sandbox. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64738: A malicious app may be able to break out of its
sandbox. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64739: An attacker may be able to cause unexpected app
termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64740: A malicious app may be able to break out of its
sandbox. |
|||||||
|
x |
x |
x |
x |
x |
|
|
|
|
CVE-2026-64741: An app may be able to read a persistent device
identifier. |
|||||||
|
x |
|
|
|
x |
x |
x |
|
|
CVE-2026-64742: An app may be able to access sensitive user
data. |
|||||||
|
x |
|
|
|
x |
x |
x |
|
|
CVE-2026-64743: An app may be able to access sensitive user
data. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-64744: An app may be able to disclose kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64745: A person with physical access to a locked device
may be able to access contacts and photos. |
|||||||
|
|
x |
x |
|
|
|
|
|
|
CVE-2026-64746: An app may be able to add contacts without user
authorization. |
|||||||
|
x |
x |
|
|
|
x |
x |
|
|
CVE-2026-64747: An app may be able to execute arbitrary code
with kernel privileges. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64749: An app may be able to cause unexpected system
termination or corrupt kernel memory. |
|||||||
|
x |
x |
x |
|
|
|
x |
|
|
CVE-2026-64751: An app may be able to cause unexpected system
termination or write kernel memory. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-64754: Processing a maliciously crafted file may lead
to a denial-of-service. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64755: An app may be able to access sensitive user
data. |
|||||||
|
x |
|
|
|
|
|
|
|
|
CVE-2026-64757: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
x |
x |
|
|
|
x |
x |
x |
|
CVE-2026-64758: Processing a maliciously crafted file may lead
to unexpected app termination. |
|||||||
|
x |
x |
|
|
x |
x |
x |
|
|
CVE-2026-64762: An app may be able to cause unexpected system
termination. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64763: Processing a maliciously crafted file may lead
to unexpected app termination or arbitrary code execution. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64764: Processing a maliciously crafted file may lead
to unexpected app termination or arbitrary code execution. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64765: Processing a maliciously crafted file may lead
to unexpected app termination or arbitrary code execution. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64767: A remote attacker may be able to cause
unexpected system termination or corrupt kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64768: A remote attacker may cause an unexpected app
termination. |
|||||||
|
x |
x |
x |
x |
x |
|
x |
|
|
CVE-2026-64769: A remote attacker may be able to cause
unexpected application termination or heap corruption. |
|||||||
|
x |
x |
x |
x |
x |
|
x |
|
|
CVE-2026-64771: A remote attacker may be able to cause
unexpected application termination or heap corruption. |
|||||||
|
x |
x |
x |
|
x |
|
x |
|
|
CVE-2026-64772: A remote attacker may be able to cause
unexpected application termination or heap corruption. |
|||||||
|
x |
x |
x |
|
x |
|
x |
|
|
CVE-2026-64774: A remote attacker may be able to cause
unexpected application termination or heap corruption. |
|||||||
|
x |
x |
x |
x |
x |
|
x |
|
|
CVE-2026-64775: An app may be able to cause unexpected system
termination. |
|||||||
|
x |
x |
x |
x |
x |
x |
x |
|
|
CVE-2026-64776: An app may be able to disclose kernel memory. |
|||||||
|
|
x |
x |
x |
|
|
|
|
|
CVE-2026-64783: Processing maliciously crafted web content may
lead to an unexpected Safari crash. |
|||||||
|
x |
x |
|
|
|
x |
x |
x |