Dictionary attack
Applies to: cybersecurity
A dictionary attack tries likely words or passwords from a list instead of every possible string.
for word in wordlist:
check(hash(word))
See also: hash-function, brute-force
Applies to: cybersecurity
A dictionary attack tries likely words or passwords from a list instead of every possible string.
for word in wordlist:
check(hash(word))
See also: hash-function, brute-force