hardMultiple ChoiceObjective-mapped
How to Identify a Brute-Force Attack from Repeated Failed Login Attempts
During a security audit, an analyst finds that a server's audit log shows repeated failed login attempts from a single IP, followed by a successful login from the same IP five minutes later. What is the most likely type of attack that occurred?
Quick Answer
A brute-force attack is the best fit for this pattern because the scenario describes repeated failed login attempts from a single IP followed by an eventual successful login, exactly the signature of an attacker systematically trying passwords against one account until one finally works. Distinguishing brute-force from its close relatives comes down to specifics that the scenario does or doesn't mention: a dictionary attack is technically a variant of brute-force that uses a curated list of likely passwords rather than exhausting a full character space, but without any indication that a targeted wordlist was used, the more general description of repeated attempts points to brute-force rather than that narrower variant. A man-in-the-middle attack involves intercepting communications between two parties, which has nothing to do with repeated login attempts appearing in an audit log. A replay attack reuses a previously captured valid credential or session token rather than guessing new ones, so it wouldn't produce a string of failed attempts before success. Password spraying inverts the brute-force pattern by trying a small number of common passwords across many different accounts to avoid lockouts, rather than hammering many passwords against one account, the opposite of what's described here, where the repeated attempts and eventual success are tied to a single account and single source IP. When you see many failures against one account followed by success, default to brute-force unless the scenario specifies a wordlist, multiple targeted accounts, or credential reuse instead.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Brute-force attack
(brute-force attack). The scenario describes repeated failed login attempts from a single IP address followed by a successful login, which is characteristic of a brute-force attack where an attacker tries many passwords until one works. Option A (dictionary attack) uses a list of likely passwords but may not be as exhaustive; the description of repeated attempts without specifying a list suggests brute-force. Option B (man-in-the-middle attack) intercepts communications, not login attempts. Option D (replay attack) involves capturing and reusing a valid credential, not repeated tries. Option E (password spraying attack) targets multiple accounts with a few common passwords, not repeated attempts on a single account from one IP.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Dictionary attack
Why it's wrong here
Dictionary uses common passwords, but the pattern of repeated failures then success could be either; brute-force is more generic.
- ✗
Man-in-the-middle attack
Why it's wrong here
MITM intercepts communications, does not generate many failed logins.
- ✓
Brute-force attack
Why this is correct
Brute-force tries all possible combinations until success, matching the log pattern.
- ✗
Replay attack
Why it's wrong here
Replay involves resending captured authentication packets, not many failed attempts.
- ✗
Password spraying attack
Why it's wrong here
Spraying uses a few passwords against many accounts, not many attempts from one IP.
Go deeper
Related to this question
About these practice questions
Courseiva writes every SSCP question from scratch — 920 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more way this is tested on SSCP
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. Refer to the exhibit. A security analyst reviews a Windows Security event log entry showing multiple logon failures for user 'admin' from IP 10.0.0.100 within 5 minutes. What type of attack is most likely occurring?
medium- ✓ A.Brute force attack
- B.Kerberos ticket replay
- C.Pass-the-hash attack
- D.Privilege escalation
Why A: Multiple logon failures from a single IP indicate a brute force attack. Pass-the-hash uses captured hashes, not repeated failures. Kerberos ticket replay is different. Privilege escalation is not indicated.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This SSCP practice question is part of Courseiva's free ISC2 certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SSCP exam.