CVE-2026-40047
CRITICAL(9.1)CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
- CVSS 9.1 — Kritisch
Erwähnungen (letzte 60 Tage)
EPSS-Score
2.4%
Exploit-Wahrscheinlichkeit (30 Tage)
CVSS Score
9.1
Technische Schwere
SecBoard-Einordnung
Security-Teams sollten die Apache Camel Docling Komponente umgehend auf die Verfügbarkeit von Patches prüfen und diese priorisiert einspielen. Falls keine Patches verfügbar sind, sollten temporäre Mitigationen implementiert werden, um die Übermittlung extern beeinflusster Daten an den CamelDoclingCustomArguments Header zu unterbinden oder streng zu validieren. Eine kontinuierliche Überwachung auf ungewöhnliche Aktivitäten im Zusammenhang mit der docling-Ausführung ist ebenfalls ratsam.
KI-gestützte Einordnung auf Basis der NVD-Daten.
Beschreibung
Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') vulnerability in Apache Camel Docling component. The camel-docling component invokes the external `docling` command-line tool by assembling an argument list in DoclingProducer and executing it through java.lang.ProcessBuilder. Custom CLI arguments supplied through the `CamelDoclingCustomArguments` exchange header (a List<String>) were appended to that argument list with insufficient validation: the original implementation relied on a denylist of disallowed flags and only rejected path values that contained a literal `../` sequence. As a result, a Camel route that forwards externally-influenced data into the `CamelDoclingCustomArguments` header (or into the path-bearing headers used to build the invocation) could cause the producer to pass unrecognized or unintended `docling` CLI flags to the subprocess, and could supply path-like argument values that resolved outside the intended directory through traversal sequences not caught by the literal `../` check. Because Camel itself builds the `docling` invocation from these values, the component is responsible for constraining them, and the weak validation allowed CLI-argument injection and directory traversal in the arguments passed to the external tool. The invocation uses the list-based form of ProcessBuilder, so a shell does not interpret the argument values; OS command injection through shell metacharacters was not possible, and the metacharacter rejection added by the fix is defense-in-depth. This issue affects Apache Camel: from 4.15.0 before 4.18.3. Users are recommended to upgrade to a release that contains the CAMEL-23212 fix. On the mainline the fix is included from Apache Camel 4.19.0 (and later releases such as 4.20.0). For users on the 4.18.x LTS releases stream, upgrade to 4.18.3. The fix replaces the denylist with a strict allowlist of recognized `docling` CLI flags (rejecting any unrecognized flag, and rejecting producer-managed flags such as the output-directory flags), defensively rejects shell metacharacters in argument values, and normalizes path-like values with Path.normalize() before validating them so that traversal sequences which bypass a literal `../` check are detected. As defence in depth, route authors should avoid mapping untrusted message content into the `CamelDoclingCustomArguments` header and the path-bearing headers, and should strip Camel-internal headers from messages that arrive from untrusted producers.
Erkennung & Indikatoren
Ausnutzung
In den geprüften Quellen nicht genannt
Behobene Versionen
- 4.18.3
- 4.19.0
Threat-Hunting-Queries
Die Schwachstelle betrifft die unzureichende Validierung von Argumenten, die an das externe 'docling'-Tool übergeben werden, was zu Argument Injection und Path Traversal führen kann. Die Detektion konzentriert sich auf die Überwachung von 'docling'-Prozessaufrufen mit ungewöhnlichen oder verdächtigen Argumenten, insbesondere solchen, die Pfad-Traversal-Sequenzen oder unbekannte CLI-Flags enthalten
Sentinel/Defender KQL
DeviceProcessEvents
| where InitiatingProcessCommandLine contains "java" and ProcessCommandLine contains "docling"
| where ProcessCommandLine matches regex @"(--[a-zA-Z0-9_-]+|-[a-zA-Z0-9])\s*(\.\./|\.\.\\|/|\\)"
or ProcessCommandLine contains "CamelDoclingCustomArguments"
| project TimeGenerated, DeviceName, InitiatingProcessCommandLine, ProcessCommandLine, FileName, FolderPathSplunk SPL
index=* sourcetype=WinEventLog:Security EventCode=4688 OR sourcetype=linux_audit type=EXECVE
| where NewProcessName="docling" OR CommandLine LIKE "%docling%"
| where CommandLine LIKE "%--% ../%" OR CommandLine LIKE "%--% ..\\%" OR CommandLine LIKE "%CamelDoclingCustomArguments%"
| table _time, host, ParentProcessName, NewProcessName, CommandLineSigma
title: Apache Camel Docling Argument Injection
status: experimental
description: Detects potential argument injection or path traversal attempts via the Apache Camel Docling component.
references:
- https://camel.apache.org/security/CVE-2026-40047.html
logsource:
category: process_creation
product: windows
service: security
detection:
selection:
Image|endswith: '\docling.exe'
CommandLine|contains:
- '../'
- '..\\'
- 'CamelDoclingCustomArguments'
condition: selection
falsepositives:
- Legitimate use of docling with complex arguments (requires tuning)
level: high
---
title: Apache Camel Docling Argument Injection (Linux)
status: experimental
description: Detects potential argument injection or path traversal attempts via the Apache Camel Docling component on Linux systems.
references:
- https://camel.apache.org/security/CVE-2026-40047.html
logsource:
category: process_creation
product: linux
service: auditd
detection:
selection:
Image|contains: 'docling'
CommandLine|contains:
- '../'
- 'CamelDoclingCustomArguments'
condition: selection
falsepositives:
- Legitimate use of docling with complex arguments (requires tuning)
level: highElastic ES|QL
FROM process WHERE process.name : "docling" AND (process.args : "../" OR process.args : "..\\" OR process.command_line : "CamelDoclingCustomArguments")SecBoard-generated · behavioral · requires customization — Von SecBoard erzeugt und nicht in einer Zielumgebung validiert. Vor dem Einsatz an die eigene Protokollierung anpassen.
Indikatoren
Datei-Hashes (2)
- f86fda0442c65b9d13ce3aa8ac676233b64e3351
- 1fa56f45901f50aa79849ff2d2ca83dd57f6991c
Übernommen wurden nur Indikatoren, die wörtlich in einer Hersteller- oder Research-Quelle standen.
GitHub Advisories
Apache Camel-Docling: Insufficient validation of custom CLI arguments enables argument injection and path traversal in DoclingProducer