![]() |
VOOZH | about |
Dictionary Attack is a password-cracking method where an attacker uses a pre-made list of common passwords or words (called a dictionary) and systematically tries them against the target. The dictionary can contain words from an English dictionary and also some leaked list of commonly used passwords, and when combined with common character replacement with numbers, can sometimes be very effective and fast.
Hereβs the working of a Dictionary Attack in simple steps:
Given below are basically the two tools used in dictionary attack:
John the Ripper is a popular password-cracking tool that recovers passwords from hashes. In dictionary attacks, it tests each word from a wordlist against the hash to find the correct password.
Aircrack-ng is a network security tool used to crack Wi-Fi passwords by analyzing captured packets. In dictionary attacks, it tries each word from a wordlist against the captured handshake to recover the Wi-Fi password.
Hydra is a fast password-cracking tool that uses a wordlist to test login credentials on services like SSH, FTP, or HTTP. Itβs mainly used in penetration testing to find weak or common passwords.
Medusa is a fast, parallel, and modular brute-force tool used for testing login credentials against remote systems. Like Hydra, it supports many protocols (SSH, FTP, HTTP, RDP, MySQL, etc.) and is often used by penetration testers to check for weak or default passwords.
A brute-force attack will try every possible character combination. This can take a significant amount of time to complete. For example, it might start with the password "a" then change one letter at a time until it gets to "zzzzzzzz."
A dictionary attack will use a list of likely passwords in its attempts to break into a system. These attacks are more focused than brute-force attacks. Rather than trying to input every possible permutation, an attacker using a dictionary approach would attempt all the permutations in its predetermined library. Sequential passcodes, like "12345," and static passcodes, like "00000," would be tested.
You can protect yourself from such kind of attacks by following these ways: