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

CVE-2026-28516: openDCIM SQL Injection Vulnerability

CVE-2026-28516 is a SQL injection vulnerability in openDCIM version 23.04 that allows authenticated attackers to execute arbitrary SQL statements. This post covers technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-28516 Overview

openDCIM version 23.04, through commit 4467e9c4, contains a SQL injection vulnerability in Config::UpdateParameter. The install.php and container-install.php handlers pass user-supplied input directly into SQL statements using string interpolation without prepared statements or proper input sanitation. An authenticated user can execute arbitrary SQL statements against the underlying database, potentially leading to complete database compromise, data exfiltration, or remote code execution.

Critical Impact

This SQL injection vulnerability allows authenticated attackers to execute arbitrary SQL statements against the underlying database, potentially enabling data theft, database manipulation, or escalation to remote code execution through database features.

Affected Products

  • openDCIM version 23.04
  • openDCIM commits up to and including 4467e9c4

Discovery Timeline

  • 2026-02-27 - CVE CVE-2026-28516 published to NVD
  • 2026-03-02 - Last updated in NVD database

Technical Details for CVE-2026-28516

Vulnerability Analysis

This vulnerability is classified as CWE-89 (SQL Injection), a critical web application security flaw that occurs when user-controlled input is incorporated into SQL queries without proper sanitization or parameterization. In openDCIM's case, the Config::UpdateParameter function accepts user input that flows through the install.php and container-install.php handlers directly into database queries.

The fundamental issue stems from the use of string interpolation to construct SQL statements rather than using prepared statements with parameterized queries. This architectural flaw allows an authenticated attacker to inject malicious SQL syntax that alters the intended query logic, enabling them to read, modify, or delete database contents, and potentially achieve remote code execution through database-specific features like INTO OUTFILE or user-defined functions.

Root Cause

The root cause of this vulnerability is improper input handling in the Config::UpdateParameter function within openDCIM. The application uses string concatenation or interpolation to build SQL queries, directly embedding user-supplied values without utilizing prepared statements or input sanitization. This violates secure coding best practices for database interaction and creates a direct path for SQL injection attacks.

The vulnerable code paths exist in both install.php and container-install.php, which handle configuration parameter updates. Technical details of the vulnerable code can be reviewed in the GitHub Installation Code Snippet and GitHub Configuration Code Snippet.

Attack Vector

The attack is network-based and requires authentication to the openDCIM application. An authenticated attacker can craft malicious input containing SQL syntax and submit it through the configuration update functionality. The injected SQL payload is then executed against the database with the privileges of the application's database user.

Security researcher Chocapikk has documented how this SQL injection vulnerability can be escalated to remote code execution. For detailed technical analysis, see the SQLi to RCE writeup and the exploit repository.

The vulnerability manifests when user input is passed to the Config::UpdateParameter function without proper sanitization. An attacker can inject SQL statements by manipulating parameter values sent to the install.php or container-install.php endpoints. The malicious SQL is then concatenated into the query string and executed, allowing the attacker to perform unauthorized database operations.

Detection Methods for CVE-2026-28516

Indicators of Compromise

  • Unusual SQL error messages in web application logs, particularly from install.php or container-install.php
  • Unexpected database queries containing SQL injection patterns (e.g., UNION SELECT, ' OR 1=1, comment sequences like -- or /*)
  • Evidence of data exfiltration or unauthorized database access in MySQL/MariaDB query logs
  • Web server access logs showing suspicious requests to configuration endpoints with encoded or malformed parameters

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block common SQL injection patterns targeting the install.php and container-install.php endpoints
  • Enable database query logging and monitor for anomalous query patterns, particularly those involving system tables or file operations
  • Deploy SentinelOne Singularity XDR to detect post-exploitation activities such as database-to-shell pivoting or suspicious file writes
  • Configure intrusion detection systems to alert on SQL injection attack signatures in HTTP traffic

Monitoring Recommendations

  • Monitor database audit logs for queries executed against system tables (information_schema, mysql.user) or queries containing file operation functions
  • Enable web server access logging with full request body capture for the affected endpoints during the remediation period
  • Set up alerts for any access to install.php or container-install.php after initial installation, as these should not be accessed in normal operations

How to Mitigate CVE-2026-28516

Immediate Actions Required

  • Review your openDCIM installation and identify if you are running version 23.04 or commit 4467e9c4 or earlier
  • Apply the security patch from GitHub Pull Request #1664 immediately
  • Restrict network access to the openDCIM installation to trusted IP ranges only
  • Review database logs for evidence of exploitation and audit database contents for unauthorized modifications

Patch Information

The openDCIM development team has addressed this vulnerability in Pull Request #1664. The fix implements prepared statements with parameterized queries to prevent SQL injection in the Config::UpdateParameter function. The specific code changes can be reviewed in the PR changes commit.

Organizations should update to the latest version of openDCIM that includes this fix. For additional details, see the VulnCheck advisory.

Workarounds

  • Remove or rename install.php and container-install.php files if initial installation is complete and these endpoints are no longer needed
  • Implement a web application firewall rule to block access to the affected endpoints or filter requests containing SQL injection patterns
  • Restrict database user privileges for the openDCIM application to minimum required permissions, preventing FILE privileges and access to system tables
  • Place openDCIM behind an authentication proxy or VPN to limit exposure while awaiting patching
bash
# Example: Remove installation files after setup is complete
cd /var/www/opendcim
mv install.php install.php.disabled
mv container-install.php container-install.php.disabled
chmod 000 install.php.disabled container-install.php.disabled

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechOpendcim

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • Chocapikk SQLi to RCE Post

  • GitHub openDCIM Exploit

  • GitHub Configuration Code Snippet

  • GitHub Installation Code Snippet

  • GitHub openDCIM Pull Request

  • GitHub openDCIM Pull Request Changes

  • VulnCheck openDCIM SQL Injection Advisory
  • Related CVEs
  • CVE-2026-28517: openDCIM OS Command Injection Vulnerability

  • CVE-2026-28515: openDCIM Auth Bypass 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