CVE-2017-12237 - Uncontrolled Resource Consumption

Severity

78%

Complexity

99%

Confidentiality

115%

A vulnerability in the Internet Key Exchange Version 2 (IKEv2) module of Cisco IOS 15.0 through 15.6 and Cisco IOS XE 3.5 through 16.5 could allow an unauthenticated, remote attacker to cause high CPU utilization, traceback messages, or a reload of an affected device that leads to a denial of service (DoS) condition. The vulnerability is due to how an affected device processes certain IKEv2 packets. An attacker could exploit this vulnerability by sending specific IKEv2 packets to an affected device to be processed. A successful exploit could allow the attacker to cause high CPU utilization, traceback messages, or a reload of the affected device that leads to a DoS condition. This vulnerability affects Cisco devices that have the Internet Security Association and Key Management Protocol (ISAKMP) enabled. Although only IKEv2 packets can be used to trigger this vulnerability, devices that are running Cisco IOS Software or Cisco IOS XE Software are vulnerable when ISAKMP is enabled. A device does not need to be configured with any IKEv2-specific features to be vulnerable. Many features use IKEv2, including different types of VPNs such as the following: LAN-to-LAN VPN; Remote-access VPN, excluding SSL VPN; Dynamic Multipoint VPN (DMVPN); and FlexVPN. Cisco Bug IDs: CSCvc41277.

A vulnerability in the Internet Key Exchange Version 2 (IKEv2) module of Cisco IOS 15.0 through 15.6 and Cisco IOS XE 3.5 through 16.5 could allow an unauthenticated, remote attacker to cause high CPU utilization, traceback messages, or a reload of an affected device that leads to a denial of service (DoS) condition. The vulnerability is due to how an affected device processes certain IKEv2 packets. An attacker could exploit this vulnerability by sending specific IKEv2 packets to an affected device to be processed. A successful exploit could allow the attacker to cause high CPU utilization, traceback messages, or a reload of the affected device that leads to a DoS condition. This vulnerability affects Cisco devices that have the Internet Security Association and Key Management Protocol (ISAKMP) enabled. Although only IKEv2 packets can be used to trigger this vulnerability, devices that are running Cisco IOS Software or Cisco IOS XE Software are vulnerable when ISAKMP is enabled. A device does not need to be configured with any IKEv2-specific features to be vulnerable. Many features use IKEv2, including different types of VPNs such as the following: LAN-to-LAN VPN; Remote-access VPN, excluding SSL VPN; Dynamic Multipoint VPN (DMVPN); and FlexVPN. Cisco Bug IDs: CSCvc41277.

CVSS 3.0 Base Score 7.5. CVSS Attack Vector: network. CVSS Attack Complexity: low. CVSS Vector: (CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H).

CVSS 2.0 Base Score 7.8. CVSS Attack Vector: network. CVSS Attack Complexity: low. CVSS Vector: (AV:N/AC:L/Au:N/C:N/I:N/A:C).

Demo Examples

Uncontrolled Resource Consumption

CWE-400

The following example demonstrates the weakness.


               
}
}
}
...
Thread.currentThread().interrupt();// postpone response
...
new Thread(loop).start();
}
}
}
r.run();
...

There are no limits to runnables. Potentially an attacker could cause resource problems very quickly.

Uncontrolled Resource Consumption

CWE-400

This code allocates a socket and forks each time it receives a new connection.


               
}
pid = fork();

The program does not track how many connections have been made, and it does not limit the number of connections. Because forking is a relatively expensive operation, an attacker would be able to cause the system to run out of CPU, processes, or memory by making a large number of connections. Alternatively, an attacker could consume all available connections, preventing others from accessing the system remotely.

Uncontrolled Resource Consumption

CWE-400

In the following example a server socket connection is used to accept a request to store data on the local file system using a specified filename. The method openSocketConnection establishes a server socket to accept requests from a client. When a client establishes a connection to this service the getNextMessage method is first used to retrieve from the socket the name of the file to store the data, the openFileToWrite method will validate the filename and open a file to write to on the local file system. The getNextMessage is then used within a while loop to continuously read data from the socket and output the data to the file until there is no longer any data from the socket.


               
}
closeSocket(socket);
return(FAIL);
closeFile();
}
break;

