GHSA-52CQ-7V8R-62C6

GHSA-52CQ-7V8R-62C6 is a high-severity improper input validation vulnerability in gmaps-mcp (pip), affecting versions <= 0.1.2. It is fixed in 0.1.3.

Does this CVE actually affect you?

Kodem shows which CVEs are reachable and running in your applications, so you fix what's exploitable, not just what's listed.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Runtime intelligence, not another scanner.

Summary

gmaps-mcp's unauthenticated HTTP transport allows unlimited Google Maps API calls at operator expense

Unauthenticated HTTP Transport Allows Unlimited Google Maps API Calls at Operator Expense

The gmaps-mcp codebase was reviewed at commit e671db68c804c9e67d51582d3280839ffa65f127 and three issues worth flagging were discovered, one high-severity, one medium, one structural. There were no preexisiting CVEs for this package yet and the repository had no prior security issues.

The primary issue is that the HTTP transport in server.py skips authentication entirely when MCP_API_KEY is not set, which is the default, since .env.example ships the key as a blank value. Any unauthenticated caller who knows the server's public URL can invoke all six tools and generate live, billed Google Maps API requests against the operator's key. Because the README explicitly instructs operators to expose the server via ngrok (ngrok http 8000, then point MCP clients at the ngrok URL), this configuration gets deployed internet-facing as a matter of normal usage.

Affected files and exact lines:

src/google_maps_mcp/server.py, lines 186–192:

expected_key = os.getenv("MCP_API_KEY")

if not expected_key:
    # If no MCP_API_KEY is set, allow all requests (development mode)
    return await call_next(request)

if api_key != expected_key:
    return JSONResponse(
        {"error": "Invalid or missing API key. Provide X-API-Key header."},
        status_code=401
    )

run.py lines 37 and 38 bind to 0.0.0.0:8000 by default (MCP_HOST=0.0.0.0, MCP_PORT=8000). No rate-limiting middleware exists anywhere in the codebase, not in the middleware stack, not in GoogleMapsClient, not in the tool handlers.

Attack model: operator deploys with default config (blank MCP_API_KEY), exposes via ngrok per the README instructions, attacker discovers the ngrok URL through ngrok's public endpoint scan surface or via a targeted test of shared URLs. No credentials needed to call the server.

PoC, reproduces from the default config:

# Start with default .env.example (MCP_API_KEY blank/unset)
export GOOGLE_MAPS_API_KEY=<operator_key>
python run.py  # binds 0.0.0.0:8000

# From attacker machine, no X-API-Key header needed:
curl -X POST http://<server>:8000/mcp/ \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocode","arguments":{"address":"Times Square New York"}}}'
# Returns geocoding results. Request billed to operator's GCP project.

The financial harm is real and accumulates fast. Google's $200/month free credit exhausts in roughly 3 hours at Places API pricing (~$17/1,000 requests) with a sustained 1 req/sec flood. More practically: any developer testing the ngrok URL, sharing it in a project thread, or posting it in a demo context creates a window where anyone with the link can silently drain quota. The attacker doesn't need the GOOGLE_MAPS_API_KEY value, they only need the MCP server URL.

Fix, three concrete changes, no new dependencies:

  1. In HTTP transport mode, refuse to start if MCP_API_KEY is unset. Add a startup check in server.py (or run.py) that exits with a clear message if the environment variable is blank when the transport is HTTP. Something like:
    if transport == "http" and not os.getenv("MCP_API_KEY"):
        raise SystemExit(
            "ERROR: MCP_API_KEY must be set before starting the HTTP server. "
            "Unset key allows unauthenticated access to all Google Maps API calls."
        )
    
  2. Update .env.example, change MCP_API_KEY= to a comment that makes the requirement explicit: # Required for HTTP transport. Generate with: python -c "import secrets; print(secrets.token_hex(32))"
  3. Add a one-line warning to the README before the ngrok step: "Before running ngrok, set MCP_API_KEY in your .env. Without it, anyone with the URL can make unlimited Google Maps API calls billed to your account."

