
Quick Answer: What is CVE-2026-8037?
CVE-2026-8037 is a critical (CVSS 9.8) OS command injection vulnerability affecting the management API of several Progress ADC products, most notably the Kemp LoadMaster. It allows an unauthenticated attacker to execute arbitrary commands as root on the appliance by sending a specially crafted JSON payload to the /accessv2 endpoint. Because LoadMasters sit at the network edge, exploiting this flaw grants attackers deep access to internal enterprise networks. Immediate Action: Upgrade all affected Progress ADC products to the latest patched versions as directed by the vendor.
Understanding the Progress LoadMaster Exploit
Progress Kemp LoadMaster is a highly popular Application Delivery Controller (ADC) and load balancer used by enterprises to distribute traffic across backend servers, handle TLS termination, and act as a Web Application Firewall (WAF). Because it occupies a privileged position at the edge of a network, any vulnerability found within it is incredibly dangerous.
The core of CVE-2026-8037 lies in a memory-safety defect combined with a classic command injection flaw:
- The Flawed Function: A function named
escape_quotes()is designed to sanitize user input to prevent command injection. - Uninitialized Memory: The function allocates a memory buffer using
malloc()but fails to zero-fill it. - Missing Null Terminator: Most critically, the function forgets to place a null terminator at the end of the sanitized string.
- The Exploit Execution: Because there is no null terminator, the system reads past the intended string and executes attacker-controlled bytes (injected via extra JSON keys) as root shell commands.
How to Fix Helldivers 2 Error 55 (Connection Retry Guide 2026)
Affected Products and Patch Status
Progress Software has released patches for the affected products. It is vital to check your infrastructure against the list below.
| Affected Progress Product | Vulnerable Versions | Fixed Versions |
|---|---|---|
| Progress LoadMaster | V7.2.60.0 to < V7.2.63.2 | V7.2.63.2 and later |
| LoadMaster LTSF | V7.2.45.12 to < V7.2.54.18 | V7.2.54.18 and later |
| ECS & Object Scale Connection Manager | V7.2.60.0 to < V7.2.63.2 | V7.2.63.2 and later |
| MOVEit WAF | V7.2.60.0 to < V7.2.63.2 | V7.2.63.2 and later |
Related Topics
When a vulnerability of this magnitude drops, cybersecurity professionals scramble for specifics. Here are the top five search queries related to CVE-2026-8037 and the answers defenders need:
-
1. “Is CVE-2026-8037 actively exploited in the wild?”
Explanation: Defenders need to know if threat actors are actively using this exploit against live targets.
Short Answer: Yes. As of early August 2026, the US Cybersecurity and Infrastructure Security Agency (CISA) added CVE-2026-8037 to its Known Exploited Vulnerabilities (KEV) catalog, confirming active exploitation. -
2. “Kemp LoadMaster CVE-2026-8037 PoC exploit”
Explanation: Security researchers look for Proof of Concept (PoC) code to test their own systems and validate network defenses.
Short Answer: Detailed technical write-ups and functional PoCs are publicly available. Attackers target the/accessv2endpoint with a malicious JSON body containing unexpected keys padded with command payloads. -
3. “How to mitigate CVE-2026-8037 without patching”
Explanation: Organizations unable to schedule immediate downtime seek temporary workarounds.
Short Answer: The most effective mitigation (other than patching) is to completely restrict access to the LoadMaster Management API interface so it is not exposed to the public internet. Only allow access from trusted internal IP addresses via strict firewall rules. -
4. “CVSS score CVE-2026-8037”
Explanation: Assessing the severity to prioritize remediation efforts.
Short Answer: The vulnerability carries a CVSS 3.1 base score of 9.8 (Critical). It is network-reachable, requires low complexity, needs zero authentication, and results in a total compromise of the appliance. -
5. “Progress ADC security bulletin June 2026”
Explanation: IT admins searching for the official vendor guidance and release notes.
Short Answer: Progress Software issued an emergency security bulletin detailing the fix. The developers corrected the flaw by swapping themallocallocation to acalloc(which zero-fills the buffer) and adding a definitive null terminator at the end of the sanitization loop.
Next Steps for IT Security Teams
If you discover that your LoadMaster instances were exposed to the internet prior to patching, you must assume compromise. The CISA Known Exploited Vulnerabilities Catalog mandates that federal agencies immediately isolate and forensically analyze affected hardware. For a broader perspective on managing critical enterprise risks, refer to our internal guide on developing an incident response playbook for zero-day vulnerabilities.
TL;DR: The CVE-2026-8037 Checklist
- The Threat: A CVSS 9.8 Remote Code Execution (RCE) flaw allowing attackers to run root commands on Progress Kemp LoadMasters without logging in.
- The Mechanism: A missing null terminator in the API’s JSON parsing logic allows commands injected into the payload to be executed by the underlying OS.
- Active Exploitation: Threat actors are actively using this vulnerability in the wild, prompting a CISA KEV listing.
- The Fix: Immediately upgrade all affected Progress ADC products to version V7.2.63.2 (or LTSF V7.2.54.18) and above.
- The Mitigation: Ensure the management API is completely walled off from the public internet.