
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2026-34083 is an OAuth Authorization Code Theft vulnerability in Signal K Server, a marine data hub application, caused by the use of an unvalidated HTTP Host header to construct the OAuth2 redirect_uri in its OIDC login and logout handlers. Affected versions are >= 2.20.0 and < 2.24.0 of the signalk-server npm package. The vulnerability was published on April 2, 2026, with a patch released in version 2.24.0. It carries a CVSS v3.1 base score of 6.1 (Medium/Moderate) (Github Advisory, RedHat CVE).
The root cause is twofold and maps to CWE-346 (Origin Validation Error) and CWE-601 (Open Redirect). First, the redirectUri field in OIDCConfig (defined in types.ts) is optional with no safe default, meaning a valid OIDC configuration can exist without it, silently activating a vulnerable fallback. Second, in oidc-auth.ts, both the login handler (lines 278–282) and logout handler (lines 513–515) call req.get('host') — an attacker-controlled value — to dynamically construct the redirect_uri or post_logout_redirect_uri sent to the OIDC provider. The risk is compounded by SignalK's own official Nginx documentation, which instructs administrators to use proxy_set_header Host $host;, forwarding the client-supplied Host header unmodified to the backend and directly enabling the injection in production deployments. A proof-of-concept using a simple PowerShell Invoke-WebRequest with a spoofed Host header is publicly documented in the advisory (Github Advisory).
Successful exploitation allows an unauthenticated attacker to redirect OAuth authorization codes to an attacker-controlled domain, enabling full account takeover of any user who initiates an OIDC login flow. The attacker can exchange the stolen authorization code for access tokens and establish a session as the victim user. Additionally, the logout handler's identical flaw allows post-logout redirection to an attacker-controlled domain, creating a phishing opportunity. Availability is not impacted, but confidentiality and integrity are both affected through unauthorized account access (Github Advisory).
A proof-of-concept exploit is publicly available in the GitHub Security Advisory, consisting of a concrete PowerShell command that demonstrates the Host header injection against a live SignalK Server instance. No privileges are required, but user interaction (a victim initiating login) is needed for the authorization code to be stolen. There is no evidence of in-the-wild exploitation at this time. The EPSS score is approximately 0.026% (0.000140 per Feedly), placing it in the 8th percentile for exploitation likelihood. The vulnerability is not listed in the CISA KEV catalog (Github Advisory).
proxy_set_header Host $host;).Host header pointing to an attacker-controlled domain:$response = Invoke-WebRequest -Uri "http://<target>:3000/signalk/v1/auth/oidc/login" -Headers @{"Host"="evil.com"} -MaximumRedirection 0 -ErrorAction SilentlyContinue -UseBasicParsingLocation header in the response to confirm the redirect_uri parameter now points to evil.com:[uri]::UnescapeDataString($response.Headers.Location)redirect_uri.redirect_uri in the request, sends the OAuth authorization code to evil.com (the attacker's server) instead of the legitimate SignalK callback./signalk/v1/auth/oidc/login or /signalk/v1/auth/oidc/logout with a Host header value that does not match the server's legitimate hostname or IP address; OAuth authorization code callbacks arriving at unexpected external domains.Host header values (e.g., external domains instead of localhost or the configured server hostname); OIDC provider logs showing redirect_uri values pointing to unregistered or unexpected domains.Upgrade Signal K Server to version 2.24.0 or later, which patches the vulnerable Host header usage in both the login and logout OIDC handlers (SignalK Release). As an immediate workaround for those unable to upgrade, explicitly set the redirectUri field in the OIDC configuration — this bypasses the vulnerable dynamic fallback and uses the configured static value instead. Additionally, modify the Nginx reverse proxy configuration to replace proxy_set_header Host $host; with proxy_set_header Host $host; → a hardcoded server hostname, preventing the client-supplied Host header from reaching the backend (Github Advisory).
The vulnerability was reported by researcher VashuVats and published by SignalK maintainer tkurki on April 1, 2026. The advisory notably highlights that SignalK's own official documentation actively enabled the attack by recommending an Nginx configuration that forwards the client Host header unmodified, a detail that drew attention to the compounding risk of insecure-by-default documentation. No significant broader media coverage or social media discussion has been identified beyond the GitHub advisory and vulnerability database entries (Github Advisory).
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."