A token-bucket rate limiter (e.g., slowapi, which is already compatible with Starlette/FastAPI-style apps) would add another layer, but the auth fix is the critical path.

The second issue is in src/google_maps_mcp/client.py at line 130:

url = f"https://places.googleapis.com/v1/places/{place_id}"

place_id comes from the MCP tool caller with no format validation and is interpolated verbatim into the URL path. httpx does not encode / or ? in f-string URLs, only when using a params= dict. A crafted place_id like ":searchText?textQuery=attacker-query" produces https://places.googleapis.com/v1/places/:searchText?textQuery=attacker-query, which routes to the text search endpoint instead of the details endpoint, with attacker-controlled query content. Injection is bounded to places.googleapis.com since the host is hardcoded, but it lets an attacker hit different endpoint semantics within that namespace and potentially force higher-cost API calls.

Fix:

import re

PLACE_ID_PATTERN = re.compile(r'^[A-Za-z0-9_\-]+(/[A-Za-z0-9_\-]+)?$')

async def get_place_details(self, place_id: str) -> dict:
    if not PLACE_ID_PATTERN.match(place_id):
        raise ValueError(f"Invalid place_id format: {place_id!r}")
    url = f"https://places.googleapis.com/v1/places/{place_id}"
    ...

Google Place IDs are alphanumeric strings with an optional places/ segment prefix. That pattern eliminates all path and query injection.

The third issue is structural and currently benign, but worth flagging given the package is installable via PyPI as gmaps-mcp.

The repository ships .claude/skills/google-maps-mcp/SKILL.md at the repo root. Claude Code and any harness using the same skill auto-discovery path pattern will auto-load this file as a system-level instruction when an agent clones the repository or opens the directory after install. The current content is legitimate usage documentation, so there's no active harm, but the file is a persistent injection surface. A future commit to SKILL.md could plant arbitrary instructions (exfiltrate environment variables, call an attacker-controlled URL before each tool response, silently modify output) that would enter agent context without any visible indicator for every developer or agent that installs gmaps-mcp.

The exposure is broader than it would be for a private repo: PyPI install means the audience includes every Claude Code, Cursor, and similar agent-enabled IDE user who pulls the package and opens it in an agent context.

Fix: Move the skill documentation out of the auto-load path. Rename it to docs/claude-skill-reference.md (not auto-loaded), or remove it and note in the README that users who want Claude Code skill integration should add the file locally. Either approach preserves the UX without leaving a standing injection surface in the install tree.

Impact

The application does not adequately validate input before processing it, allowing unexpected values to reach sensitive code paths. Typical impact: varies by context: data corruption, logic bypass, or denial of service.

Affected versions

gmaps-mcp (<= 0.1.2)

Security releases

gmaps-mcp → 0.1.3 (pip)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

Already deployed Kodem?

See it in your environmentNew to Kodem? Get a demo →

Remediation advice

Upgrade gmaps-mcp to 0.1.3 or later to resolve this vulnerability.

Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.

Frequently Asked Questions

  1. What is GHSA-52CQ-7V8R-62C6? GHSA-52CQ-7V8R-62C6 is a high-severity improper input validation vulnerability in gmaps-mcp (pip), affecting versions <= 0.1.2. It is fixed in 0.1.3. The application does not adequately validate input before processing it, allowing unexpected values to reach sensitive code paths.
  2. Which versions of gmaps-mcp are affected by GHSA-52CQ-7V8R-62C6? gmaps-mcp (pip) versions <= 0.1.2 is affected.
  3. Is there a fix for GHSA-52CQ-7V8R-62C6? Yes. GHSA-52CQ-7V8R-62C6 is fixed in 0.1.3. Upgrade to this version or later.
  4. Is GHSA-52CQ-7V8R-62C6 exploitable, and should I be worried? Whether GHSA-52CQ-7V8R-62C6 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  5. What actually determines whether GHSA-52CQ-7V8R-62C6 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  6. How do I fix GHSA-52CQ-7V8R-62C6? Upgrade gmaps-mcp to 0.1.3 or later.

Stop the waste.
Protect your environment with Kodem.