This example creates a situation where data can be dumped to a file on the local file system without any limits on the size of the file. This could potentially exhaust file or disk resources and/or limit other clients' ability to access the service.

Uncontrolled Resource Consumption

CWE-400

In the following example, the processMessage method receives a two dimensional character array containing the message to be processed. The two-dimensional character array contains the length of the message in the first character array and the message body in the second character array. The getMessageLength method retrieves the integer value of the length from the first character array. After validating that the message length is greater than zero, the body character array pointer points to the start of the second character array of the two-dimensional character array and memory is allocated for the new body character array.


               
}/* process message accepts a two-dimensional character array of the form [length][body] containing the message to be processed */
}
return(SUCCESS);
return(FAIL);

This example creates a situation where the length of the body character array can be very large and will consume excessive memory, exhausting system resources. This can be avoided by restricting the length of the second character array with a maximum length check

Also, consider changing the type from 'int' to 'unsigned int', so that you are always guaranteed that the number is positive. This might not be possible if the protocol specifically requires allowing negative values, or if you cannot control the return value from getMessageLength(), but it could simplify the check to ensure the input is positive, and eliminate other errors such as signed-to-unsigned conversion errors (CWE-195) that may occur elsewhere in the code.


               
if ((length > 0) && (length < MAX_LENGTH)) {...}

Uncontrolled Resource Consumption

CWE-400

In the following example, a server object creates a server socket and accepts client connections to the socket. For every client connection to the socket a separate thread object is generated using the ClientSocketThread class that handles request made by the client through the socket.


               
}
} catch (IOException ex) {...}
serverSocket.close();
t.start();

In this example there is no limit to the number of client connections and client threads that are created. Allowing an unlimited number of client connections and threads could potentially overwhelm the system and system resources.

The server should limit the number of client connections and the client threads that are created. This can be easily done by creating a thread pool object that limits the number of threads that are generated.


               
}
} catch (IOException ex) {...}
serverSocket.close();
pool.execute(t);

Overview

Type

Cisco IOS

First reported 7 years ago

2017-09-29 01:34:00

Last updated 5 years ago

2019-10-09 23:22:00

Affected Software

Cisco IOS 15.0(2)EJ

15.0\(2\)ej

Cisco IOS 15.0(2)EJ1

15.0\(2\)ej1

Cisco IOS 15.0(2)EX

15.0\(2\)ex

Cisco IOS 15.0(2)EX1

15.0\(2\)ex1

Cisco IOS 15.0(2)EX3

15.0\(2\)ex3

Cisco IOS 15.0(2)EX4

15.0\(2\)ex4

Cisco IOS 15.0(2)EX5

15.0\(2\)ex5

Cisco IOS 15.0(2)EZ

15.0\(2\)ez

Cisco IOS 15.0(2)SE1

15.0\(2\)se1

Cisco IOS 15.0(2)SE2

15.0\(2\)se2

Cisco IOS 15.0(2)SE3

15.0\(2\)se3

Cisco IOS 15.0(2)SE4

15.0\(2\)se4

Cisco IOS 15.0(2)SE5

15.0\(2\)se5

Cisco IOS 15.0(2)SE6

15.0\(2\)se6

Cisco IOS 15.0(2)SE7

15.0\(2\)se7

Cisco IOS 15.0(2)SE8

15.0\(2\)se8

Cisco IOS 15.0(2)SE9

15.0\(2\)se9

Cisco IOS 15.0(2)SE10

15.0\(2\)se10

Cisco IOS 15.0(2)SE10A

15.0\(2\)se10a

Cisco IOS 15.0(2)SE11

15.0\(2\)se11

Cisco IOS 15.0(2a)EX5

15.0\(2a\)ex5

Cisco IOS 15.0(2A)SE9

15.0\(2a\)se9

Cisco IOS 15.1(1)SY

15.1\(1\)sy

Cisco IOS 15.1(1)SY1

15.1\(1\)sy1

Cisco IOS 15.1(1)SY2

15.1\(1\)sy2

Cisco IOS 15.1(1)SY3

15.1\(1\)sy3

Cisco IOS 15.1(1)SY4

15.1\(1\)sy4

Cisco IOS 15.1(1)SY5

15.1\(1\)sy5

Cisco IOS 15.1(1)SY6

15.1\(1\)sy6

Cisco IOS 15.1(2)SG7A

15.1\(2\)sg7a

Cisco IOS 15.1(2)SY

15.1\(2\)sy

Cisco IOS 15.1(2)SY1

15.1\(2\)sy1

Cisco IOS 15.1(2)SY2

15.1\(2\)sy2

Cisco IOS 151.1(2)SY3

15.1\(2\)sy3

Cisco IOS 15.1(2)SY4

15.1\(2\)sy4

Cisco IOS 15.1(2)SY4A

15.1\(2\)sy4a

Cisco IOS 15.1(2)SY5

15.1\(2\)sy5

Cisco IOS 15.1(2)SY6

15.1\(2\)sy6

Cisco IOS 15.1(2)SY7

15.1\(2\)sy7

Cisco IOS 15.1(2)SY8

15.1\(2\)sy8

Cisco IOS 15.1(2)SY10

15.1\(2\)sy10

Cisco IOS 15.2(1)E

15.2\(1\)e

Cisco IOS 15.2(1)E1

15.2\(1\)e1

Cisco IOS 15.2(1)E2

15.2\(1\)e2

Cisco IOS 15.2(1)E3

15.2\(1\)e3

Cisco IOS 15.2(1)EY

15.2\(1\)ey

Cisco IOS 15.2(1)SY

15.2\(1\)sy

Cisco IOS 15.2(1)SY0A

15.2\(1\)sy0a

Cisco IOS 15.2(1)SY1

15.2\(1\)sy1

Cisco IOS 15.2(1)SY1A

15.2\(1\)sy1a

Cisco IOS 15.2(1)SY2

15.2\(1\)sy2

Cisco IOS 15.2(1)SY3

15.2\(1\)sy3

Cisco IOS 15.2(1)SY4

15.2\(1\)sy4

Cisco IOS 15.2(2)E

15.2\(2\)e

Cisco IOS 15.2(2)E1

15.2\(2\)e1

Cisco IOS 15.2(2)E2

15.2\(2\)e2

Cisco IOS 15.2(2)E3

15.2\(2\)e3

Cisco IOS 15.2(2)E4

15.2\(2\)e4

Cisco IOS 15.2(2)E5

15.2\(2\)e5

Cisco IOS 15.2(2)E5A

15.2\(2\)e5a

Cisco IOS 15.2(2)E5B

15.2\(2\)e5b

Cisco IOS 15.2(2)E6

15.2\(2\)e6

Cisco IOS 15.2(2)EB2

15.2\(2\)eb2

Cisco IOS 15.2(2)GC

15.2\(2\)gc

Cisco IOS 15.2(2)S

15.2\(2\)s

Cisco IOS 15.2(2)S0A

15.2\(2\)s0a

Cisco IOS 15.2(2)S0C

15.2\(2\)s0c

Cisco IOS 15.2(2)S1

15.2\(2\)s1

Cisco IOS 15.2(2)S2

15.2\(2\)s2

Cisco IOS 15.2(2)SNG

15.2\(2\)sng

Cisco IOS 15.2(2)SNH1

15.2\(2\)snh1

Cisco IOS 15.2(2)SNI

15.2\(2\)sni

Cisco IOS 15.2(2)SY

15.2\(2\)sy

Cisco IOS 15.2(2)SY1

15.2\(2\)sy1

Cisco IOS 15.2(2)SY2

15.2\(2\)sy2

Cisco IOS 15.2(2)SY3

15.2\(2\)sy3

Cisco IOS 15.2(2)T

15.2\(2\)t

Cisco IOS 15.2(2)T1

15.2\(2\)t1

Cisco IOS 15.2(2)T2

15.2\(2\)t2

Cisco IOS 15.2(2)T3

15.2\(2\)t3

