Last updated: August 19, 2026 at 1:47 AM UTC
All 741 Vulnerability 286 Breach 129 Threat 319 Defense 7

Confused deputy weaknesses still expose cross-tenant access in major clouds

Researchers showed that confused deputy weaknesses persist in Google Cloud and Microsoft Azure, where a trusted service can be tricked into acting on an attacker's behalf against resources it should not reach. The pattern shows up when one service holds broad permissions and accepts instructions or identifiers from a less-trusted source without verifying who is really asking, which can enable cross-tenant access or privilege escalation. It is the same class of issue behind recent findings in enterprise agent and integration tooling, where a component with a user's permissions follows attacker-supplied input. The takeaway is architectural: identity and authorization must be checked at every trust boundary, not assumed from the calling service.

Check
Review cloud integrations and automation where one service acts for another, and confirm each checks the real caller's identity and authorization rather than trusting the upstream service.
Affected
Organizations relying on cloud services and integrations that pass identifiers or instructions between trust boundaries; a broadly permissioned service can be steered into cross-tenant access or privilege escalation.
Fix
Scope service permissions tightly, validate the originating identity at every boundary, use per-tenant isolation and unique unguessable identifiers, and monitor for a trusted service accessing resources outside its expected scope.

Unpatched Fastjson flaw lets a single JSON request run code on Spring Boot apps

Security firms ThreatBook and Imperva report attackers targeting a critical flaw in Fastjson, Alibaba's widely used JSON library for Java. On affected Spring Boot applications, a malicious JSON request can execute code without authentication, running with the privileges of the Java process. Tracked as CVE-2026-16723 with an Alibaba-assigned score of 9.0, the confirmed chain needs Fastjson 1.2.68 through 1.2.83, a Spring Boot executable fat-JAR, a network-reachable path that feeds attacker-controlled JSON to the parser, and SafeMode left at its disabled default. Notably, the AutoType feature can stay off and no classpath gadget is required. As of July 25, Alibaba had not shipped a fixed 1.x version.

Check
Inventory Java services for Fastjson 1.x on the classpath, identify any endpoint that parses untrusted JSON, and enable SafeMode now rather than waiting for a fixed release.
Affected
Spring Boot applications packaged as fat-JARs using Fastjson 1.2.68 through 1.2.83 with SafeMode disabled (CVE-2026-16723); an unauthenticated JSON request reaches code execution, and no fixed 1.x version exists yet.
Fix
Enable SafeMode by setting fastjson.parser.safeMode to true, or switch to the noneautotype build, restrict network paths that parse untrusted JSON, and plan migration off Fastjson 1.x.

Public exploit runs commands as git on unpatched self-managed GitLab servers

A researcher at depthfirst published a working exploit on July 24 for a GitLab flaw patched on June 10, running commands as the git user on any self-managed 18.11.3 server that has not updated. Any authenticated user who can push to a project can trigger it: the attacker commits a crafted Jupyter notebook and opens its commit diff to leak a heap pointer, repeats until an automated probe locates libraries in memory, then fires the payload with two more notebooks. No administrator rights, runner access, or victim interaction are needed. The bug sits in the notebook renderer, which passes repository-controlled data to a parser inside a long-lived worker.

Check
Move self-managed GitLab to a supported release containing the June fix, and for Helm or Operator deployments verify the GitLab version inside the Webservice image rather than only the chart version.
Affected
Self-managed GitLab servers on 18.11.3 or other unpatched builds; any authenticated user able to push a project can run commands as the git service account, with public exploit code now available.
Fix
Upgrade to a fixed release, since no workaround is offered, and note GitLab did not classify the fix as a security issue, so track upstream library bumps rather than security advisories alone.

Certighost lets any domain user impersonate a domain controller and seize the domain

