5
CVSSv2

CVE-2014-8272

Published: 19/12/2014 Updated: 05/02/2015
CVSS v2 Base Score: 5 | Impact Score: 2.9 | Exploitability Score: 10
VMScore: 505
Vector: AV:N/AC:L/Au:N/C:N/I:P/A:N

Vulnerability Summary

The IPMI 1.5 functionality in Dell iDRAC6 modular prior to 3.65, iDRAC6 monolithic prior to 1.98, and iDRAC7 prior to 1.57.57 does not properly select session ID values, which makes it easier for remote malicious users to execute arbitrary commands via a brute-force attack.

Vulnerability Trend

Vulnerable Product Search on Vulmon Subscribe to Product

dell idrac6 modular

dell idrac7

intel ipmi 1.5

dell idrac6 monolithic

Exploits

""" For testing purposes only (c) Yong Chuan, Koh 2014 """ from time import sleep from socket import * from struct import * from random import * import sys, os, argparse HOST = None PORT = 623 bufsize = 1024 recv = "" # create socket UDPsock = socket(AF_INET,SOCK_DGRAM) UDPsocksettimeout(2) data = 21 #offset of data start RMCP = ('\x06' ...
Proof of concept code that tests whether or not a machine is vulnerable to insufficient session identifier randomness in IPMI ...