Skip to main content

Knp Snappy CVE-2026-46643

HIGH
OS Command Injection (CWE-78)
2026-05-21 https://github.com/KnpLabs/snappy GHSA-vpr4-p6fq-85jc
Share

Lifecycle Timeline

2
Source Code Evidence Fetched
May 21, 2026 - 21:00 vuln.today
Analysis Generated
May 21, 2026 - 21:00 vuln.today

DescriptionNVD

Impact

On POSIX, escapeshellarg(‘/usr/bin/wkhtmltopdf’) returns the literal string ‘/usr/bin/wkhtmltopdf’ with the single-quote characters included. is_executable() then looks for a file whose actual name contains those quote characters, which essentially never exists. The safe branch is dead code and $command always falls through to the raw, unescaped value.

The rest of the arguments (options, input, output) are escaped correctly, so injection has to land in the binary string itself. That happens whenever the binary path is sourced from configuration that is user-influenced, derived from environment variables that ultimately come from request data, or concatenated with any user-controlled fragment. #### Proof of concept:

php
 $pdf = new Knp\Snappy\Pdf(‘wkhtmltopdf; touch /tmp/snappy_rce’);
 $pdf->generate(‘https://example.com’, ‘/tmp/out.pdf’);
 // /tmp/snappy_rce is created.

Impact: command execution as the PHP process when the binary path is attacker-influenced. Even in deployments where the binary is hard-coded, this is a defensive-in-depth regression: downstream packages reasonably assume Snappy shell-escapes the binary because the code looks like it does.

Patches

The version 1.7.1 will resolve this security advisory.

Workarounds

Before calling the constructor, ensure \is_executable($path) is truthy.

php
// Bad example
$pdf = new Knp\Snappy\Pdf('/path/to/binary');
php
// Better example
$pathToBinary = '/path/to/binary';

if (!\is_executable($pathToBinary)) {
  throw new \RuntimeException();
}

$pdf = new Knp\Snappy\Pdf('/path/to/binary');

AnalysisAI

Command injection in KnpLabs Snappy PHP library (versions <= 1.7.0) allows attackers to execute arbitrary OS commands as the PHP process when the wkhtmltopdf/wkhtmltoimage binary path passed to the constructor is influenced by attacker-controlled input. An inverted is_executable() check renders the intended escapeshellarg() protection dead code, so the binary path string is concatenated raw into the shell command. …

Sign in for full analysis, threat intelligence, and remediation guidance.

RemediationAI

24 hours: Identify all applications using KnpLabs Snappy library and their installed versions across production, staging, and development environments. 7 days: Implement strict input validation and whitelist acceptable binary paths; restrict PHP process OS privileges to minimum required; disable PDF/image generation features if non-essential to operations. …

Sign in for detailed remediation steps.

Share

CVE-2026-46643 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy