PT-2026-30323 · Npm · @Mobilenext/Mobile-Mcp

Published

2026-04-04

·

Updated

2026-04-04

·

CVE-2026-35394

CVSS v3.1

8.3

High

AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:H/A:H

Summary

The mobile open url tool in mobile-mcp passes user-supplied URLs directly to Android's intent system without any scheme validation, allowing execution of arbitrary Android intents, including USSD codes, phone calls, SMS messages, and content provider access.

Details

The vulnerable code passes URLs directly to adb shell am start -a android.intent.action.VIEW -d <url> without checking the URL scheme. This can enable malicious schemes such as tel:, sms:, mailto:, content://, and market:// to be executed.
Since MCP servers are designed to be operated by AI agents, which are vulnerable to prompt injection attacks, a malicious document or website could inject instructions that cause the AI to execute dangerous intents on a connected mobile device.

Impact

An attacker via prompt injection can:
  • Execute USSD codes (e.g., tel:*#06# to display IMEI - confirmed on Pixel 7a, behavior varies by device; or device-specific factory reset codes)
  • Initiate phone calls to premium rate numbers
  • Draft SMS messages with attacker-controlled content
  • Access content providers (contacts, SMS, call logs)
  • Open app installation prompts

Proof of Concept

{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mobile open url","arguments":{"device":"<id>","url":"tel:*#06#"}}}
Result: IMEI displayed on device.
{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mobile open url","arguments":{"device":"<id>","url":"sms:1234567890?body=HACKED"}}}
Result: SMS app opens with a pre-filled message.

Remediation

Upgrade to version 0.0.50 or later, which restricts mobile open url to http:// and https:// schemes by default. Users who require other URL schemes can opt in by setting MOBILEMCP ALLOW UNSAFE URLS=1.

Fix

Weakness Enumeration

Related Identifiers

CVE-2026-35394
GHSA-5QHV-X9J4-C3VM

Affected Products

@Mobilenext/Mobile-Mcp