Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-34036 — Proof-of-concept script demonstrating an authenticated local file inclusion (LFI) vulnerability in Dolibarr via the objectdesc parameter, allowing authenticated users to read arbitrary local files. | Kitploit
Tools/GitHubGitHub/cnf409/cve-2026-34036
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubcnf409/cve-2026-34036

CVE-2026-34036

Proof-of-concept script demonstrating an authenticated local file inclusion (LFI) vulnerability in Dolibarr via the objectdesc parameter, allowing authenticated users to read arbitrary local files.

View Repository
14 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-34036

Proof-of-concept script for CVE-2026-34036, an authenticated local file inclusion / LFI in Dolibarr.

The issue is reachable through core/ajax/selectobject.php. An authenticated user can abuse the objectdesc parameter to make the application read arbitrary local files on the server.

This repository contains a simple script that logs into Dolibarr, triggers the vulnerable endpoint, and prints the contents of the requested file.

Read the full report here: full write-up on my website

Requirements

  • Python 3
  • requests
  • Valid Dolibarr credentials

Install the dependency if needed:

root@kitploit:~
python3 -m pip install requests

Usage

Run the script with the target URL, a valid username/password, and the file you want to read:

root@kitploit:~
python3 CVE-2026-34036.py \
  --url http://127.0.0.1:8080 \
  --username admin \
  --password admin \
  --file conf/.htaccess

Notes

  • The vulnerability requires authentication.
  • The file path is relative to the Dolibarr web root as used by the vulnerable endpoint.
  • The script trims common PHP warning/fatal error noise from the response output.

Disclaimer

This PoC is provided for educational and authorized security testing purposes only. Do not use it against systems you do not own or do not have explicit permission to test.

Download Tool