The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-42229

CVE-2026-42229: N8n Workflow Automation SQL Injection Flaw

CVE-2026-42229 is a SQL injection vulnerability in N8n's SeaTable node that allows attackers to manipulate queries and access unauthorized data. This article covers the technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-42229 Overview

CVE-2026-42229 is a SQL injection vulnerability in n8n, an open source workflow automation platform. The flaw exists in the SeaTable node's row:search and row:get operations, where user-controlled input is concatenated directly into SQL query strings without escaping or parameterization [CWE-89]. Workflows that pass external user input through expressions into the SeaTable node's search or row retrieval parameters are exposed. An attacker can manipulate the constructed query to retrieve unintended rows from the connected SeaTable base, bypassing row-level filtering logic implemented in the workflow. The issue affects n8n versions prior to 1.123.32, 2.17.4, and 2.18.1.

Critical Impact

Authenticated attackers can bypass workflow row-level filtering and exfiltrate unintended SeaTable records through crafted input passed to the SeaTable node.

Affected Products

  • n8n versions prior to 1.123.32
  • n8n versions 2.0.0 through 2.17.3
  • n8n versions 2.18.0

Discovery Timeline

  • 2026-05-04 - CVE CVE-2026-42229 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-42229

Vulnerability Analysis

The vulnerability resides in the SeaTable integration node shipped with n8n. The node exposes row:search and row:get operations that build SQL statements to query a connected SeaTable base. Instead of using parameterized queries or escaping user input, the node concatenates expression-evaluated values directly into the query string. This allows an attacker who can influence those expression inputs to inject arbitrary SQL fragments.

The attack does not require code execution on the n8n host. It abuses the SeaTable query interface to read data the workflow author intended to gate behind filtering logic. The CWE-89 classification confirms improper neutralization of special elements used in an SQL command.

Root Cause

The SeaTable node assembles SQL queries through string concatenation using values supplied via n8n expressions. These expressions can resolve to data from prior nodes, including data sourced from webhook payloads, form submissions, or other external triggers. Because the values bypass parameterization, characters such as quotes and SQL clauses are interpreted as part of the query syntax rather than as literal data.

Attack Vector

Exploitation requires a workflow where untrusted input flows into the SeaTable node's search or row parameters. An attacker triggers the workflow with crafted input that closes the original predicate and appends a clause such as OR 1=1 or a UNION SELECT to alter the query result set. The constructed query then returns rows that the workflow's filter conditions would normally exclude. Because the network attack vector applies, any externally reachable trigger that feeds into the vulnerable node is sufficient. No verified public proof-of-concept code is available at this time. See the n8n GitHub Security Advisory GHSA-mp4j-h6gh-f6mp for vendor technical details.

Detection Methods for CVE-2026-42229

Indicators of Compromise

  • SeaTable query logs containing unexpected SQL syntax such as stacked predicates, UNION, comment markers (--, /*), or unbalanced quotes originating from n8n workflow executions.
  • n8n execution history showing SeaTable node outputs that return more rows than the workflow's filter logic should permit.
  • Webhook or form trigger payloads containing single quotes, SQL keywords, or boolean tautologies routed into SeaTable operations.

Detection Strategies

  • Audit all n8n workflows that use the SeaTable node and identify operations of type row:search or row:get whose parameters reference upstream expression data.
  • Inspect SeaTable server-side query logs for malformed or anomalous SQL emitted by the n8n integration user.
  • Compare row counts and field values returned by SeaTable nodes against the workflow's documented filter intent to surface bypassed restrictions.

Monitoring Recommendations

  • Forward n8n execution logs and SeaTable access logs to a centralized analytics platform for correlation of trigger inputs with downstream query outputs.
  • Alert on SeaTable queries originating from the n8n service account that contain SQL metacharacters not present in legitimate workflow templates.
  • Track the running n8n version across all instances and flag deployments below 1.123.32, 2.17.4, or 2.18.1.

How to Mitigate CVE-2026-42229

Immediate Actions Required

  • Upgrade n8n to version 1.123.32, 2.17.4, or 2.18.1 depending on the deployed release branch.
  • Inventory workflows using the SeaTable node and identify any that pass externally sourced data into row:search or row:get operations.
  • Rotate SeaTable API tokens used by n8n if logs indicate possible exploitation prior to patching.

Patch Information

The vendor patched the issue in n8n versions 1.123.32, 2.17.4, and 2.18.1. The fix replaces unsafe string concatenation in the SeaTable node with proper escaping or parameterization of user-supplied values. Refer to the n8n GitHub Security Advisory GHSA-mp4j-h6gh-f6mp for the official advisory.

Workarounds

  • Sanitize and validate all expression inputs feeding the SeaTable node, rejecting characters such as single quotes and SQL keywords before they reach the node parameters.
  • Restrict workflows containing SeaTable row:search or row:get operations so they cannot be invoked by untrusted external triggers until patched.
  • Apply least-privilege scoping to the SeaTable API credentials used by n8n so a successful injection cannot reach bases beyond the intended scope.
bash
# Upgrade n8n via npm to a fixed release
npm install -g n8n@2.18.1

# Or pull the patched Docker image
docker pull n8nio/n8n:2.18.1
docker stop n8n && docker rm n8n
docker run -d --name n8n -p 5678:5678 n8nio/n8n:2.18.1

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechN8n

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:N/VI:N/VA:N/SC:H/SI:H/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42233: N8n Workflow Automation SQL Injection Flaw

  • CVE-2026-42237: N8n Workflow Automation SQL Injection Flaw

  • CVE-2026-33713: n8n Workflow Automation SQL Injection Flaw

  • CVE-2026-27497: n8n Workflow Automation SQL Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English