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-2019-25452

CVE-2019-25452: Dolibarr ERP/CRM SQLi Vulnerability

CVE-2019-25452 is an SQL injection flaw in Dolibarr ERP/CRM 10.0.1 that lets unauthenticated attackers execute arbitrary SQL queries via the elemid parameter. This article covers technical details, impact, and mitigation.

Published: February 27, 2026

CVE-2019-25452 Overview

CVE-2019-25452 is a SQL Injection vulnerability affecting Dolibarr ERP/CRM version 10.0.1. The vulnerability exists in the elemid POST parameter of the viewcat.php endpoint, allowing unauthenticated attackers to execute arbitrary SQL queries against the underlying database. This flaw enables malicious actors to extract sensitive business data, user credentials, and other confidential information stored within the ERP/CRM system without requiring any authentication.

Critical Impact

Unauthenticated attackers can exploit this SQL injection vulnerability to extract sensitive database information including customer records, financial data, and user credentials from Dolibarr ERP/CRM installations.

Affected Products

  • Dolibarr ERP/CRM version 10.0.1

Discovery Timeline

  • 2026-02-22 - CVE-2019-25452 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2019-25452

Vulnerability Analysis

This SQL injection vulnerability (CWE-89) stems from improper input validation in the Dolibarr ERP/CRM web application. The viewcat.php endpoint fails to properly sanitize user-supplied input in the elemid POST parameter before incorporating it into SQL queries. This allows attackers to inject malicious SQL statements that are executed by the database server with the privileges of the application's database user.

The vulnerability is particularly severe because it does not require authentication, meaning any network-accessible Dolibarr installation is at risk. Attackers can leverage both error-based and time-based blind SQL injection techniques to systematically enumerate database contents, extract sensitive information, or potentially modify data depending on database permissions.

Root Cause

The root cause of CVE-2019-25452 is the lack of proper input sanitization and parameterized queries in the viewcat.php endpoint. User-supplied data from the elemid POST parameter is directly concatenated into SQL query strings without adequate escaping or use of prepared statements. This classic SQL injection pattern allows attackers to break out of the intended query context and inject arbitrary SQL commands.

Attack Vector

The attack is conducted over the network by sending specially crafted HTTP POST requests to the vulnerable viewcat.php endpoint. Attackers construct malicious SQL payloads within the elemid parameter that manipulate the query logic. Error-based injection returns database information through error messages, while time-based blind injection uses conditional delays to infer data one character at a time. No authentication is required, making this vulnerability exploitable by any attacker with network access to the Dolibarr installation.

Technical details and exploitation information can be found in the Exploit-DB #47362 entry and the VulnCheck Advisory.

Detection Methods for CVE-2019-25452

Indicators of Compromise

  • Unusual POST requests to /viewcat.php containing SQL syntax characters such as single quotes, UNION statements, or comment markers in the elemid parameter
  • Database error messages appearing in HTTP responses that reveal table names, column names, or query structure
  • Abnormal database query patterns including time delays consistent with blind SQL injection attempts
  • Unexpected database read operations or data exfiltration from the Dolibarr database

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block SQL injection patterns in POST parameters
  • Enable and monitor database query logging for suspicious SQL statements containing UNION SELECT, SLEEP(), or BENCHMARK() functions
  • Configure intrusion detection systems (IDS) to alert on HTTP requests containing common SQL injection signatures
  • Review Dolibarr web server access logs for repeated requests to viewcat.php with varying elemid parameter values

Monitoring Recommendations

  • Monitor database performance metrics for unexpected increases in query execution time that may indicate time-based blind SQL injection
  • Set up alerts for database authentication failures or permission denied errors that may indicate attempted privilege escalation
  • Implement application-level logging to capture all requests to sensitive endpoints including viewcat.php

How to Mitigate CVE-2019-25452

Immediate Actions Required

  • Upgrade Dolibarr ERP/CRM to a patched version that addresses this SQL injection vulnerability
  • Restrict network access to the Dolibarr installation using firewall rules to limit exposure
  • Deploy a web application firewall (WAF) with SQL injection detection rules in front of the Dolibarr application
  • Review database audit logs for any evidence of prior exploitation attempts

Patch Information

Organizations running Dolibarr ERP/CRM version 10.0.1 should upgrade to a newer version that addresses this vulnerability. Consult the VulnCheck Advisory for additional guidance on remediation steps.

Workarounds

  • Implement network-level access controls to restrict access to the Dolibarr installation to trusted IP addresses only
  • Deploy a reverse proxy or WAF configured with strict SQL injection filtering rules for all POST parameters
  • Disable or restrict access to the viewcat.php endpoint if the category viewing functionality is not required
  • Consider implementing database user permissions with minimal privileges to limit the impact of successful SQL injection
bash
# Example WAF rule for ModSecurity to block SQL injection attempts
SecRule ARGS:elemid "@detectSQLi" \
    "id:1001,\
    phase:2,\
    deny,\
    status:403,\
    msg:'SQL Injection attempt detected in elemid parameter',\
    log,\
    auditlog"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechDolibarr

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/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-89
  • Technical References
  • Exploit-DB #47362

  • VulnCheck Advisory: Dolibarr SQL Injection
  • Related CVEs
  • CVE-2019-25450: Dolibarr ERP/CRM SQLi Vulnerability

  • CVE-2024-5315: Dolibarr ERP/CRM SQL Injection Vulnerability

  • CVE-2026-34036: Dolibarr LFI Information Disclosure Flaw

  • CVE-2025-69634: Dolibarr ERP & CRM CSRF Vulnerability
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