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-44446

CVE-2026-44446: ERPNext SQL Injection Vulnerability

CVE-2026-44446 is a SQL injection flaw in ERPNext that enables attackers to extract sensitive data through crafted requests. This article covers the technical details, affected versions, security impact, and patches.

Published: May 14, 2026

CVE-2026-44446 Overview

CVE-2026-44446 is a SQL injection vulnerability affecting ERPNext, a free and open source Enterprise Resource Planning (ERP) platform built on the Frappe framework. Specific endpoints accept specially crafted requests that pass unsanitized input into database queries. Authenticated attackers can exploit these endpoints to extract sensitive information stored within the ERPNext database. The issue is tracked under CWE-89: Improper Neutralization of Special Elements used in an SQL Command and is fixed in versions 15.104.3 and 16.14.0.

Critical Impact

A low-privileged authenticated attacker can extract sensitive data from the ERPNext database over the network, compromising confidentiality, integrity, and availability of business records.

Affected Products

  • ERPNext versions prior to 15.104.3
  • ERPNext versions prior to 16.14.0 in the 16.x release line
  • Deployments running on the Frappe framework that expose the vulnerable endpoints

Discovery Timeline

  • 2026-05-13 - CVE CVE-2026-44446 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44446

Vulnerability Analysis

The vulnerability resides in ERPNext endpoints that construct database queries using attacker-controlled input. Because input is not properly neutralized before reaching the SQL layer, an attacker can inject SQL syntax to alter query logic. The published advisory describes the flaw as exploitable through specially crafted requests that lead to extraction of sensitive information. Exploitation requires network access and low-privileged authentication, but no user interaction. Because ERPNext stores HR, financial, CRM, and inventory records, successful exploitation exposes business-critical data.

Root Cause

The root cause is improper neutralization of special elements used in an SQL command [CWE-89]. The affected endpoints concatenate or interpolate request parameters directly into SQL statements rather than using parameterized queries or the framework's safe query builders. The fix in 15.104.3 and 16.14.0 enforces proper sanitization and parameter binding on the previously vulnerable endpoints.

Attack Vector

The attack vector is network-based. An authenticated user sends crafted HTTP requests containing malicious SQL fragments to the vulnerable endpoints. The injected SQL is executed against the backend database, allowing the attacker to read records outside their authorization scope, including credentials, financial data, and personally identifiable information. Refer to the GitHub Security Advisory GHSA-6fm9-g88m-hxr7 for technical details. No public proof-of-concept code has been released at the time of disclosure.

Detection Methods for CVE-2026-44446

Indicators of Compromise

  • HTTP requests to ERPNext API endpoints containing SQL metacharacters such as ', --, UNION SELECT, or OR 1=1 in parameter values
  • Unusual database query patterns or long-running queries originating from the ERPNext application user
  • Authenticated sessions accessing endpoints they do not normally use, followed by large response payloads

Detection Strategies

  • Enable verbose logging on the Frappe/ERPNext application and the underlying MariaDB or PostgreSQL server to capture suspicious query syntax
  • Deploy a web application firewall (WAF) with SQL injection signatures in front of the ERPNext web tier
  • Correlate authentication events with API access patterns to identify low-privileged accounts performing atypical data retrieval

Monitoring Recommendations

  • Monitor outbound traffic from the ERPNext server for unexpected bulk data transfers indicating exfiltration
  • Alert on SQL errors returned by the application, which often accompany injection probing
  • Review audit logs for changes to user roles, permissions, or stored credentials following suspicious request activity

How to Mitigate CVE-2026-44446

Immediate Actions Required

  • Upgrade ERPNext to version 15.104.3 (15.x line) or 16.14.0 (16.x line) without delay
  • Audit all ERPNext user accounts and revoke or rotate credentials for accounts that may have been exposed
  • Review database access logs for the period preceding the patch to identify potential exploitation

Patch Information

The vulnerability is fixed in ERPNext 15.104.3 and 16.14.0. Patches and full remediation details are published in the GitHub Security Advisory GHSA-6fm9-g88m-hxr7. Self-hosted operators should apply the upgrade through standard bench workflows. Frappe Cloud tenants receive the patch through managed updates.

Workarounds

  • Restrict network access to the ERPNext instance to trusted users and VPN-connected sessions until patching is complete
  • Place a WAF in front of ERPNext with SQL injection rules enabled to block crafted payloads targeting vulnerable endpoints
  • Apply the principle of least privilege to ERPNext role profiles to reduce the data accessible to any single compromised account
bash
# Upgrade ERPNext using bench (self-hosted deployments)
bench switch-to-branch version-15 erpnext --upgrade
bench update --reset
bench --site <site-name> migrate
bench restart

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechErpnext

  • SeverityHIGH

  • CVSS Score8.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44447: ERPNext SQL Injection Vulnerability

  • CVE-2026-44448: ERPNext Authorization Bypass Vulnerability

  • CVE-2026-44445: ERPNext EDI Module XXE Vulnerability

  • CVE-2026-44442: ERPNext Authorization Bypass 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