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-2023-30253

CVE-2023-30253: Dolibarr ERP/CRM RCE Vulnerability

CVE-2023-30253 is a remote code execution vulnerability in Dolibarr ERP/CRM that allows authenticated attackers to execute code via PHP tag manipulation. This article covers technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2023-30253 Overview

CVE-2023-30253 is a remote code execution vulnerability affecting Dolibarr ERP/CRM versions prior to 17.0.1. The vulnerability allows authenticated users to execute arbitrary code on the server by exploiting a case-sensitivity bypass in PHP tag filtering. By using uppercase PHP tags (<?PHP instead of <?php), attackers can inject malicious PHP code that bypasses input validation mechanisms.

Critical Impact

Authenticated attackers can achieve full remote code execution on vulnerable Dolibarr installations, potentially leading to complete system compromise, data exfiltration, and lateral movement within the network.

Affected Products

  • Dolibarr ERP/CRM versions before 17.0.1
  • All installations with default PHP tag filtering mechanisms
  • Self-hosted and cloud-deployed Dolibarr instances

Discovery Timeline

  • 2023-05-29 - CVE CVE-2023-30253 published to NVD
  • 2025-01-14 - Last updated in NVD database

Technical Details for CVE-2023-30253

Vulnerability Analysis

This remote code execution vulnerability exists due to improper input validation in Dolibarr's content filtering mechanism. The application implements a filter designed to prevent PHP code injection by blocking the standard <?php opening tag. However, the filter performs case-sensitive matching, which fails to account for PHP's case-insensitive handling of opening tags. Since PHP interprets <?PHP, <?Php, and other case variations identically to <?php, attackers can trivially bypass the security filter while still achieving code execution.

The vulnerability is classified under CWE-78 (OS Command Injection), indicating that successful exploitation allows attackers to execute arbitrary operating system commands through the injected PHP code. This represents a critical security boundary violation where user-supplied input can influence command execution on the underlying server.

Root Cause

The root cause is a flawed input validation approach that relies on exact string matching rather than case-insensitive pattern matching. The filter checks for the lowercase <?php string but fails to normalize input or use case-insensitive comparison. This oversight allows uppercase variants like <?PHP to pass through the filter undetected. PHP's parser treats all case variations of the opening tag equivalently, meaning the injected code executes normally despite bypassing the intended security control.

Attack Vector

The attack requires network access and valid authentication credentials to the Dolibarr application. An authenticated user can inject PHP code into data fields that are subsequently processed or rendered by the application. By substituting the standard <?php tag with <?PHP or similar case variations, the attacker's code bypasses the filter and executes when the data is processed.

The exploitation technique is straightforward:

  1. Authenticate to the Dolibarr application with valid credentials
  2. Identify input fields that accept user data and are later processed by PHP
  3. Inject malicious PHP code using uppercase opening tags (e.g., <?PHP system($_GET['cmd']); ?>)
  4. Trigger the execution of the injected code through normal application functionality

The vulnerability requires no user interaction beyond the initial authentication, and the low attack complexity combined with the potential for complete system compromise makes this a particularly dangerous flaw.

Detection Methods for CVE-2023-30253

Indicators of Compromise

  • Presence of PHP code with uppercase tags (<?PHP, <?Php, etc.) in database fields, uploaded files, or application logs
  • Unexpected outbound network connections from the Dolibarr web server
  • New or modified files in web-accessible directories with suspicious PHP content
  • Unusual process execution from the web server user account (e.g., www-data, apache)

Detection Strategies

  • Implement web application firewall (WAF) rules to detect case-insensitive PHP tag patterns in request parameters
  • Monitor application logs for requests containing encoded or obfuscated PHP tags
  • Deploy endpoint detection and response (EDR) solutions to identify suspicious process spawning from web server processes
  • Conduct regular database audits to identify stored PHP code with non-standard tag casing

Monitoring Recommendations

  • Enable verbose logging for Dolibarr application activities and review for anomalous input patterns
  • Configure SIEM alerts for command execution patterns originating from web server processes
  • Monitor file integrity on Dolibarr installation directories for unauthorized modifications
  • Track authentication events and correlate with subsequent suspicious activity patterns

How to Mitigate CVE-2023-30253

Immediate Actions Required

  • Upgrade Dolibarr to version 17.0.1 or later immediately
  • Audit existing database content for injected PHP code using case-insensitive searches
  • Review access logs to identify potential exploitation attempts
  • Restrict network access to Dolibarr instances while patching is in progress

Patch Information

The vulnerability has been addressed in Dolibarr version 17.0.1. Organizations running affected versions should upgrade immediately. Detailed information about the vulnerability and remediation steps can be found in the Swascan Security Advisory for Dolibarr 17.0.0. The official Dolibarr GitHub repository contains the patched source code and release notes.

Workarounds

  • Implement strict input validation at the web server level using case-insensitive patterns to block all PHP tag variations
  • Deploy a web application firewall with rules specifically targeting PHP code injection attempts
  • Restrict file upload functionality and disable any features that allow user-controlled content to be processed as PHP
  • Limit user privileges to reduce the potential impact of compromised accounts

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechDolibarr

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability88.22%

  • 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-78
  • Technical References
  • GitHub Dolibarr Project
  • Vendor Resources
  • Swascan Security Blog

  • Swascan Security Advisory Dolibarr 17.0.0
  • Related CVEs
  • CVE-2026-34036: Dolibarr LFI Information Disclosure Flaw

  • CVE-2019-25450: Dolibarr ERP/CRM SQLi Vulnerability

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

  • 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