CAPEC-49: Password Brute Forcing

Description
An adversary tries every possible value for a password until they succeed. A brute force attack, if feasible computationally, will always be successful because it will essentially go through all possible passwords given the alphabet used (lower case letters, upper case letters, numbers, symbols, etc.) and the maximum length of the password.
Extended Description

A system will be particularly vulnerable to this type of an attack if it does not have a proper enforcement mechanism in place to ensure that passwords selected by users are strong passwords that comply with an adequate password policy. In practice a pure brute force attack on passwords is rarely used, unless the password is suspected to be weak. Other password cracking methods exist that are far more effective (e.g. dictionary attacks, rainbow tables, etc.). Knowing the password policy on the system can make a brute force attack more efficient. For instance, if the policy states that all passwords must be of a certain level, there is no need to check smaller candidates.

Prerequisites

The conditions that must already be true for an attacker to be able to carry out this attack pattern.

  • An adversary needs to know a username to target.
  • The system uses password based authentication as the one factor authentication mechanism.
  • An application does not have a password throttling mechanism in place. A good password throttling mechanism will make it almost impossible computationally to brute force a password as it may either lock out the user after a certain number of incorrect attempts or introduce time out periods. Both of these would make a brute force attack impractical.
Skills required

The knowledge and capability an attacker needs in order to carry out this attack pattern.

  • Low A brute force attack is very straightforward. A variety of password cracking tools are widely available.
Taxonomy mappings

Mappings to ATT&CK, OWASP and other frameworks.

Resources required

A powerful enough computer for the job with sufficient CPU, RAM and HD. Exact requirements will depend on the size of the brute force job and the time requirement for completion. Some brute forcing jobs may require grid or distributed computing (e.g. DES Challenge).

Visit https://capec.mitre.org/ for more details.