DNS Rebinding Vulnerability in GenieACS MCP Streamable HTTP Transport
The genieacs-mcp package fails to validate Host and Origin headers on loopback listeners, allowing unauthorized web pages to perform DNS rebinding and invoke administrative GenieACS tools via an unauthenticated MCP interface.
CVE search metadata
CVE search record: CVE-2026-55637. KEV: no. Product: genieacs-mcp (<= 0.3.1). Brief: DNS Rebinding Vulnerability in GenieACS MCP Streamable HTTP Transport. Brief link: https://feed.craftedsignal.io/briefs/2026-08-genieacs-mcp-dns-rebinding/
The genieacs-mcp package (versions <= 0.3.1) is vulnerable to a DNS rebinding attack that exploits an unauthenticated Streamable HTTP MCP endpoint. By default, the package binds to 127.0.0.1:8080 and does not enforce authentication, relying on the loopback address as a security boundary. However, browsers can be coerced into sending requests to this loopback address via DNS rebinding from a malicious web page. Because the MCP server fails to validate Host and Origin headers, it accepts these requests, allowing the attacker to initialize an MCP session and execute sensitive device management tools. This vulnerability effectively permits remote control over the underlying GenieACS NBI interface, enabling actions such as device reboots, firmware updates, and modification of TR-069 configuration parameters.
Attack Chain
- The victim visits an attacker-controlled website which initiates a DNS rebinding sequence against an internal or localhost domain.
- The browser is directed to resolve a malicious domain to
127.0.0.1, bypassing the Same-Origin Policy. - The malicious website sends a crafted HTTP POST request to the local
genieacs-mcplistener at127.0.0.1:8080/mcp. - The
genieacs-mcpserver processes the request without verifying theHostorOriginheaders, assuming the loopback traffic is benign. - The attacker initializes an MCP session by sending a JSON-RPC
initializerequest, receiving a session ID. - The attacker invokes administrative tools such as
get_parameterorreboot_deviceviatools/call. - The
genieacs-mcpbackend relays these authenticated tool calls to the target GenieACS NBI, leading to unauthorized device management actions.
Impact
Successful exploitation allows a remote attacker to act as an authenticated user of the GenieACS MCP interface. This results in unauthorized control over device fleets, including the ability to reboot CPE devices, initiate firmware downloads, and modify TR-069 device parameters. Exposure of these management interfaces presents a significant risk to the integrity and availability of the managed network devices.
Recommendation
- Upgrade
genieacs-mcpto a version that enforces strictHostandOriginheader validation for all HTTP transport requests, including loopback. - For current deployments, implement a reverse proxy or WAF layer that rejects requests to the MCP endpoint if the
HostandOriginheaders do not match expected local values (e.g.,127.0.0.1:8080orlocalhost:8080). - Require a bearer token for all HTTP transport configurations, even for local loopback interfaces, to mitigate the risk of unauthenticated requests.
- Consider migrating to the
stdiotransport mode if HTTP-based MCP bridging is not strictly required for the specific integration.
Immediate actions
Audit environment for active genieacs-mcp instances exposed to loopback or network interfaces.
Mitigations
Enforce Host/Origin header validation on the MCP gateway.
CVE-2026-55637