SEPTEMBER 13, 2026
Live Feed
Back to database
Case File

CVE-2026-50013

HIGH · CVSS 7.5 EPSS 0.27% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-13

CyberRota Analysis

AI-Generated

Hoverfly, an open-source API simulation tool, is vulnerable to a race condition in its `AddDiff()` function when running in Diff mode, allowing concurrent writes to the `responsesDiff` map without proper synchronization. This flaw can lead to a fatal error that crashes the Hoverfly process, making it easily exploitable through simultaneous proxy requests. Organizations using versions prior to 1.12.8 should prioritize upgrading to mitigate this high-severity risk.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
exploit

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-50013
Severity
HIGH
CVSS
7.5
EPSS
0.27%

Original NVD Description

Hoverfly is an open source API simulation tool. Prior to version 1.12.8, when Hoverfly is running in Diff mode, the `AddDiff()` function writes to the shared `responsesDiff` map without any synchronization (no mutex). When multiple proxy requests are processed concurrently (the normal case for any proxy), the concurrent map writes trigger Go's built-in race detector which causes a `fatal error: concurrent map read and map write`, immediately killing the entire Hoverfly process. This is trivially exploitable by sending multiple simultaneous requests. Version 1.12.8 patches the issue.