Researchers published a working exploit on July 24 for Certighost, an Active Directory Certificate Services flaw that lets a low-privileged domain user obtain a certificate for a domain controller and authenticate as that machine. Because domain controller accounts hold directory replication rights, the resulting credential can extract the krbtgt secret through DCSync, effectively handing over the whole domain. Microsoft patched it in the July 14 updates as CVE-2026-54121, an improper authorization issue scored 8.8. Exploitation needs only network access and an ordinary domain account, with no administrator rights or user interaction, and it was tested against a default enterprise certificate authority setup.

Check
Apply the July Microsoft updates to enterprise certificate authorities, and where immediate patching is not possible, disable the vulnerable chase fallback per Microsoft's guidance and restart the certificate service.
Affected
Active Directory environments running an unpatched Enterprise Certification Authority (CVE-2026-54121); any standard domain account can impersonate a domain controller, run DCSync, and take full control of the domain.
Fix
Deploy the July fix, audit certificate authority enrollment and issuance logs for domain controller impersonation, restrict machine account creation, and monitor for unexpected DCSync replication activity.

Cl0p affiliates hit exposed Windchill and FlexPLM through an unauthenticated flaw

Cl0p affiliates are exploiting internet-exposed PTC Windchill and FlexPLM product lifecycle platforms through an unauthenticated remote code execution flaw, in a data theft extortion campaign. Product lifecycle management systems track a product from design to retirement and hold computer-aided design files, bills of materials, engineering data, and workflows, making them a concentrated store of intellectual property for manufacturers in automotive, aerospace, defense, medical, and electronics. Cl0p's established pattern is mass exploitation of one enterprise product followed by extortion over stolen data rather than encryption. PTC patched a critical deserialization flaw in the Windchill data management component earlier this year that has already seen exploitation.

Check
Identify any Windchill or FlexPLM instance reachable from the internet, confirm it is on a patched release, and place it behind access controls rather than leaving it directly exposed.
Affected
Manufacturers running internet-exposed PTC Windchill or FlexPLM; unauthenticated code execution lets Cl0p steal design files, bills of materials, and engineering intellectual property for extortion.
Fix
Patch and restrict access to product lifecycle platforms, require multi-factor authentication, monitor for bulk downloads and unusual export activity, and confirm what intellectual property these systems hold before an incident.

Check Point patches exploited SmartConsole flaw giving attackers full admin access

Check Point has fixed an actively exploited flaw in SmartConsole, the graphical admin panel used to manage its security products. CVE-2026-16232, rated 9.3, is an authentication bypass letting an unauthenticated remote attacker obtain a login token and authenticate with administrator privileges, after which they can alter security configuration and policy on a Security Management or Multi-Domain Management server. Exploitation requires the management server to be reachable from the internet with no restrictions on trusted GUI clients. The same update fixes a second critical authentication bypass and a Gaia Portal issue letting read-only users run commands as root.

Check
Install the July 22 Jumbo hotfix on Security Management and Multi-Domain Management servers, then restrict trusted GUI clients to approved addresses and firewall management access to known sources.
Affected
Organizations running Check Point Security Management or Multi-Domain Management with the console reachable from the internet (CVE-2026-16232); attackers gain administrator access and can rewrite the security policy protecting the network.
Fix
Apply the hotfix, limit trusted clients to specific addresses, keep management interfaces off the public internet, and review policy changes and administrator logins for unauthorized modifications.

Nine year old Linux kernel flaw gives local users root on default RHEL installs

Qualys disclosed RefluXFS, a race condition in the Linux kernel's XFS copy-on-write path that lets an ordinary local user overwrite protected files and take root. Tracked as CVE-2026-64600, it triggers when two concurrent direct writes target the same reflinked file: the kernel briefly drops its inode lock, and a second writer can make the first write land on a stale block. The overwrite happens at the block layer, so ownership, permissions, timestamps, and the setuid bit stay untouched and no kernel log entry appears. Qualys reports it works with SELinux enforcing and estimates over 16 million affected systems.