Cisco IOS 15.2(2)T4

15.2\(2\)t4

Cisco IOS 15.2(2a)E1

15.2\(2a\)e1

Cisco IOS 15.2(2a)E2

15.2\(2a\)e2

Cisco IOS 15.2(3)E

15.2\(3\)e

Cisco IOS 15.2(3)E1

15.2\(3\)e1

Cisco IOS 15.2(3)E3

15.2\(3\)e3

Cisco IOS 15.2(3)E5

15.2\(3\)e5

Cisco IOS 15.2(3)EX

15.2\(3\)ex

Cisco IOS 15.2(3)GC

15.2\(3\)gc

Cisco IOS 15.2(3)GC1

15.2\(3\)gc1

Cisco IOS 15.2(3)T

15.2\(3\)t

Cisco IOS 15.2(3a)E

15.2\(3a\)e

Cisco IOS 15.2(3M)E8

15.2\(3m\)e8

Cisco IOS 15.2(4)E

15.2\(4\)e

Cisco IOS 15.2(4)E1

15.2\(4\)e1

Cisco IOS 15.2(4)E3

15.2\(4\)e3

Cisco IOS 15.2(4)E4

15.2\(4\)e4

Cisco IOS 15.2(4)EC

15.2\(4\)ec

Cisco IOS 15.2(4)EC1

15.2\(4\)ec1

Cisco IOS 15.2(4)EC2

15.2\(4\)ec2

Cisco IOS 15.2(4)GC

15.2\(4\)gc

Cisco IOS 15.2(4)GC1

15.2\(4\)gc1

Cisco IOS 15.2(4)GC2

15.2\(4\)gc2

Cisco IOS 15.2(4)GC3

15.2\(4\)gc3

Cisco IOS 15.2(4)M

15.2\(4\)m

Cisco IOS 15.2(4)M1

15.2\(4\)m1

Cisco IOS 15.2(4)M2

15.2\(4\)m2

Cisco IOS 15.2(4)M3

15.2\(4\)m3

Cisco IOS 15.2(4)M4

15.2\(4\)m4

Cisco IOS 15.2(4)M5

15.2\(4\)m5

Cisco IOS 15.2(4)M6

15.2\(4\)m6

Cisco IOS 15.2(4)M6A

15.2\(4\)m6a

Cisco IOS 15.2(4)M7

15.2\(4\)m7

Cisco IOS 15.2(4)M8

15.2\(4\)m8

Cisco IOS 15.2(4)M9

15.2\(4\)m9

Cisco IOS 15.2(4)M10

15.2\(4\)m10

Cisco IOS 15.2(4)M11

15.2\(4\)m11

Cisco IOS 15.2(4)S

15.2\(4\)s

Cisco IOS 15.2(4)S1

15.2\(4\)s1

Cisco IOS 15.2(4)S2

15.2\(4\)s2

Cisco IOS 15.2(4)S3

15.2\(4\)s3

Cisco IOS 15.2(4)S3A

15.2\(4\)s3a

Cisco IOS 15.2(4)S4

15.2\(4\)s4

Cisco IOS 15.2(4)S4A

15.2\(4\)s4a

Cisco IOS 15.2(4)S5

15.2\(4\)s5

Cisco IOS 15.2(4)S6

15.2\(4\)s6

Cisco IOS 15.2(4)S7

15.2\(4\)s7

Cisco IOS 15.2(4M)E1

15.2\(4m\)e1

Cisco IOS 15.2(4M)E3

15.2\(4m\)e3

Cisco IOS 15.2(4N)E2

15.2\(4n\)e2

Cisco IOS 15.2(4O)E2

15.2\(4o\)e2

Cisco IOS 15.2(4P)E1

15.2\(4p\)e1

Cisco IOS 15.2(5)E1

15.2\(5\)e1

Cisco IOS 15.2(5)E2

15.2\(5\)e2

Cisco IOS 15.2(5)E2A

15.2\(5\)e2a

Cisco IOS 15.2(5)E2C

15.2\(5\)e2c

Cisco IOS 15.2(5a)E

15.2\(5a\)e

Cisco IOS 15.2(5A)E1

