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-2026-34036

CVE-2026-34036: Dolibarr LFI Information Disclosure Flaw

CVE-2026-34036 is a local file inclusion vulnerability in Dolibarr ERP/CRM that allows authenticated users to read arbitrary non-PHP files. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-34036 Overview

CVE-2026-34036 is a Local File Inclusion (LFI) vulnerability discovered in Dolibarr, an open-source enterprise resource planning (ERP) and customer relationship management (CRM) software package. The vulnerability exists in the core AJAX endpoint /core/ajax/selectobject.php and allows authenticated users with no specific privileges to read arbitrary non-PHP files on the server by manipulating the objectdesc parameter.

The vulnerability exploits a fail-open logic flaw in the core access control function restrictedArea(), which improperly handles authorization checks. This enables attackers to bypass access controls and retrieve sensitive server-side files including .env configuration files, .htaccess files, configuration backups, and application logs.

Critical Impact

Authenticated users can read sensitive server files including environment configurations, credentials, and logs through a vulnerable AJAX endpoint.

Affected Products

  • Dolibarr version 22.0.4 and prior versions

Discovery Timeline

  • 2026-03-31 - CVE CVE-2026-34036 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34036

Vulnerability Analysis

This Local File Inclusion vulnerability (CWE-98) affects the /core/ajax/selectobject.php endpoint in Dolibarr. The core issue stems from improper validation of the objectdesc parameter combined with a fail-open logic flaw in the restrictedArea() access control function.

When a user sends a crafted request to the vulnerable endpoint, the application fails to properly sanitize file path inputs, allowing directory traversal sequences to escape the intended directory. Additionally, the restrictedArea() function contains a fail-open design flaw where certain conditions cause it to grant access rather than deny it when encountering unexpected inputs.

The vulnerability allows reading of non-PHP files only, as PHP files would be executed rather than displayed. However, this limitation still exposes a significant attack surface including environment configuration files (.env), Apache configuration files (.htaccess), backup files, and application logs that may contain sensitive information such as database credentials, API keys, and user data.

Root Cause

The root cause is twofold: improper input validation on the objectdesc parameter that permits path traversal sequences, and a fail-open logic flaw in the restrictedArea() authorization function. The access control function fails to properly deny access when it encounters malformed or unexpected input, defaulting to allowing the request rather than blocking it.

Attack Vector

The attack requires network access and valid authentication credentials (any authenticated user). An attacker can exploit this vulnerability by sending crafted HTTP requests to the /core/ajax/selectobject.php endpoint with a manipulated objectdesc parameter containing path traversal sequences.

The attacker can read sensitive files such as:

  • .env files containing environment variables and credentials
  • .htaccess files revealing server configuration
  • Configuration backup files
  • Application logs potentially containing sensitive data

Due to the network-based attack vector and low attack complexity, any authenticated user within the application can exploit this vulnerability without requiring elevated privileges.

Detection Methods for CVE-2026-34036

Indicators of Compromise

  • HTTP requests to /core/ajax/selectobject.php containing path traversal sequences such as ../ in the objectdesc parameter
  • Unusual access patterns to the AJAX endpoint from authenticated sessions
  • Web server logs showing requests for sensitive file paths like .env, .htaccess, or backup files
  • Unexpected file access events in application or system logs

Detection Strategies

  • Monitor web application firewall (WAF) logs for path traversal patterns targeting the /core/ajax/selectobject.php endpoint
  • Implement file integrity monitoring on sensitive configuration files
  • Review access logs for anomalous requests to AJAX endpoints containing directory traversal characters
  • Deploy intrusion detection rules to alert on LFI attack patterns

Monitoring Recommendations

  • Enable verbose logging on the Dolibarr application to capture detailed request parameters
  • Configure security information and event management (SIEM) rules to detect path traversal attempts
  • Monitor for unusual read access to sensitive configuration files outside normal application behavior
  • Establish baseline metrics for AJAX endpoint usage to identify anomalous activity

How to Mitigate CVE-2026-34036

Immediate Actions Required

  • Review and restrict access to the Dolibarr application to trusted users only
  • Implement web application firewall rules to block path traversal sequences in requests to /core/ajax/selectobject.php
  • Audit existing user accounts and remove unnecessary access
  • Move sensitive configuration files outside the web root where possible

Patch Information

At the time of publication, there are no publicly available patches for this vulnerability. Organizations should monitor the Dolibarr GitHub repository for updates and apply patches as soon as they become available. Additional details can be found in the GitHub Security Advisory GHSA-2mfj-r695-5h9r.

Workarounds

  • Restrict network access to the Dolibarr application using firewall rules or VPN requirements
  • Implement additional authentication layers such as multi-factor authentication
  • Deploy a web application firewall with rules to detect and block LFI attack patterns
  • Move sensitive files such as .env and configuration backups outside the web-accessible directory structure
  • Consider temporarily disabling the vulnerable AJAX endpoint if not critical to business operations
bash
# Example WAF rule to block path traversal in objectdesc parameter
# Add to .htaccess or web server configuration
RewriteEngine On
RewriteCond %{QUERY_STRING} objectdesc=.*\.\./ [NC,OR]
RewriteCond %{QUERY_STRING} objectdesc=.*%2e%2e%2f [NC]
RewriteRule ^core/ajax/selectobject\.php$ - [F,L]

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechDolibarr

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-98
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-2mfj-r695-5h9r
  • Related CVEs
  • CVE-2019-25450: Dolibarr ERP/CRM SQLi Vulnerability

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

  • CVE-2025-69634: Dolibarr ERP & CRM CSRF Vulnerability

  • CVE-2020-36966: Dolibarr LDAP XSS 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