CVE-2025-36222 Overview
CVE-2025-36222 is a critical insecure default configuration vulnerability affecting IBM Storage Fusion products. The vulnerability exists because IBM Fusion 2.2.0 through 2.10.1, IBM Fusion HCI 2.2.0 through 2.10.0, and IBM Fusion HCI for watsonx 2.8.2 through 2.10.0 use insecure default configurations that could expose AMQStreams without client authentication. This configuration weakness allows an attacker to perform unauthorized actions against the affected systems.
Critical Impact
Unauthenticated network attackers can exploit this insecure default configuration to perform unauthorized actions on AMQStreams, potentially leading to complete system compromise with high impact to confidentiality, integrity, and availability.
Affected Products
- IBM Storage Fusion 2.2.0 through 2.10.1
- IBM Storage Fusion HCI 2.2.0 through 2.10.0
- IBM Storage Fusion HCI for watsonx 2.8.2 through 2.10.0
Discovery Timeline
- September 11, 2025 - CVE-2025-36222 published to NVD
- October 02, 2025 - Last updated in NVD database
Technical Details for CVE-2025-36222
Vulnerability Analysis
This vulnerability is classified under CWE-1188 (Initialization with Hard-Coded Network Resource Configuration Settings). The core issue lies in how IBM Storage Fusion products deploy AMQStreams with insecure default configurations that fail to enforce client authentication. AMQStreams, which is Apache Kafka deployed on Red Hat OpenShift, serves as a critical messaging infrastructure component within IBM Storage Fusion environments.
When deployed with default settings, the AMQStreams component accepts connections without verifying client credentials, creating an authentication bypass scenario. This allows any network-accessible attacker to interact with the messaging system as if they were a legitimate, authenticated user.
Root Cause
The vulnerability stems from insecure default configuration settings in the IBM Storage Fusion deployment process. The AMQStreams component is initialized without proper client authentication mechanisms enabled by default. This represents a fundamental security design flaw where the principle of secure-by-default was not followed during product development.
The affected configuration exposes Kafka broker endpoints without requiring TLS client certificates or SASL authentication, leaving the message streaming infrastructure open to unauthorized access from any network-adjacent or remote attacker.
Attack Vector
The attack can be executed remotely over the network without requiring any prior authentication or user interaction. An attacker with network access to the AMQStreams endpoints can:
- Connect directly to exposed Kafka broker ports without credentials
- Produce arbitrary messages to topics, potentially injecting malicious data
- Consume sensitive messages from existing topics
- Manipulate consumer group offsets to replay or skip messages
- Potentially disrupt cluster operations through administrative API calls
The exploitation is straightforward due to the lack of authentication barriers. Attackers can use standard Kafka client tools to interact with the unprotected brokers once network connectivity is established.
Detection Methods for CVE-2025-36222
Indicators of Compromise
- Unexpected connections to Kafka broker ports (typically 9092, 9093, or 9094) from unauthorized IP addresses
- Unusual message production or consumption patterns in AMQStreams topics
- Creation of new consumer groups by unrecognized client IDs
- Administrative operations performed on the Kafka cluster without corresponding authorized user activity
Detection Strategies
- Monitor network traffic to AMQStreams endpoints for connections originating from untrusted networks or IP ranges
- Implement Kafka broker logging and audit trails to track all client connections and operations
- Deploy network intrusion detection rules to identify unauthorized Kafka protocol traffic
- Review AMQStreams authentication configuration to verify client authentication is properly enabled
Monitoring Recommendations
- Enable comprehensive audit logging for all Kafka broker operations including connection attempts, topic access, and administrative commands
- Implement alerting on failed authentication attempts once authentication is enabled, as this may indicate attack reconnaissance
- Monitor for configuration drift that could disable authentication settings after remediation
- Establish baseline metrics for normal AMQStreams traffic patterns to identify anomalous activity
How to Mitigate CVE-2025-36222
Immediate Actions Required
- Review current AMQStreams deployment configuration to determine exposure status
- Restrict network access to Kafka broker ports using firewall rules or network policies until authentication can be enabled
- Apply the vendor-recommended patches and configuration updates from IBM
- Audit logs for any suspicious activity that may indicate prior exploitation
Patch Information
IBM has released security guidance addressing this vulnerability. Organizations should consult the IBM Security Advisory for detailed remediation instructions and patching information. Upgrade to IBM Storage Fusion versions that include the security fix and follow IBM's recommended configuration hardening procedures.
Workarounds
- Enable SASL authentication or TLS client certificate authentication for AMQStreams brokers as an interim measure
- Implement network segmentation to isolate AMQStreams endpoints from untrusted networks
- Configure Kubernetes NetworkPolicies to restrict which pods can communicate with AMQStreams services
- Deploy a service mesh with mutual TLS to add an authentication layer in front of the Kafka brokers
# Example: Verify AMQStreams listener configuration for authentication
# Check the Kafka custom resource for authentication settings
oc get kafka -n <namespace> -o yaml | grep -A 10 "listeners:"
# Ensure authentication is configured (should show 'type: tls' or 'type: scram-sha-512')
# If authentication is missing or set to 'type: plain', the deployment is vulnerable
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