15.2\(5a\)e1

Cisco IOS 15.2(5b)E

15.2\(5b\)e

Cisco IOS 15.2(5C)E

15.2\(5c\)e

Cisco IOS 15.3(1)S

15.3\(1\)s

Cisco IOS 15.3(1)S1

15.3\(1\)s1

Cisco IOS 15.3(1)S2

15.3\(1\)s2

Cisco IOS 15.3(1)SY

15.3\(1\)sy

Cisco IOS 15.3(1)SY1

15.3\(1\)sy1

Cisco IOS 15.3(1)SY2

15.3\(1\)sy2

Cisco IOS 15.3(1)T

15.3\(1\)t

Cisco IOS 15.3(1)T1

15.3\(1\)t1

Cisco IOS 15.3(1)T2

15.3\(1\)t2

Cisco IOS 15.3(1)T3

15.3\(1\)t3

Cisco IOS 15.3(1)T4

15.3\(1\)t4

Cisco IOS 15.3(2)s

15.3\(2\)s

Cisco IOS 15.3(2)S0A

15.3\(2\)s0a

Cisco IOS 15.3(2)S1

15.3\(2\)s1

Cisco IOS 15.3(2)S2

15.3\(2\)s2

Cisco IOS 15.3(2)T

15.3\(2\)t

Cisco IOS 15.3(2)T1

15.3\(2\)t1

Cisco IOS 15.3(2)T2

15.3\(2\)t2

Cisco IOS 15.3(2)T3

15.3\(2\)t3

Cisco IOS 15.3(2)T4

15.3\(2\)t4

Cisco IOS 15.3(3)JBB6A

15.3\(3\)jbb6a

Cisco IOS 15.3(3)JNP2

15.3\(3\)jnp2

Cisco IOS 15.3(3)JPB2

15.3\(3\)jpb2

Cisco IOS 15.3(3)M

15.3\(3\)m

Cisco IOS 15.3(3)M1

15.3\(3\)m1

Cisco IOS 15.3(3)M2

15.3\(3\)m2

Cisco IOS 15.3(3)M3

15.3\(3\)m3

Cisco IOS 15.3(3)M4

15.3\(3\)m4

Cisco IOS 15.3(3)M5

15.3\(3\)m5

Cisco IOS 15.3(3)M6

15.3\(3\)m6

Cisco IOS 15.3(3)M7

15.3\(3\)m7

Cisco IOS 15.3(3)M8

15.3\(3\)m8

Cisco IOS 15.3(3)M9

15.3\(3\)m9

Cisco IOS 15.3(3)s

15.3\(3\)s

Cisco IOS 15.3(3)S1

15.3\(3\)s1

Cisco IOS 15.3(3)S1A

15.3\(3\)s1a

Cisco IOS 15.3(3)S2

15.3\(3\)s2

Cisco IOS 15.3(3)S3

15.3\(3\)s3

Cisco IOS 15.3(3)S4

15.3\(3\)s4

Cisco IOS 15.3(3)S5

15.3\(3\)s5

Cisco IOS 15.3(3)S6

15.3\(3\)s6

Cisco IOS 15.4(1)CG

15.4\(1\)cg

Cisco IOS 15.4(1)CG1

15.4\(1\)cg1

Cisco IOS 15.4(1)S

15.4\(1\)s

Cisco IOS 15.4(1)S1

15.4\(1\)s1

Cisco IOS 15.4(1)S2

15.4\(1\)s2

Cisco IOS 15.4(1)S3

15.4\(1\)s3

Cisco IOS 15.4(1)SY

15.4\(1\)sy

Cisco IOS 15.4(1)SY1

15.4\(1\)sy1

Cisco IOS 15.4(1)SY2

15.4\(1\)sy2

Cisco IOS 15.4(1)t

15.4\(1\)t

Cisco IOS 15.4(1)T1

15.4\(1\)t1

Cisco IOS 15.4(1)T2

15.4\(1\)t2

Cisco IOS 15.4(1)T3

15.4\(1\)t3

Cisco IOS 15.4(1)T4

15.4\(1\)t4

