We want to share details of a little-known attack vector that we have successfully exploited during numerous security audits.
IBM Spectrum Protect is a backup solution that provides data protection for virtual, physical and cloud environments. The solution is based on a client-server architecture. IBM Spectrum Protect client nodes, administrative clients, and servers communicate using a proprietary communication protocol. Since version 8.1.2 released in 2017, the communication protocol got a major upgrade where TLS support was added, and a new authentication protocol was introduced.
To maintain backward compatibility, the latest version of IBM Spectrum Protect (8.1.12 released in 2021) still supports the old authentication protocol. This protocol is vulnerable to offline, also known as stealth, password cracking. During a single authentication attempt the authentication protocol leaks enough information about a password needed to crack it offline. Upon a successful attack, an attacker would gain access to the backup data.
By default, a newly created administrative user is in a transitional state if not explicitly specified otherwise. This means that the old authentication protocol can be used to authenticate. The state is automatically upgraded and afterwards enforced if a user connects using a client, which supports a newer communication/authentication protocol. Therefore, only freshly created or forgotten administrative users can be exploited.
Session security is the level of security that is used for communication between IBM Spectrum Protect clients and servers. It is set by using the SESSIONSECURITY parameter. This parameter can be set either to STRICT or TRANSITIONAL. The STRICT value enforces the highest level of security, while the TRANSITIONAL value enables authentication using the old protocol. By default, the value TRANSITIONAL is assigned to a newly created administrative user:
The old authentication protocol can be reverse engineered from the JAR file dsmapi.jar that comes with the IBM Spectrum Protect Operations Center software. JADX and similar Java byte code decompilers can be used to obtain the source code. For example, a hardcoded AES key can be found in the decompiled source code. This key is used to encrypt the password of an admin user during the login procedure.
The authentication protocol is implemented as follows:
The implementation of the old authentication protocol is flawed, because an attacker can repeat the authentication sequence offline. Basically, the attacker tries to decrypt the authentication message (a chosen-ciphertext) described in Step 3 until the attacker gets a session token that was used to encrypt the response message described in Step 8.
To illustrate the attack three proof-of-concept tools were written. The tsm_admin_enum.py tool can be used to identify (using a dictionary attack) administrative accounts that are in a transitional state. The tsm_auth_leak.py tool retrieves authentication messages (for the specified user) needed for an offline password cracking attack. The tsm_auth_crack.py tool takes authentication messages and a password file as input and tries to find a valid password.
The following figure shows these three tools first identifying an insecure admin account then retrieving authentication messages and finally cracking a password:
Critical Security was established in 2007 by a group of cyber security enthusiasts. Since its establishment, the company has been providing high-quality security assessments and penetration tests to various organizations, helping them identify and mitigate potential security threats.