惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
N
Netflix TechBlog - Medium
G
Google Developers Blog
L
LangChain Blog
腾讯CDC
大猫的无限游戏
大猫的无限游戏
U
Unit 42
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
The GitHub Blog
The GitHub Blog
博客园_首页
GbyAI
GbyAI

NodeJS Security & NodeJS Secure Coding's Blog

Hardening Your npm and pnpm Configs in the Age of Shai-Hulud Argument Injection vulnerability in git-blame@1.4.0 Argument Injection vulnerability in `gits@0.1.8` Command Injection vulnerability in `@fab1o/git@1.4.0` Command Injection vulnerability in `git-contributors` via unsanitized CLI arguments Command Injection vulnerability in `git-q@0.0.3` Command injection vulnerability via unsanitized CLI arguments in touxing/fast-git-clone Command Injection vulnerability in `willitmerge@0.2.1` A Directory Traversal Vulnerability I found in Mastra AI Frameworks MCP Server Mastering NPX: A Cheatsheet for npm and Node.js Power Users Mitigate Supply Chain Security with DevContainers and 1Password for Node.js Local Development The Tale of the Vulnerable MCP Database Server Bad Security Defaults in Mastra AI Frameworks Templates Security Advisory for qix npm supply-chain compromise affecting debug and billions of weekly download users How to Mitigate SQL Bypass in MCP Servers Enhancing MCP Server Security: A Guide to Using execFile Argument Injection Vulnerability in ggit How to Bypass Access Control in PostgreSQL in Simple PSQL MCP Server for SQL Injection Command Injection Flaws in ggit: Unveiling a Vulnerability Command Injection Vulnerability in Create MCP Server STDIO Tool Exposes System Monitoring Functions GitHub Kanban MCP Server Command Injection Vulnerability Threatens Developer Workflows Critical Command Injection Flaw in iOS Simulator MCP Server Exposes Development Environments Command Injection Vulnerability Discovered in Codehooks MCP Server: A Critical Security Analysis SSRF Shenanigans in safe-axios: Redirects Open the Backdoor SSRF Vulnerability in safe-axios: Unintended Public Address Classification Bypassing SSRF Safeguards in ssrfcheck: A Case of Incomplete Denylists Don't Be Fooled by Multicast, SSRF Bypass in private-ip Node.js Authentication from Lucia to Better Auth Bypassing SSRF Protection in nossrf: When Your Safeguards Become Loopholes Vue CLI Security Fix to Mitigate NPM Binary Planting
SQL Injection and Bypassing "Read-Only" Mode in Xata's MC...
2025-09-13 · via NodeJS Security & NodeJS Secure Coding's Blog

The Model Context Protocol (MCP) Server provided by Xata, available at xataio/agent, is designed to facilitate agentic workflows with various database servers, including PostgreSQL. However, I identified a critical security flaw in the server’s implementation, which fails to enforce a true “read-only” mode.

This vulnerability exposes the server to SQL injection attacks, potentially leading to denial of service and unauthorized data manipulation. This article explores the vulnerability, its exploitation, and recommended mitigations.

Disclaimer: The flawed code was responsibly disclosed to the Xata team through the GitHub Security Advisory reporting mechanism upon which the maintainers decided to remove the flawed MCP server code entirely from the repository.

Impact & Affected Versions

The vulnerability arises from the assumption that the client.query() method in the PostgreSQL interface only executes a single query. In reality, the pg package allows multiple queries to be executed if separated by semicolons. This oversight can be exploited to bypass the intended “read-only” mode, allowing attackers to execute unauthorized write operations or cause service disruptions.

Affected Code

The vulnerable code is located in the mcp-postgres.ts file of the Xata repository:

// Handle tool calls

server.setRequestHandler(CallToolRequestSchema, async (request) => {

if (request.params.name === 'query') {

const sql = request.params.arguments?.sql as string;

const client = await pool.connect();

try {

await client.query('BEGIN TRANSACTION READ ONLY');

const result = await client.query(sql);

return {

content: [{ type: 'text', text: JSON.stringify(result.rows, null, 2) }],

isError: false

};

} finally {

client.release();

}

}

});

Technical Root Cause

The vulnerability stems from the naive implementation of a “read-only” transaction, which is easily bypassed by injecting additional SQL commands. For instance, an attacker can terminate the read-only transaction and execute a write operation:

COMMIT; INSERT INTO users (name, email) VALUES ('Eve', 'eve@gibson.com');

This injection effectively bypasses the read-only constraint, allowing unauthorized data manipulation.

Exploitation

Proof of Concept

Consider the following scenarios demonstrating the vulnerability:

  1. Bypassing Read-Only Mode:

    • A legitimate query:

      SELECT id, name, email FROM users WHERE id > 5 ORDER BY id;

    • An injected query that bypasses read-only mode:

      COMMIT; INSERT INTO users (name, email) VALUES ('Eve', 'eve@gibson.com');

  2. Denial of Service:

    • An injected query causing a denial of service:

      COMMIT; SET statement_timeout TO 1;

Additional Security Impacts

Even without stored procedures, attackers can exploit the MCP interface to perform administrative operations, such as terminating backend processes:

  • Retrieve process IDs:

    SELECT pid, usename, state, query FROM pg_stat_activity;

  • Terminate a process:

    SELECT pg_terminate_backend(PID);

Mitigation/Upgrade

To mitigate this vulnerability, consider the following recommendations:

  • Single Query Transactions: Ensure transactions are only effective when a single query is passed.
  • Strict Query Validation: Avoid relying solely on queries starting with SELECT. Implement strict validation to prevent multiple queries.
  • Access Control: Enforce fine-grained permissions on the database server, restricting access to specific tables and operations.
  • Query Chaining Prevention: Disallow chaining of multiple SQL queries in a single request.

FAQ

What is the primary cause of this SQL read-only bypass?

The vulnerability is primarily due to the assumption that client.query() executes only a single query, allowing attackers to inject additional commands.

How can this SQL bypass vulnerability be exploited?

Attackers can inject SQL commands to bypass the read-only mode, perform unauthorized write operations, or cause denial of service.

What steps should be taken to secure the MCP Server?

Implement strict query validation, enforce single query transactions, and apply fine-grained access controls on the database server.

References

  1. How to Mitigate SQL Bypass in MCP Servers
  2. GitHub Kanban MCP Server Vulnerability
  3. Node.js Secure Coding Practices
  4. Bypassing Access Control in PostgreSQL

Conclusion

The identified vulnerability in Xata’s MCP Server highlights the importance of robust security practices in database interactions. By understanding the root cause and implementing the recommended mitigations, developers can protect their systems from SQL injection attacks and ensure the integrity and availability of their services.

For further insights and updates, follow Liran Tal on X and explore more on GitHub.