Cisco IOS 15.4(2)S

15.4\(2\)s

Cisco IOS 15.4(2)S1

15.4\(2\)s1

Cisco IOS 15.4(2)S2

15.4\(2\)s2

Cisco IOS 15.4(2)S3

15.4\(2\)s3

Cisco IOS 15.4(2)S4

15.4\(2\)s4

Cisco IOS 15.4(2)T

15.4\(2\)t

Cisco IOS 15.4(2)T1

15.4\(2\)t1

Cisco IOS 15.4(2)T2

15.4\(2\)t2

Cisco IOS 15.4(2)T3

15.4\(2\)t3

Cisco IOS 15.4(2)T4

15.4\(2\)t4

Cisco IOS 15.4(3)M

15.4\(3\)m

Cisco IOS 15.4(3)M1

15.4\(3\)m1

Cisco IOS 15.4(3)M2

15.4\(3\)m2

Cisco IOS 15.4(3)M3

15.4\(3\)m3

Cisco IOS 15.4(3)M4

15.4\(3\)m4

Cisco IOS 15.4(3)M5

15.4\(3\)m5

Cisco IOS 15.4(3)M6

15.4\(3\)m6

Cisco IOS 15.4(3)M7

15.4\(3\)m7

Cisco IOS 15.4(3)S

15.4\(3\)s

Cisco IOS 15.4(3)S1

15.4\(3\)s1

Cisco IOS 15.4(3)S2

15.4\(3\)s2

Cisco IOS 15.4(3)S3

15.4\(3\)s3

Cisco IOS 15.4(3)S4

15.4\(3\)s4

Cisco IOS 15.4(3)S7

15.4\(3\)s7

Cisco IOS 15.5(1)S

15.5\(1\)s

Cisco IOS 15.5(1)S1

15.5\(1\)s1

Cisco IOS 15.5(1)S2

15.5\(1\)s2

Cisco IOS 15.5(1)S3

15.5\(1\)s3

Cisco IOS 15.5(1)S4

15.5\(1\)s4

Cisco IOS 15.5(1)SY

15.5\(1\)sy

Cisco IOS 15.5(1)T

15.5\(1\)t

Cisco IOS 15.5(1)T1

15.5\(1\)t1

Cisco IOS 15.5(1)T2

15.5\(1\)t2

Cisco IOS 15.5(1)T3

15.5\(1\)t3

Cisco IOS 15.5(1)T4

15.5\(1\)t4

Cisco IOS 15.5(2)s

15.5\(2\)s

Cisco IOS 15.5(2)S1

15.5\(2\)s1

Cisco IOS 15.5(2)S2

15.5\(2\)s2

Cisco IOS 15.5(2)S3

15.5\(2\)s3

Cisco IOS 15.5(2)S4

15.5\(2\)s4

Cisco IOS 15.5(2)T

15.5\(2\)t

Cisco IOS 15.5(2)T1

15.5\(2\)t1

Cisco IOS 15.5(2)T2

15.5\(2\)t2

Cisco IOS 15.5(2)T3

15.5\(2\)t3

Cisco IOS 15.5(2)T4

15.5\(2\)t4

Cisco IOS 15.5(3)M

15.5\(3\)m

Cisco IOS 15.5(3)M0A

15.5\(3\)m0a

Cisco IOS 15.5(3)m1

15.5\(3\)m1

Cisco IOS 15.5(3)M2

15.5\(3\)m2

Cisco IOS 15.5(3)M3

15.5\(3\)m3

Cisco IOS 15.5(3)M4

15.5\(3\)m4

Cisco IOS 15.5(3)M5

15.5\(3\)m5

Cisco IOS 15.5(3)S

15.5\(3\)s

Cisco IOS 15.5(3)S0A

15.5\(3\)s0a

Cisco IOS 15.5(3)s1

15.5\(3\)s1

Cisco IOS 15.5(3)S1A

15.5\(3\)s1a

Cisco IOS 15.5(3)S2

15.5\(3\)s2

Cisco IOS 15.5(3)S3

15.5\(3\)s3

Cisco IOS 15.5(3)SN

15.5\(3\)sn

