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
    • 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-2022-0944

CVE-2022-0944: Sqlpad Template Injection RCE Vulnerability

CVE-2022-0944 is a template injection vulnerability in Sqlpad's connection test endpoint that enables remote code execution. Versions prior to 6.10.1 are affected. This article covers technical details, impact, and mitigations.

Published: February 17, 2026

CVE-2022-0944 Overview

CVE-2022-0944 is a template injection vulnerability in the connection test endpoint of SQLPad, a web-based SQL editor. This flaw allows attackers with authenticated access to achieve Remote Code Execution (RCE) on the underlying server. The vulnerability affects all versions of SQLPad prior to 6.10.1 and stems from improper handling of template strings in connection configurations.

Critical Impact

Authenticated attackers can exploit template injection in the connection test endpoint to execute arbitrary code on the server, potentially leading to complete system compromise.

Affected Products

  • SQLPad versions prior to 6.10.1
  • SQLPad web-based SQL editor installations

Discovery Timeline

  • 2022-03-15 - CVE CVE-2022-0944 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-0944

Vulnerability Analysis

This vulnerability is classified under CWE-1336 (Improper Neutralization of Special Elements Used in a Template Engine) and CWE-94 (Improper Control of Generation of Code). The flaw exists in the connection rendering functionality of SQLPad, where user-controlled input is processed through an unsafe template engine without proper sanitization.

The vulnerable code utilized Lodash's template functionality to process connection configuration strings. Lodash templates, when not properly constrained, allow arbitrary JavaScript code execution through template expressions. An attacker with valid credentials could craft malicious template syntax within connection parameters that would be evaluated server-side during connection testing operations.

Root Cause

The root cause lies in the use of Lodash's template engine for processing connection configuration strings. Lodash templates support arbitrary JavaScript execution through expressions like ${...} or <%= ... %>, making them dangerous when processing user-controlled input. The application failed to implement proper input sanitization or use a safe template engine designed for untrusted input.

Attack Vector

The attack is network-accessible and requires high privileges (authenticated access). An attacker must have valid credentials to access the connection test endpoint. Once authenticated, they can inject malicious template expressions into connection configuration fields. When the application processes these templates during a connection test, the injected code executes on the server with the privileges of the SQLPad process.

The security patch replaced the vulnerable Lodash template processing with Mustache, a logic-less template engine that does not evaluate arbitrary code:

javascript
-const _ = require('lodash');
+const mustache = require('mustache');
+
+// Disable HTML escaping. We're not using it for HTML
+mustache.escape = function (text) {
+  return text;
+};
 
 /**
  * Iterates over connection object, replacing any template strings with values from user

Source: GitHub Commit

Detection Methods for CVE-2022-0944

Indicators of Compromise

  • Unusual connection test requests containing template syntax characters such as ${, <%=, or %>
  • Unexpected process spawning from the SQLPad application process
  • Anomalous outbound network connections originating from the SQLPad server
  • Error logs containing template parsing errors or JavaScript execution traces

Detection Strategies

  • Monitor SQLPad application logs for connection test operations with suspicious payload patterns
  • Implement web application firewall (WAF) rules to detect template injection attempts in HTTP request bodies
  • Deploy endpoint detection to identify unauthorized child processes spawned by the SQLPad service
  • Enable audit logging for all connection configuration changes and test operations

Monitoring Recommendations

  • Review SQLPad access logs for unusual authentication patterns or privilege escalation attempts
  • Monitor file system integrity on servers running SQLPad for unauthorized modifications
  • Track network connections from SQLPad servers to detect potential data exfiltration or reverse shell activity
  • Set up alerts for any new user account creation or permission changes within SQLPad

How to Mitigate CVE-2022-0944

Immediate Actions Required

  • Upgrade SQLPad to version 6.10.1 or later immediately
  • Review SQLPad access logs for any suspicious connection test activity prior to patching
  • Audit user accounts with access to SQLPad and remove unnecessary privileges
  • Consider temporarily restricting network access to the SQLPad instance until patching is complete

Patch Information

The vulnerability has been addressed in SQLPad version 6.10.1. The fix replaces the vulnerable Lodash template engine with Mustache, a logic-less template system that prevents code injection. The patch is available in commit 3f92be386c6cd3e5eba75d85f0700d3ef54daf73. Organizations should update to version 6.10.1 or later by pulling the latest release from the official SQLPad GitHub repository.

Workarounds

  • Restrict access to the SQLPad application to trusted users only via network segmentation or access controls
  • Implement a reverse proxy with WAF capabilities to filter potentially malicious template syntax from requests
  • Disable or restrict access to the connection test functionality if not operationally required
  • Run SQLPad in a containerized environment with minimal privileges to limit blast radius in case of exploitation
bash
# Configuration example
# Restrict SQLPad access via firewall rules (example using iptables)
iptables -A INPUT -p tcp --dport 3000 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 3000 -j DROP

# Run SQLPad with limited user privileges
useradd -r -s /bin/false sqlpad
chown -R sqlpad:sqlpad /opt/sqlpad
su -s /bin/bash -c "node /opt/sqlpad/server.js" sqlpad

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechSqlpad

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability73.19%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1336

  • CWE-94
  • Technical References
  • Huntr Bounty Reference
  • Vendor Resources
  • GitHub Commit Update
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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