Check
Update kernels on hosts using XFS with reflink enabled, then reboot to apply, and prioritize shared systems where untrusted users or workloads already have local execution.
Affected
Systems running Linux 4.11 or later with a reflink enabled XFS filesystem (CVE-2026-64600), which is the default on Red Hat Enterprise Linux and derivatives, Oracle Linux, Amazon Linux, and Fedora Server.
Fix
Install vendor backported kernels and reboot, since the fix merged upstream on July 16. Debian, Ubuntu, and SUSE are exposed only where an administrator chose XFS with reflink at install.

Ubuntu snap-confine flaw turns any local account into root on default desktops

Qualys disclosed a privilege escalation flaw in snap-confine, the component that builds the sandbox for every snap application. CVE-2026-8933, rated 7.8, affects default installations of Ubuntu Desktop 24.04, 25.10, and 26.04, and stems from a 2025 hardening change that moved snap-confine from a setuid root binary to a capabilities model, introducing a race during sandbox setup. An attacker mounts a filesystem over the temporary scratch directory, plants a symlink so a privileged write lands on another file, then drops a udev rule that makes a system service run commands as root. Fixes shipped July 21.

Check
Update snapd across desktops and developer workstations, and verify the installed snapd version on each machine rather than assuming an older release or prior patching leaves it unaffected.
Affected
Default installations of Ubuntu Desktop 24.04, 25.10, and 26.04 (CVE-2026-8933); anyone with local execution, whether from stolen credentials or a malicious app, can escalate to full root control of the host.
Fix
Install the updated snapd packages, limit local shell access to trusted users until patched, and treat local privilege escalation as urgent since footholds on endpoints are routinely obtained through phishing.

Attackers exploit Windmill flaw to read server files and reach superadmin access

VulnCheck reports active exploitation of a path traversal flaw in Windmill, an open source platform for building internal tools, jobs, and workflows. CVE-2026-29059 lets an unauthenticated attacker read arbitrary files through the log file endpoint, and while observed attempts included reading the password file, the higher value target is the superadmin secret. Where that is configured, an attacker can authenticate as a super administrator and run arbitrary code through the job preview API. VulnCheck counted roughly 170 exposed instances across 24 countries, including deployments reachable through a proxy path rather than directly.

Check
Update Windmill to a fixed release, confirm whether any instance was reachable from the internet, and treat the superadmin secret and any credentials stored in configuration as exposed.
Affected
Organizations running internet-reachable Windmill deployments (CVE-2026-29059); unauthenticated attackers read server files, and where the superadmin secret is set, escalate to full administrative access and code execution.
Fix
Patch to the fixed version, rotate the superadmin secret and stored credentials, keep internal automation platforms off the public internet or behind authentication, and review logs for file read attempts.

Adobe extension flaw let any website read a visitor's WhatsApp Web chats

Guardio Labs disclosed HermeticReader, a flaw chain in the Adobe Acrobat extension for Chrome that let an attacker controlled web page read data from a visitor's WhatsApp Web session. Tracked as CVE-2026-48294 and rated 7.4, it is a cross origin disclosure issue affecting versions up to 26.5.2.2, installed on roughly 329 million browsers. Any site could disguise commands as internal extension messages, activate the extension's WhatsApp integration, and redirect its privileged page operations into the WhatsApp tab, extracting chats, contacts, and message previews. No malware, stolen credentials, or WhatsApp flaw was involved. Adobe patched within days.

Check
Confirm the Adobe Acrobat Chrome extension is updated to 26.5.2.3 or later across managed browsers, and review which other extensions hold broad permissions across sensitive web applications.
Affected
Anyone running the Adobe Acrobat Chrome extension at version 26.5.2.2 or earlier with an active WhatsApp Web session (CVE-2026-48294); visiting a malicious page was enough to expose chats and contacts.
Fix
Update the extension, govern browser extensions with allow lists and permission reviews, and remember that a widely trusted extension can turn any visited page into a route to session data.