Security9 min read

When the Hypervisor Is the Target: An August 2026 UK SME Threat Briefing

Two weeks into August 2026 and the July pattern holds. A critical VMware vCenter flaw disclosed on 29 July is under active exploitation, DEF CON 34 produced a reproducible attack on AI agents and an on-prem SharePoint auth bypass has a public exploit. A practical briefing for UK SMEs.

Nimbul Systems Team
11 August 2026
9 min read

Two weeks into August 2026 and the pattern from July has not changed. Infrastructure is being exploited faster than many teams patch, and the research world is showing exactly how AI agents fit into an attack chain. Three items belong on a UK SME list this month: a critical VMware vCenter flaw disclosed at the end of July and now under active exploitation, a reproducible attack on AI agents demonstrated at DEF CON 34, and an on-premises SharePoint authentication bypass that has a public exploit and plenty of unpatched farms.

This is a briefing. Skip to the sections that apply to your stack.

1. VMware vCenter CVE-2026-59310: patch, then hunt

On 29 July 2026 Broadcom published VMSA-2026-0006, covering CVE-2026-59310, a directory-traversal flaw in the vCenter Syslog server (CVSS 9.8). An unauthenticated attacker with network access can write files outside the intended directory and achieve arbitrary code execution on the appliance. No credentials, no user interaction. Broadcom shipped it alongside CVE-2026-59309, a companion authentication bypass in the VMware Directory Service (VMDir, the identity backbone behind vCenter single sign-on), also CVSS 9.8. There is no workaround for either. Patching is the only remediation.

Why this is an August problem, not a July one: incident responders observed live exploitation from 3 August, five days after disclosure, with compromises catalogued across dozens of countries inside the first week and a half. Reporting describes a suspected APT establishing persistence with reverse SSH once it lands on the appliance. That is the uncomfortable part for SMEs. If your vCenter was reachable and unpatched during the first half of August, patching now closes the door but does not evict anyone already inside.

