A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-11822

CVE-2026-11822: SQLite FTS5 RCE Vulnerability

CVE-2026-11822 is a remote code execution flaw in SQLite's FTS5 extension that enables attackers to execute arbitrary code through crafted databases. This article covers technical details, affected versions, and mitigation.

Published: June 11, 2026

CVE-2026-11822 Overview

CVE-2026-11822 is a memory corruption vulnerability in the SQLite FTS5 full-text search extension affecting versions before 3.53.2. The flaw allows attackers to cause process crashes, memory exhaustion, or arbitrary code execution by supplying a crafted database with malformed FTS5 page data. Exploitation requires a victim to execute an FTS5 MATCH query against the malicious database. The vulnerability is tracked under [CWE-122] Heap-based Buffer Overflow and impacts any application that opens untrusted SQLite databases with FTS5 enabled. SQLite addressed the issue in release 3.53.2.

Critical Impact

Attackers can achieve arbitrary code execution in the host process by inducing a heap buffer overflow through crafted FTS5 page data when a MATCH query is executed.

Affected Products

  • SQLite versions before 3.53.2
  • Applications embedding the SQLite FTS5 extension
  • Software stacks that open untrusted SQLite databases and execute MATCH queries

Discovery Timeline

  • 2026-06-09 - CVE-2026-11822 published to NVD
  • 2026-06-10 - Last updated in NVD database

Technical Details for CVE-2026-11822

Vulnerability Analysis

The vulnerability resides in the FTS5 full-text search extension, which stores tokenized index data across leaf and continuation pages inside the SQLite database file. Two distinct memory safety defects exist in the page parsing logic. The first is an out-of-bounds read in fts5LeafSeek(), where a loop bound is derived from attacker-controlled data without sufficient validation. The second is a heap buffer overflow write in fts5ChunkIterate(), triggered by a crafted continuation page that causes an integer underflow during size calculations. When the underflowed value is used as a length argument for a copy or iteration operation, the routine writes past the bounds of an allocated heap buffer. Both issues are reachable when an FTS5 MATCH query executes against the malicious database. The EPSS score is 0.013% with a percentile of 2.375.

Root Cause

The root cause is insufficient validation of length and offset fields read from FTS5 index pages. The parsers in fts5LeafSeek() and fts5ChunkIterate() trust attacker-controlled values, allowing an integer underflow to propagate into subsequent heap operations and read/write boundaries.

Attack Vector

An attacker crafts an SQLite database containing malformed FTS5 page structures. The attacker delivers the database to a target application, for example as a downloaded file, an email attachment, or content rendered by a browser engine that uses SQLite. The vulnerability triggers when the application opens the database and executes an FTS5 MATCH query against it. Exploitation requires local access and user interaction. See the VulnCheck Advisory: SQLite FTS5 for additional technical details.

No verified public proof-of-concept code is available. Technical details are described in the SQLite Source Info 061febc and SQLite Source Info 4a5ad5 commit references.

Detection Methods for CVE-2026-11822

Indicators of Compromise

  • Unexpected crashes or segmentation faults in processes that open SQLite databases, particularly when FTS5 MATCH queries execute.
  • SQLite database files received from untrusted sources containing FTS5 virtual tables with anomalous page sizes or malformed leaf/continuation pages.
  • Memory allocation spikes or out-of-memory errors in applications that embed SQLite immediately after loading a new database file.

Detection Strategies

  • Inventory applications and libraries that statically or dynamically link SQLite, then verify each instance reports version 3.53.2 or later.
  • Use file integrity monitoring on SQLite database files in shared or user-writable locations to flag introduction of untrusted .sqlite or .db files.
  • Hunt process crash telemetry for repeated faults in modules containing fts5LeafSeek or fts5ChunkIterate symbols.

Monitoring Recommendations

  • Aggregate crash and exception telemetry from endpoints into a central data lake and alert on clustered SQLite-related faults.
  • Monitor file write events that drop SQLite databases into directories consumed by privileged or network-facing applications.
  • Correlate database file arrival with subsequent process crashes within a short time window to surface exploitation attempts.

How to Mitigate CVE-2026-11822

Immediate Actions Required

  • Upgrade SQLite to version 3.53.2 or later across all systems, applications, and embedded products.
  • Rebuild and redistribute any in-house software that statically links an older SQLite amalgamation.
  • Block ingestion of SQLite database files from untrusted sources until patched builds are deployed.

Patch Information

The vulnerability is fixed in SQLite 3.53.2. The corrective commits are documented in SQLite Release Log 3.53.2, SQLite Source Info 061febc, and SQLite Source Info 4a5ad5. Operating system vendors and application maintainers should incorporate the upstream fix into downstream builds.

Workarounds

  • Disable the FTS5 extension at compile time by defining SQLITE_ENABLE_FTS5=0 if full-text search is not required.
  • Refuse to execute MATCH queries against databases originating from untrusted sources.
  • Validate database files in a sandboxed process before opening them in privileged contexts.
bash
# Verify installed SQLite version
sqlite3 --version

# Build SQLite from source without FTS5 if upgrade is not yet possible
./configure --disable-fts5
make && sudo make install

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechSqlite

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Technical References
  • SQLite Release Log 3.53.2

  • SQLite Source Info 061febc

  • SQLite Source Info 4a5ad5

  • VulnCheck Advisory: SQLite FTS5
  • Related CVEs
  • CVE-2023-32697: SQLite JDBC RCE Vulnerability

  • CVE-2026-11824: SQLite FTS5 Buffer Overflow Vulnerability

  • CVE-2025-70873: SQLite Information Disclosure Vulnerability

  • CVE-2025-6965: SQLite Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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