TL;DR Brute Force Attack
A brute force attack is one of the most common and straightforward forms of cyberattack. An automated script repeatedly attempts to guess a username and password combination by trying thousands or even millions of combinations in rapid succession until it finds one that works. WordPress sites are a particularly frequent target because the default login URL is publicly known. CloudSonic blocks brute force attempts automatically through our WAF and bot protection layers, rate limiting login requests before they can cause damage. This is also why using a strong unique password and enabling two factor authentication on your account is strongly recommended.
How a Brute Force Attack Works
A brute force attack is executed by automated software that systematically generates and tests login credential combinations at a speed no human could match. A basic attack might try every word in a dictionary, which is why this variant is called a dictionary attack. A more thorough attack tries every possible combination of characters up to a certain length. Modern brute force tools can test thousands of combinations per second and are freely available, meaning even unsophisticated attackers can run them. WordPress sites are a particularly common target because the default login URL is publicly known and the username is often the site administrator's display name, which is visible on the site itself. This means attackers only need to crack the password, cutting the problem in half.
Credential stuffing is a related variant where attackers use lists of username and password combinations leaked from other data breaches, betting that people reuse the same credentials across multiple sites. This is often more effective than pure brute force because the credentials are already known to work somewhere. The defence against both attacks is the same: rate limiting login attempts, blocking suspicious IP addresses, using strong unique passwords, and enabling two factor authentication.