Progress LoadMaster CVE-2026-8037: Root RCE Exploited 792 Times, Patch Your Load Balancer

Proactive Security for the AI Era
NodeZero continuously and autonomously pentests infrastructure, identity, cloud, and now web applications, chaining weaknesses across every domain the way real attackers do. Every finding ships with replayable proof showing exploitable business impact, not theoretical risk.
CVE-2026-8037 is a CVSS 9.8 unauthenticated root-level command injection in Progress Kemp LoadMaster that attackers hit 792 times from 65 unique IP addresses before CISA added it to the Known Exploited Vulnerabilities catalog on August 7, 2026, with a federal remediation deadline of August 10 -- yesterday.
Progress LoadMaster CVE-2026-8037 exists in the _escape_quotes() function within the LoadMaster management API. The function allocates a heap buffer without initializing it and without writing a null terminator after escaping output, creating an out-of-bounds read into adjacent freed memory. An attacker who sends a crafted request to the accessv2 API endpoint with a malicious apiuser parameter value can inject shell metacharacters that survive the broken escaping routine and execute via the system() C library function with the privileges of the LoadMaster process -- which runs as root. No authentication is required. watchTowr published proof-of-concept code on June 29, 2026, and eSentire observed active exploitation the following day.
LoadMaster appliances sit at the network edge between the public internet and internal application servers. They handle TLS termination, traffic distribution, and availability enforcement for enterprise and government web services. A compromised LoadMaster gives attackers root access to a device that sees all application traffic, trusts internal infrastructure, and is frequently excluded from standard endpoint detection coverage. For organizations still running LoadMaster GA below 7.2.63.2 or LTSF below 7.2.54.18, the question is not whether an exploitation attempt will occur -- it is whether one has already succeeded.
How Does CVE-2026-8037 Command Injection Work?
CVE-2026-8037 targets the accessv2 management API endpoint in Progress LoadMaster. The attack vector is the apiuser parameter, which LoadMaster processes through the _escape_quotes() function before passing to the system() C library call.
The _escape_quotes() function is designed to sanitize user input by escaping shell metacharacters. The implementation flaw: the function allocates a heap buffer using malloc() but does not initialize the buffer contents and does not write a null terminator after writing escaped output. This creates an out-of-bounds read condition. When the function reads from the uninitialized buffer region, it reads from adjacent freed heap memory -- memory the attacker can spray with crafted content in advance of the main exploit request.
An attacker prepares the adjacent memory with command injection payload content, then sends a request to the accessv2 endpoint with a base64-encoded apiuser value that includes shell metacharacters such as semicolons and single quotes. The _escape_quotes() function's out-of-bounds read incorporates the attacker-controlled content from the sprayed heap memory. The resulting string, now containing the injected commands, passes to system() and executes as root on the LoadMaster appliance.
The attack requires only HTTP or HTTPS access to the LoadMaster management interface. No credentials, no session tokens, no prior foothold on the network. MITRE ATT&CK mappings: T1190 (Exploit Public-Facing Application) for initial access; T1059.004 (Unix Shell) for the command execution; T1562.001 (Impair Defenses: Disable or Modify Tools) for post-exploitation firewall rule manipulation.
API Discovery
Attacker identifies internet-exposed LoadMaster appliances via network scanning or Shodan queries for the LoadMaster management interface on port 443.
Heap Spray Setup
Attacker sends preliminary requests to spray heap memory adjacent to the _escape_quotes() buffer allocation with shell command payload content.
Malicious API Request
Attacker sends a GET or POST request to /accessv2 with a base64-encoded apiuser parameter containing shell metacharacters (semicolons, single quotes).
Out-of-Bounds Read
The _escape_quotes() function's uninitialized, null-terminator-free heap buffer reads beyond its allocated region into attacker-prepared memory, incorporating the injected command payload.
Root Command Execution
The resulting unsanitized string passes to system() and executes as root on the LoadMaster appliance, giving the attacker full administrative control.
Which LoadMaster Products Are Affected?
CVE-2026-8037 affects all Progress Kemp LoadMaster GA versions from 7.2.60.0 through 7.2.63.1 -- every release in the current GA branch below the fixed version 7.2.63.2. On the long-term support branch, all LTSF versions from 7.2.45.12 through 7.2.54.17 are vulnerable, with 7.2.54.18 being the first fixed LTSF release.
The vulnerability also affects three related Progress products that share LoadMaster's underlying API code:
- ECS Connection Manager -- Progress's storage-optimized load balancing product for object storage workloads
- Connection Manager for ObjectScale -- Dell's ObjectScale integration relying on LoadMaster API code
- MOVEit WAF -- Progress's managed file transfer web application firewall component
Organizations running any of these products should verify their versions and patch to the fixed releases. The companion vulnerability CVE-2026-33691 was disclosed alongside CVE-2026-8037 and addresses a related input validation issue in the same API endpoint. Apply the June 2026 security bulletin, which covers both CVEs in a single update.
The EPSS score of 99% confirms that this vulnerability has the highest exploitation probability of nearly any CVE tracked in the EPSS database. LoadMaster appliances that expose their management interface to the internet are being actively scanned by automated tools. If your LoadMaster management port is reachable from outside your network, assume exploitation attempts are ongoing right now.
Briefings like this, every morning before 9am.
Threat intel, active CVEs, and campaign alerts, distilled for practitioners. 50,000+ subscribers. No noise.
Exploitation Evidence: IOCs and Attacker Activity
eSentire first observed active exploitation attempts against LoadMaster appliances on June 30, 2026 -- the day after watchTowr published detailed proof-of-concept code for CVE-2026-8037. Over the following 41 days, security researchers documented 792 exploitation attempts originating from 65 unique source IP addresses spread across 18 countries including Australia, China, Indonesia, Japan, Poland, and the United States.
The exploitation pattern is consistent with automated scanning tooling targeting all internet-exposed LoadMaster management interfaces. Early attempts on June 30 were reported by eSentire as largely unsuccessful, likely targeting appliances that had not yet received the June 2026 security bulletin. As unpatched appliances remained exposed through July, exploitation activity continued.
Three specific attacker IP addresses appeared repeatedly in the documented exploitation logs. Any connection from these addresses to a LoadMaster management interface should be treated as a confirmed exploitation attempt and trigger immediate investigation: 192.42.116.58, 192.42.116.105, and 146.70.139.154.
The geographic spread of attacker IPs and the 41-day continuous exploitation window indicate that CVE-2026-8037 has been incorporated into multiple automated exploitation frameworks, not just a single threat actor campaign. The Cisco FMC static credential CVE-2026-20316 compromise followed the same pattern: wide attacker interest in network edge appliances immediately after PoC publication.
“Hackers started exploiting CVE-2026-8037 immediately after the technical analysis was published.”
eSentire Security Advisory, June 30, 2026
Subscribe to unlock Indicators of Compromise
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Sigma Detection Rules and WAF Rules for CVE-2026-8037
The rule targets CVE-2024-1212, an earlier Progress Kemp LoadMaster command injection that used the same /access/set API endpoint and base64-encoded authorization injection technique. CVE-2026-8037 uses the accessv2 endpoint and apiuser parameter instead, but the detection logic covers both: GET requests to LoadMaster API paths with anomalous base64-encoded strings containing shell metacharacters.
- Deploy on: Web proxy or reverse proxy fronting the LoadMaster management interface
- Required logs: Full request URI and authorization headers
Subscribe to unlock Sigma Detection Rules
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Subscribe to unlock WAF Detection Rules
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
How to Patch CVE-2026-8037 Before the Next Exploit Attempt
Apply the patch from the Progress LoadMaster Critical Security Bulletin June 2026 and complete the steps below. The CISA deadline for federal agencies was August 10. All other organizations should patch immediately.
The ServiceNow CVE-2026-6875 pre-auth RCE response demonstrated what happens when organizations treat CISA KEV deadlines as advisory: exploitation campaigns were already underway weeks before organizations completed remediation. CVE-2026-8037 is further along the same curve: 792 attempts confirmed before the KEV addition means active adversaries have catalogued your exposed appliances. Every day without the patch is another 19 attempts on average.
Subscribe to unlock Remediation & Mitigation steps
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Why CVE-2026-8037 LoadMaster Compromise Matters for Your Organization
Load balancers occupy a position on the network that few other devices share: they sit between the internet and your application tier, inspect all incoming traffic, and hold the SSL private keys that decrypt every session. A compromised LoadMaster does not give attackers access to a single server -- it gives them access to a traffic interception point, a trusted internal network node, and the cryptographic material that makes your application encryption meaningful.
CVE-2026-8037 makes this compromise trivially achievable. No authentication. No insider knowledge required. A single HTTP request to the management API achieves root command execution on a device your network trusts implicitly.
The 792 documented exploit attempts confirm that automated adversaries have already indexed exposed LoadMaster appliances. The EPSS score of 99% reflects exploitation algorithms that predict nearly certain real-world exploitation based on the combination of a published PoC, a network-accessible attack surface, no authentication requirement, and a large installed base of appliances that are difficult to patch quickly due to their role in maintaining application availability.
Organizations that deprioritized this patch because the federal deadline seemed distant should recalibrate: CISA added this to KEV because attackers were already exploiting it before the August 7 catalog addition. The deadline was not a countdown to exploitation -- exploitation had already started 41 days earlier. Patch today. Restrict API access. Rotate credentials. Then run threat hunting queries against your log sources using the Sigma rule above to determine whether any exploitation attempt succeeded before your LoadMaster was patched.
The bottom line
CVE-2026-8037 Progress LoadMaster command injection gives unauthenticated attackers root access to your network edge appliance in a single HTTP request. CISA confirmed 792 exploit attempts from 65 IPs across 18 countries and mandated patching by August 10 -- which was yesterday. Upgrade LoadMaster GA to 7.2.63.2 or LTSF to 7.2.54.18, restrict management API access to trusted IP ranges, and rotate any SSL certificates stored on affected appliances. Do it before the 793rd attempt.
This analysis is generic. create a free account to score threats like this against your own stack.
Frequently asked questions
What is CVE-2026-8037 in Progress Kemp LoadMaster?
CVE-2026-8037 is a CVSS 9.8 OS command injection vulnerability in Progress Kemp LoadMaster, a widely deployed application delivery controller and load balancer. The flaw exists in the _escape_quotes() function within the LoadMaster management API: the function allocates an uninitialized heap buffer without writing a null terminator, creating an out-of-bounds read condition from adjacent freed memory. An attacker who sends a crafted request to the accessv2 API endpoint can inject OS commands into the apiuser parameter that execute via the system() function with root privileges. No authentication is required.
How does the CVE-2026-8037 LoadMaster command injection exploit work?
The exploit targets the accessv2 management API endpoint in LoadMaster. The attacker sends a GET or POST request to the API with a base64-encoded apiuser parameter crafted to include shell metacharacters (semicolons, quotes) that break out of the intended command context. The _escape_quotes() function fails to properly sanitize this input because its heap buffer is uninitialized and lacks a null terminator, causing an out-of-bounds read into adjacent freed memory. When the LoadMaster passes this unsanitized value to the system() C library function for processing, the injected shell commands execute as root. Proof of concept code was published by watchTowr on June 29, 2026, and active exploitation began the next day.
Which Progress LoadMaster versions are affected by CVE-2026-8037?
CVE-2026-8037 affects LoadMaster GA versions 7.2.60.0 through 7.2.63.1 (all versions below 7.2.63.2) and LoadMaster LTSF versions 7.2.45.12 through 7.2.54.17 (all versions below 7.2.54.18). The vulnerability also affects ECS Connection Manager, Connection Manager for ObjectScale, and MOVEit WAF. The fixed versions are GA 7.2.63.2 and LTSF 7.2.54.18. Check your running firmware version from the LoadMaster Web User Interface under System Configuration > System Administration > Update.
Is there a patch for CVE-2026-8037?
Yes. Progress released patches in June 2026. LoadMaster GA users should upgrade to version 7.2.63.2 or later. LoadMaster LTSF users should upgrade to version 7.2.54.18 or later. The patches are available from the Progress Support Portal and via the LoadMaster Web UI update mechanism. If an immediate upgrade is not possible, restrict access to the LoadMaster management API to trusted internal IP ranges only, blocking all internet-facing access to the API port as an emergency workaround.
What is the CISA deadline for patching CVE-2026-8037?
CISA added CVE-2026-8037 to its Known Exploited Vulnerabilities catalog on August 7, 2026, and set a BOD 26-04 remediation deadline of August 10, 2026, for Federal Civilian Executive Branch agencies. That deadline passed yesterday. Non-federal organizations should treat August 10 as a missed target and patch immediately: 792 confirmed exploit attempts from 65 unique IPs across 18 countries confirm that this is not a theoretical risk. The EPSS score of 99% means exploitation attempts will continue.
How do I detect if my LoadMaster was exploited via CVE-2026-8037?
Review LoadMaster access logs for GET or POST requests to the accessv2 API endpoint with apiuser parameter values that contain percent-encoded semicolons (%3B), single quotes (%27), or base64-encoded strings that decode to shell commands. Known attacker IPs logged during the exploitation campaign include 192.42.116.58, 192.42.116.105, and 146.70.139.154 -- any connection from these addresses to the management API should be treated as a confirmed attack. Post-exploitation indicators include unexpected new user accounts in the LoadMaster administration interface, changes to virtual service configurations, and outbound connections from the LoadMaster appliance to unfamiliar external IP addresses.
What can attackers do with a compromised LoadMaster?
A LoadMaster compromise gives attackers root-level access to an appliance that sits at the network edge with visibility into all traffic flowing through it. Post-exploitation capabilities include: intercepting and decrypting TLS traffic if SSL offloading is configured, modifying load balancing rules to redirect traffic to attacker-controlled servers, pivoting into the internal network from the LoadMaster's trusted network position, exfiltrating SSL certificates and private keys stored on the appliance, and using the appliance as a persistent C2 relay point. Because load balancers are often trusted by internal systems and excluded from standard endpoint security monitoring, compromise frequently goes undetected.
What is Progress LoadMaster used for, and why does CVE-2026-8037 matter?
Progress Kemp LoadMaster is an application delivery controller used by enterprises and government agencies to distribute traffic across web application servers, terminate TLS connections, and enforce availability policies for internet-facing services. It sits between the public internet and internal application infrastructure, making it one of the highest-value targets on any network. A compromised LoadMaster is not just a compromised device -- it is a compromised vantage point for inspecting, manipulating, and rerouting all application traffic, with a trusted network position that most internal security controls never scrutinize.
Sources & references
- Progress: LoadMaster Critical Security Bulletin June 2026 (CVE-2026-8037, CVE-2026-33691)
- The Hacker News: Progress Kemp LoadMaster Flaw Hits CISA KEV After 792 Reported Exploit Attempts
- SecurityWeek: CISA Urges Immediate Patching of Exploited Progress LoadMaster Vulnerability
- CISA KEV Catalog: CVE-2026-8037 Entry
- eSentire: Progress Kemp LoadMaster Vulnerability Targeted (CVE-2026-8037)
Free resources
Critical CVE Reference Card 2025–2026
25 actively exploited vulnerabilities with CVSS scores, exploit status, and patch availability. Print it, pin it, share it with your SOC team.
Ransomware Incident Response Playbook
Step-by-step 24-hour IR checklist covering detection, containment, eradication, and recovery. Built for SOC teams, IR leads, and CISOs.
Get threat intel before your inbox does.
50,000+ security professionals read Decryption Digest for early warnings on zero-days, ransomware, and nation-state campaigns. Free, daily, no spam.
Unsubscribe anytime. We never sell your data.

Founder & Cybersecurity Evangelist, Decryption Digest
Cybersecurity professional with expertise in threat intelligence, vulnerability research, and enterprise security. Covers zero-days, ransomware, and nation-state operations for 50,000+ security professionals every morning.
