GHSA-rjhh-76wf-8xmw: Path Traversal
smarty/smarty version 5.8.0 can read local files through PHP stream wrappers even when Smarty Security is enabled and all streams are disabled with Security::$streams = null.
The bypass uses Smarty's built-in stream: resource type. A template such as:
smarty {include file="stream:php://filter/read=convert.base64-encode/resource=/tmp/secret.tpl"}
is handled as Smarty resource type stream, so the security check that would normally reject the underlying php wrapper is not applied. StreamPlugin then opens the nested php://filter/... URI directly.
For comparison, the direct resource:
smarty {include file="php://filter/read=convert.base64-encode/resource=/tmp/secret.tpl"}
is blocked with stream 'php' not allowed by security setting.
Affected package:
- Ecosystem: Packagist / Composer - Package: smarty/smarty - Confirmed affected version: 5.8.0 - Confirmed source reference from Composer lock: 78d259d3b971c59a0cd719c270cc5cbb740c36a7 - Current stable version on Packagist at review time: v5.8.0 - Packagist usage at review time: 41,113,855 total downloads and 840,604 monthly downloads
Relevant code paths:
- Smarty\Resource\BasePlugin::load(...) - Smarty\Resource\StreamPlugin::getContent(...) - Smarty\Security::isTrustedStream(...)
BasePlugin::load() maps the built-in resource name stream directly to StreamPlugin before the code path that checks PHP stream wrappers with streamgetwrappers() and Security::isTrustedStream($type). StreamPlugin::getContent() later calls fopen($filepath, 'r+') on the nested URI when the resource name contains ://.
Preconditions:
An application must render templates that are not fully trusted while relying on Smarty Security to restrict local files and PHP stream wrappers. The PoC sets:
php $smarty->enableSecurity(); $smarty->securitypolicy->streams = null;
Local reproduction:
The PoC creates a disposable template directory and a separate outside directory. It enables Smarty Security, disables all streams, and then compares three includes:
1. ../outside/secret.tpl to confirm the ordinary trusted-directory boundary is enforced. 2. php://filter/... to confirm direct PHP streams are blocked by Security::$streams = null. 3. stream:php://filter/... to show the built-in stream: resource bypasses the same restriction and reads the outside file.
Run:
shell php -d displayerrors=1 poc.php
Observed sanitized output:
text package=smarty/smarty installedversion=v5.8.0 templatedir=<tmp>/templates outsidetemplate=<tmp>/outside/secret.tpl plaindotdotinclude=BLOCKED:Smarty\Exception:Smarty Security: not trusted file path '<tmp>/outside/secret.tpl' directphpfilterinclude=BLOCKED:Smarty\Exception:stream 'php' not allowed by security setting streamphpfilterinclude=OK:U01BUlRZX1NUUkVBTV9XUkFQUEVSX1NFQ1VSSVRZX0VTQ0FQRQ== expectedbase64=U01BUlRZX1NUUkVBTV9XUkFQUEVSX1NFQ1VSSVRZX0VTQ0FQRQ==
The plaindotdotinclude line shows the directory boundary is enforced for ordinary traversal. The directphpfilterinclude line shows the same policy rejects php://filter when used directly. The streamphpfilterinclude line shows that wrapping the same URI in Smarty's stream: resource bypasses that restriction and reads the outside file.
Impact:
A template author can bypass Smarty Security stream restrictions and read local files that are readable by the PHP process. With php://filter, file contents can be base64 encoded and rendered back through the template. This bypasses both the intended Security::$streams = null restriction and the normal trusted-template-directory check that blocks ../ traversal.
Duplicate checks:
- OSV query for Packagist/smarty/smarty version 5.8.0 returned no vulnerabilities. - GitHub advisory query for ecosystem=composer and affects=smarty/smarty returned historical Smarty advisories, including sandbox escapes, PHP code injection, XSS, and older path traversal issues. The listed path traversal advisories affect older versions and do not describe this current stream:php://filter resource-wrapper bypass in 5.8.0. - GitHub issue search in smarty-php/smarty for stream:php://filter returned zero results. - Public searches for Smarty StreamPlugin php://filter and smarty/smarty isTrustedStream stream: did not identify a clear public duplicate during triage.
Suggested remediation:
When resolving the built-in stream: resource, parse and validate the nested URI scheme before opening it. For example, stream:php://filter/... should call Security::isTrustedStream('php'), and Security::$streams = null should block the resource before StreamPlugin::getContent() reaches fopen().
It would also be safer for StreamPlugin to reject nested stream wrappers by default unless the underlying wrapper is explicitly allowed by the active security policy.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
composer/smarty/smartyto a version that resolves this vulnerability.Fixed in 5.8.4 - Upgrade
Upgrade
smarty/smartyto a version that resolves this vulnerability.Fixed in 5.8.0 - Configuration
Ensure Smarty Security streams are effectively disabled by setting Smarty\Security::$streams = null, so direct 'php://' and other untrusted PHP stream wrappers are rejected before StreamPlugin::getContent() can open them.
Smarty Security (Smarty\Security) Smarty\Security::$streams = null - Configuration
Harden the built-in Smarty resource type 'stream' so it parses and validates the nested URI scheme before opening it; reject nested PHP stream wrappers (e.g., 'php://filter/...') unless the wrapper is explicitly allowed by the active Smarty security policy (e.g., via Smarty\Security::isTrustedStream($type)).
Smarty built-in resource 'stream' (Smarty\Resource\StreamPlugin) Nested URI scheme validation for 'stream:' resources = validate and restrict nested URI schemes - Configuration
Ensure StreamPlugin rejects nested stream wrappers by default: when handling resource type 'stream' with a nested URI containing '://', call Smarty\Security::isTrustedStream($type) for the nested wrapper (e.g., 'php') before any fopen().
Smarty\Security (Smarty\Security::isTrustedStream) Trusted stream checks for nested 'stream:' resources = apply isTrustedStream to underlying nested wrapper type
Event History
Frequently Asked Questions
What is the severity of GHSA-rjhh-76wf-8xmw?
The severity of GHSA-rjhh-76wf-8xmw is assessed at level 46.
What is the nature of the vulnerability GHSA-rjhh-76wf-8xmw?
GHSA-rjhh-76wf-8xmw allows remote file read through PHP stream wrappers despite security settings.
How do I fix GHSA-rjhh-76wf-8xmw?
To fix GHSA-rjhh-76wf-8xmw, upgrade to the latest version of `smarty/smarty` that addresses this vulnerability.
Can GHSA-rjhh-76wf-8xmw lead to code injection?
Yes, GHSA-rjhh-76wf-8xmw may potentially allow for code injection due to its nature as a path traversal vulnerability.
What impact does GHSA-rjhh-76wf-8xmw have on application security?
GHSA-rjhh-76wf-8xmw poses a risk of unauthorized access to sensitive files, thus compromising application security.