Cisco IOS 15.6(1)t0a

15.6\(1\)t0a

Cisco IOS 15.6(2)SN

15.6\(2\)sn

Cisco IOS 15.6(2)SP

15.6\(2\)sp

Cisco IOS 15.6(2)SP1

15.6\(2\)sp1

Cisco IOS 15.6(3)M

15.6\(3\)m

Cisco IOS 15.6(3)M1b

15.6\(3\)m1b

Cisco IOS 15.6(3)M2

15.6\(3\)m2

Cisco IOS 15.6(3)M2A

15.6\(3\)m2a

Cisco IOS XE 3.5.0E

3.5.0e

Cisco IOS XE 3.5.1E

3.5.1e

Cisco IOS XE 3.5.2E

3.5.2e

Cisco IOS XE 3.6.0s

3.6.0s

Cisco IOS XE 3.6.1s

3.6.1s

Cisco IOS XE 3.6.2s

3.6.2s

Cisco IOS XE 3.6.5AE

3.6.5ae

Cisco IOS XE 3.6.5BE

3.6.5be

Cisco IOS XE 3.6.5E

3.6.5e

Cisco IOS XE 3.6.6E

3.6.6e

Cisco IOS XE 3.7.0BS

3.7.0bs

Cisco IOS XE 3.7.0s

3.7.0s

Cisco IOS XE 3.7.1s

3.7.1s

Cisco IOS XE 3.7.2s

3.7.2s

Cisco IOS XE 3.7.4AS

3.7.4as

Cisco IOS XE 3.7.5E

3.7.5e

Cisco IOS XE 3.8.0s

3.8.0s

Cisco IOS XE 3.8.1S

3.8.1s

Cisco IOS XE 3.8.2E

3.8.2e

Cisco IOS XE 3.8.2S

3.8.2s

Cisco IOS XE 3.9.0AS

3.9.0as

Cisco IOS XE 3.9.0s

3.9.0s

Cisco IOS XE 3.9.1AS

3.9.1as

Cisco IOS XE 3.9.1s

3.9.1s

Cisco IOS XE 3.9.2E

3.9.2e

Cisco IOS XE 3.9.2S

3.9.2s

Cisco IOS XE 3.10.0S

3.10.0s

Cisco IOS XE 3.10.1S

3.10.1s

Cisco IOS XE 3.10.1XBS

3.10.1xbs

Cisco IOS XE 3.10.2S

3.10.2s

Cisco IOS XE 3.10.3S

3.10.3s

Cisco IOS XE 3.10.5S

3.10.5s

Cisco IOS XE 3.10.6S

3.10.6s

Cisco IOS XE 3.10.7S

3.10.7s

Cisco IOS XE 3.11.0S

3.11.0s

Cisco IOS XE 3.11.1S

3.11.1s

Cisco IOS XE 3.11.2S

3.11.2s

Cisco IOS XE 3.12.0AS

3.12.0as

Cisco IOS XE 3.14.0S

3.14.0s

Cisco IOS XE 3.14.1S

3.14.1s

Cisco IOS XE 3.14.2S

3.14.2s

Cisco IOS XE 3.14.3S

3.14.3s

Cisco IOS XE 3.14.4S

3.14.4s

Cisco IOS XE 3.15.1cS

3.15.1cs

Cisco IOS XE 3.15.4S

3.15.4s

Cisco IOS XE 3.16.0cS

3.16.0cs

Cisco IOS XE 3.16.1AS

3.16.1as

Cisco IOS XE 3.16.1S

3.16.1s

Cisco IOS XE 3.16.2BS

3.16.2bs

Cisco IOS XE 3.17.1AS

3.17.1as

Cisco IOS XE 3.18.0AS

3.18.0as

Cisco IOS XE 3.18.0S

3.18.0s

Cisco IOS XE

Cisco IOS XE 16.1.1

16.1.1

Cisco IOS XE 16.3.4

16.3.4

Cisco IOS XE 16.4.2

16.4.2

Cisco IOS XE 16.5.1

16.5.1

Cisco IOS XE 16.5.1B

16.5.1b

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.