Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-22814

CVE-2026-22814: AdonisJS Lucid Auth Bypass Vulnerability

CVE-2026-22814 is an authentication bypass flaw in AdonisJS Lucid ORM that allows attackers to overwrite internal ORM state through mass assignment. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22814 Overview

CVE-2026-22814 is a Mass Assignment vulnerability affecting @adonisjs/lucid, an SQL ORM for AdonisJS built on top of Knex. This vulnerability allows remote attackers who can influence data passed into Lucid model assignments to overwrite the internal ORM state. Exploitation may lead to logic bypasses and unauthorized record modification within affected database tables or models.

Critical Impact

Remote attackers can manipulate internal ORM state through crafted input, potentially bypassing application logic and modifying database records without authorization.

Affected Products

  • @adonisjs/lucid versions through 21.8.1
  • @adonisjs/lucid 22.x pre-release versions prior to 22.0.0-next.6

Discovery Timeline

  • 2026-01-13 - CVE CVE-2026-22814 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2026-22814

Vulnerability Analysis

This vulnerability is classified under CWE-915 (Improperly Controlled Modification of Dynamically-Determined Object Attributes), commonly known as Mass Assignment. Mass Assignment vulnerabilities occur when an application automatically binds user-supplied input to internal object properties without proper filtering or validation.

In the context of @adonisjs/lucid, the ORM allows data binding to model instances in a way that can be exploited by attackers who control the input data. By crafting malicious payloads, an attacker can overwrite internal ORM state that should not be user-modifiable, such as relationship definitions, query scopes, or other protected model attributes.

The attack requires network access and the ability to influence data that flows into Lucid model assignment operations. This typically occurs in API endpoints that accept user input and pass it directly to model creation or update methods without proper attribute filtering.

Root Cause

The root cause lies in insufficient input validation and attribute filtering within the Lucid ORM's model assignment mechanism. When user-controlled data is passed to model methods like create(), fill(), or similar assignment operations, the ORM does not adequately restrict which properties can be modified. This allows attackers to inject values for internal or protected attributes that should not be exposed to external modification.

Attack Vector

The attack is conducted over the network and requires the attacker to identify application endpoints that accept user input and pass it to Lucid model operations. Common attack scenarios include:

  • API endpoints that create or update database records based on JSON request bodies
  • Form submissions that are bound directly to model instances
  • Batch import or synchronization features that process external data

An attacker would craft a request containing additional fields targeting internal ORM properties. When the application processes this input without proper filtering, the malicious values overwrite the intended model state, potentially enabling unauthorized data modification or logic bypass.

The vulnerability does not require authentication in scenarios where the affected endpoints are publicly accessible, though the specific prerequisites depend on the target application's architecture.

Detection Methods for CVE-2026-22814

Indicators of Compromise

  • Unusual database modifications affecting fields that should not be user-modifiable
  • Application log entries showing unexpected attribute assignments in Lucid model operations
  • Requests containing suspicious property names targeting internal ORM attributes (e.g., $attributes, $original, relationship names)
  • Unexpected changes to model relationships or computed fields

Detection Strategies

  • Implement application-level logging for all model assignment operations to track attribute changes
  • Deploy Web Application Firewall (WAF) rules to detect requests with suspicious payload structures targeting ORM internals
  • Monitor database audit logs for unauthorized modifications to protected columns
  • Review application code for instances where user input is passed directly to model methods without attribute whitelisting

Monitoring Recommendations

  • Enable detailed request logging on endpoints that interact with Lucid models
  • Set up alerts for database modifications that occur outside of expected business logic patterns
  • Implement integrity monitoring for critical database records
  • Monitor for error patterns that may indicate exploitation attempts

How to Mitigate CVE-2026-22814

Immediate Actions Required

  • Upgrade @adonisjs/lucid to version 21.8.2 or later for stable releases
  • Upgrade @adonisjs/lucid to version 22.0.0-next.6 or later for pre-release versions
  • Audit all application code to identify endpoints that pass user input to Lucid model assignments
  • Implement explicit attribute whitelisting using Lucid's $fillable or $guarded model properties

Patch Information

The vulnerability has been patched in @adonisjs/lucid versions 21.8.2 and 22.0.0-next.6. For detailed patch information and security guidance, refer to the GitHub Security Advisory.

Workarounds

  • Use explicit attribute whitelisting by defining $fillable arrays on all Lucid models
  • Implement request validation middleware that strips unexpected properties before model assignment
  • Avoid passing raw user input directly to model create(), fill(), or merge() methods
  • Use Data Transfer Objects (DTOs) or form request validation to sanitize input before database operations
bash
# Update @adonisjs/lucid to patched version
npm update @adonisjs/lucid@21.8.2

# Or for pre-release channel
npm update @adonisjs/lucid@22.0.0-next.6

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAdonisjs Lucid

  • SeverityHIGH

  • CVSS Score8.2

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:H/VA:N/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
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-915
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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