Patch to at least

  • vCenter 9.1.x: 9.1.0.0300
  • vCenter 9.0.x: 9.0.2.0100
  • vCenter 8.0 U3: 8.0 U3k
  • vCenter 8.0 U2: 8.0 U2f
  • vCenter 7.0: no in-support fix, follow Broadcom extended-support guidance
  • Cloud Foundation 5.x: async patch to 8.0 U3k
  • Post-patch hunt (if the appliance was network-reachable while unpatched)

  • Unauthorised entries in `/etc/cron.d/` and other cron paths.
  • `reverse_ssh` binaries or unexpected outbound SSH connections from the appliance.
  • Web-accessible droppers, including in the Perfcharts application.
  • Unfamiliar local accounts or scheduled tasks.
  • If you find persistence, treat the appliance as compromised: isolate, preserve evidence, rebuild from a known-good image and rotate SSO, service-account and linked credentials. A vCenter takeover is a path to every VM it manages.

    Practical note: keep vCenter management off the public internet entirely. Restrict it to a management VLAN reachable only from jump hosts. That does not fix the CVE but it shrinks the blast radius while you schedule the patch.

    2. DEF CON 34: "Ghostjacking" shows where agentic AI breaks

    At DEF CON 34 in early August, Tenet Security presented Ghostjacking, a reproducible attack on AI coding and operations agents. The mechanism is short. An attacker plants a crafted line in a security log. An AI agent tasked with reviewing yesterday's blocked events reads that line, treats it as an instruction and is steered into issuing an outbound action. In the demonstrated chain that was a DNS record change and an API request with a credential attached. Tenet reported the attack succeeded nine times out of ten against one popular coding agent under a default configuration. This is published research with a reproduced result, not a campaign seen in the wild, and it should be read that way. Separately, the researchers reported a sandbox-escape issue to the vendor, which confirmed and patched it before the talk.

    Why it matters for SMEs adopting agents: the failure is not the model "being tricked". It is that the agent's tool layer had the authority to change DNS while running a task whose scope was only "read the logs". The fix is the guardrail this blog has argued for since the spring. Scope each agent's tool permissions to its task, deny by default and require human approval for anything that changes DNS, credentials, money or customer-visible state. A log-review agent should be able to read logs and nothing else.

    If you are running or piloting agentic automation, three concrete checks this month:

  • Inventory what each agent can actually do, not what you intended it to do. List the tools, APIs and credentials in its reach.
  • Enforce least privilege at the tool layer, not just in the prompt. A prompt instruction is not a security control.
  • Treat any data an agent ingests (logs, tickets, emails, web pages) as untrusted input that could carry instructions.
  • This lines up with the NCSC's guidance on managing the cyber risk of agentic AI: use safeguards, sandboxing and active oversight so autonomous systems deliver value without unintended action.

    3. SharePoint CVE-2026-55040: on-prem, again

    July's briefing flagged one on-premises SharePoint flaw. Here is another that deserves attention now. CVE-2026-55040 (CVSS 9.1) is an authentication bypass in the JWT token-validation pipeline of on-premises SharePoint Server. Because several token-validation settings are off by default, an unauthenticated attacker who knows a target user's identifier (SID or UPN, typically `user@domain`) can forge a bearer token and act as that user, including a site administrator. It was disclosed on 14 July 2026 with a public proof-of-concept, so the barrier to exploitation is low and unpatched farms should be treated as high risk.

    Confirm you are at least on

  • SharePoint Server Subscription Edition build 16.0.19725.20434 (KB5002882)
  • SharePoint Server 2019 build 16.0.10417.20175 (KB5002883)
  • SharePoint Enterprise Server 2016 build 16.0.5561.1001 (KB5002891)
  • SharePoint Online is not affected. If the farm was internet-reachable while unpatched, patch, then hunt for forged-token activity and rotate ASP.NET machine keys to invalidate any ViewState or web-shell persistence. An authentication bypass is also a natural second-stage tool once an attacker has any foothold, so internal-only farms should still be patched this week.

    The pattern behind August

  • vCenter: a critical, unauthenticated flaw exploited within five days of disclosure, with persistence that outlives the patch.
  • Ghostjacking: the risk in agentic AI is the tool permissions you granted, not the cleverness of the prompt.
  • SharePoint: a July patch with a public exploit that still-unpatched farms have not applied.
  • None of these needed a novel technique to hurt an SME. A hypervisor left reachable, an agent given more authority than its task, a patch not yet applied. The common thread with July is speed. The window between disclosure and mass exploitation keeps shrinking, so "we patch monthly" is no longer a safe default for internet-facing infrastructure.

    What UK SMEs should do this month

    Pick the items relevant to your stack and put a date next to each:

  • VMware vCenter: Confirm build numbers on every appliance. Patch to the VMSA-2026-0006 fixed builds. Take management off public IP space. Hunt cron, reverse SSH and droppers if it was reachable unpatched.
  • Agentic AI: Inventory each agent's real tool and credential reach. Enforce least privilege at the tool layer. Require human approval for DNS, credential, payment and customer-facing actions.
  • On-prem SharePoint: Confirm the July build numbers. Patch, rotate ASP.NET machine keys, hunt if it was exposed. Move any internet-facing SharePoint behind authenticated access.
  • Internet-facing inventory: One spreadsheet. Every appliance and management interface, its owner and last patch date. Anything without an owner gets unpublished this week.
  • Governance: Subscribe to CISA KEV and NCSC Early Warning, and treat a KEV add as your patch trigger regardless of a vendor's initial severity wording. Cyber Essentials remains the minimum baseline.
  • How fractional teams help

    We confirm what is exposed, patch and hunt vCenter and SharePoint, take management interfaces off public IP space and put least-privilege guardrails around any AI agents you are piloting so a log-review task cannot change your DNS. We wire a KEV-triggered patch rhythm into your monthly operations so a flaw disclosed at the end of one month is not your incident at the start of the next.

    Further reading

  • Broadcom VMSA-2026-0006 (vCenter CVE-2026-59310 and CVE-2026-59309): https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/VMSA-2026-0006-1--VMware-ESX--vCenter--Workstation--and-Fusion-updates-address-multiple-vulnerabilities--CVE-2026-59309--CVE-2026-59310--CVE-2026-47876--CVE-2026-41703--CVE-2026-41709-/38017
  • Cloud Security Alliance research note, vCenter CVE-2026-59310 exploitation: https://labs.cloudsecurityalliance.org/research/csa-research-note-vmware-vcenter-cve-2026-59310-exploitation/
  • Tenet Security, Ghostjacking write-up (DEF CON 34): https://www.deepinspect.ai/blog/ghostjacking-poisoned-security-logs-ai-agent-outbound-authorization
  • Rapid7, SharePoint JWT authentication bypass (CVE-2026-55040): https://www.rapid7.com/blog/post/ra-microsoft-sharepoint-jwt-token-authentication-bypass-cve-2026-55040/
  • CISA Known Exploited Vulnerabilities Catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
  • NCSC Early Warning service: https://www.ncsc.gov.uk/information/early-warning-service
  • Topics Covered

    VMwareAgentic AISharePointVulnerability ManagementEdge DevicesUK SME

    Ready to Transform Your IT Operations?

    Get expert guidance from our fractional IT specialists. We'll help you implement the strategies discussed in this article and accelerate your digital transformation journey.

    About the Author

    NS

    Nimbul Systems Team

    Our experienced team of fractional IT specialists brings over 35 years of combined expertise in DevOps automation, cloud engineering and digital transformation.

    Continue Reading

    DevOps Automation: The Complete Guide for UK SMEs

    Discover practical strategies and tools that UK SMEs can implement to accelerate development.

    Read Article →

    Cloud Migration Strategy: A UK Business Guide

    Navigate cloud migration complexity with this practical guide.

    Read Article →