← Back to CVE List

CVE-2025-1686

Published: 2025-02-27T05:15Z
Last Modified: 2025-04-07T18:29Z
Source: MITRE CVE List
License: MITRE-CVE-TOS
All versions of the package io.pebbletemplates:pebble are vulnerable to External Control of File Name or Path via the include tag. A high privileged attacker can access sensitive local files by crafting malicious notification templates that leverage this tag to include files like /etc/passwd or /proc/1/environ. Workaround This vulnerability can be mitigated by disabling the include macro in Pebble Templates: java new PebbleEngine.Builder() .registerExtensionCustomizer(new DisallowExtensionCustomizerBuilder() .disallowedTokenParserTags(List.of("include")) .build()) .build(); > MITRE Terms of Use apply – see LICENSE‑MITRE.txt