The vulnerability, CVE-2026-82533, is an authentication bypass in the DeepSeek Harness local HTTP control-plane API. The root cause of the vulnerability was an improper trust of the client-supplied Host header. The analysis of the patch commit 3e24087bfaeabe40b58ba2f7b936895b8f93fe27 reveals that the isTrustedRequest function in packages/client/connection/src/api-request-trust.ts was the primary source of this vulnerability. This function incorrectly assumed that a request with a Host header pointing to a loopback address was always from a local and trusted source. An attacker could spoof this header to bypass authentication.
The request handler within the createServer function in packages/client/connection/src/host-fiber.ts used this vulnerable isTrustedRequest function as its main security gate. If the check passed, the request was forwarded to the API handler, allowing the execution of privileged operations. The patch addresses this by introducing a more robust token-based authentication mechanism and removing the implicit trust in the Host header, even for loopback addresses. Therefore, both isTrustedRequest and the request handler in createServer are identified as the key vulnerable functions that would appear in a runtime profile during exploitation.