Skip to content
All articles
September 15, 2026 13 min read

Reflected or Amplified, Spraying or Brute Force: The Non-Malware Attacks Security+ Asks You to Name From the Indicators

Chris Rees

Chris Rees

25+ years in IT · Pluralsight author, 4.6/5 across 2,000+ ratings

Reflected or Amplified, Spraying or Brute Force: The Non-Malware Attacks Security+ Asks You to Name From the Indicators
www.skillthropic.com

Objective 2.4 is written as "given a scenario, analyze indicators of malicious activity," and the scenario never says a reflected DDoS occurred. It says the DNS server's outbound traffic is thirty times its inbound, or that one badge opened doors on two floors within a minute, or that forty accounts each logged exactly two failed logins and none locked out. The malware half of the objective has its own post; this one is about everything else, and the skill runs in reverse: read the evidence, name the family, then name the attack the discriminator points to.

Five families, sorted by what they target

Hold the non-malware attacks by target, because the target decides what evidence the attack leaves. Physical attacks target the facility and leave physical evidence. Network attacks target the path and leave traffic anomalies. Application attacks target the software's trust in its input and leave malformed requests. Cryptographic attacks target the math and leave nothing broken, only something weaker. Password attacks target the credential and leave authentication logs.

A map of the non-malware attack families in objective 2.4 arranged as five columns by target: physical attacks on the facility, brute force, RFID cloning and environmental; network attacks on the path, reflected and amplified DDoS, DNS poisoning, domain hijacking, evil twin, deauthentication and jamming, on-path, credential replay and malicious code; application attacks on the software, injection, buffer overflow, replay, privilege escalation, forgery and directory traversal; cryptographic attacks on the math, downgrade, collision and birthday; and password attacks on the credential, spraying and brute force, with credential stuffing marked as a distractor FIVE FAMILIES, SORTED BY TARGET Physical target: the facility Brute force (physical) RFID cloning Environmental Network target: the path DDoS: reflected DDoS: amplified DNS poisoning Domain hijacking Evil twin, rogue AP Deauth, jamming On-path Credential replay Malicious code Application target: the software Injection Buffer overflow Replay Privilege escalation Forgery (CSRF, SSRF) Directory traversal Cryptographic target: the math Downgrade Collision Birthday Password target: the credential Spraying Brute force Credential stuffing dashed = distractor, not a 2.4 bullet Physical and password attacks are loud: damage, alarms, lockouts. Network and cryptographic attacks are quiet: nothing breaks, something is redirected or weakened.
Twenty-four named attacks across five targets. The network column is the longest and holds the objective's most-tested pair; the password column holds its most-tested distractor.

The families matter because the distractors come from neighboring ones: a captured hash being reused is credential replay in the network family, and the application-family replay attack will be sitting in the answers to catch you.

Physical: force, cloning, and the building's life support

Brute force, in the physical sense, is force against a barrier: a smashed door, a pried cabinet, a stolen laptop. Its indicators are damage, forced locks, missing equipment and door-alarm events. RFID cloning reads a proximity badge and writes it to a duplicate, from inches away with a cheap handheld cloner. Its signature indicator is the same badge identifier appearing in two places, or an access event while the holder is verifiably elsewhere; the mitigation is encrypted smart cards, shielded sleeves and badge plus PIN or biometric. Environmental attacks target the facility's life support: cutting power, disabling cooling so hardware overheats, triggering fire suppression, tampering with sensors. The indicators come from facility telemetry rather than security logs, the exam's way of testing whether you look beyond the SIEM.

Network: the path is the target

A distributed denial of service overwhelms a target from many sources, and two techniques multiply it. In a reflected attack, the attacker sends requests to innocent third-party servers with the source address spoofed to the victim, so the replies bounce onto the victim; the attacker is hidden and legitimate servers become the cannons. An amplified attack chooses reflectors whose responses are far larger than the requests, DNS and NTP being the classic cases, so a small query stream becomes a flood with amplification factors in the tens to hundreds. Nearly every amplified attack is also reflected. Spoofed victim source is reflection; small request, huge response is amplification.

Attack Mechanism The indicator that gives it away
DDoS, reflected third-party servers answer requests spoofed from the victim replies from servers the victim never queried
DDoS, amplified reflectors chosen for response size, DNS or NTP responses far larger than queries; a reflector's outbound dwarfing inbound
DNS poisoning forged records planted in a resolver's cache correct URL, wrong site; answers disagree with the authoritative server
Domain hijacking the registration itself is stolen registrar records changed; the domain resolves elsewhere for everyone
Wireless: evil twin, deauth attacker AP with the real SSID; deauth frames force reconnection duplicate SSIDs in a survey; mass client disconnects
On-path attacker relays between two parties who believe they talk directly certificate warnings, protocol downgrades, ARP anomalies
Credential replay captured hashes, tokens or cookies re-submitted successful logins with no failures, from odd hosts or times
Malicious code hostile scripts and executables crossing the network scripts spawned by unusual parents; known-bad connections

Three distinctions inside the table. DNS poisoning versus domain hijacking: poisoning corrupts one resolver's cache; hijacking steals the registration and affects everyone. DNSSEC defeats poisoning; registrar locks and MFA defeat hijacking. On-path is the renamed man-in-the-middle, reached through ARP poisoning, rogue access points or DNS spoofing; validated certificates are the defense, so the certificate warning is the indicator. Credential replay, pass-the-hash being the Windows classic, is defeated by MFA, unique session tokens, nonces and short session lifetimes.

Application: the software trusted its input

Every application attack is the software trusting something about its input that it should have verified: the content, the length, the timing or the origin.

Injection is hostile input executed as code or a query, SQL, command, LDAP or XML; the indicators are database errors in logs and input containing quotes, semicolons or keywords. Buffer overflow is oversized input overwriting adjacent memory to crash the target or run attacker code; the indicators are crashes on long input and memory-access violations. Privilege escalation is a foothold expanding its rights, vertically from user to administrator or horizontally to another user's access; the indicators are standard accounts performing administrative actions and unexpected group membership changes. Directory traversal manipulates a file path with sequences such as ../ or the encoded %2e%2e%2f to escape the web root and read files the application never meant to serve; the indicator is that sequence in requests.

Replay and forgery are the pair to separate. Replay captures legitimate traffic and re-transmits it later to repeat its effect; the indicator is the same transaction arriving twice from different places, and the defenses are nonces, timestamps and one-time tokens. Forgery makes a system accept an attacker-crafted request as genuine: cross-site request forgery makes a victim's own logged-in browser submit a request the victim never intended; server-side request forgery makes the server fetch attacker-chosen URLs. The CSRF indicator is actions performed by users who deny them.

Exam tip, three kinds of reuse: Replay, credential replay and CSRF all reuse something legitimate, and the exam puts them together on purpose. If the attacker captured data and re-sent it, it is replay: application replay for traffic or a session, credential replay for a hash or token. If nothing was captured and the victim's own live browser did the work, it is forgery. Ask who sent the request: the attacker with a copy, or the victim with a trick.

Cryptographic: nothing breaks, something gets weaker

A downgrade attack coerces two parties that both support strong cryptography into negotiating a weaker protocol version or cipher, then breaks the weak one. POODLE forced connections down to SSL 3.0, and on-path attackers commonly strip or downgrade TLS. The indicator is a connection using an older version than both endpoints support; the defense is disabling legacy versions and weak suites outright, because the strong option was already there and the attacker talked both sides out of it.

A collision attack finds two different inputs that produce the same hash, so a malicious file can pass an integrity check or signature as a benign one, which is why MD5 and SHA-1 are banned for signatures. The birthday attack is the shortcut that makes collisions findable: just as twenty-three people give a fifty percent chance of a shared birthday, an attacker searching for any two colliding inputs needs about 2n/2 attempts against an n-bit hash, not 2n. Collision is the outcome, birthday is the method, and the defense for both is a longer modern hash such as SHA-256.

Password: wide or deep

Brute force is many passwords against one account, loud by design: a flood of failures on one account trips the lockout. Spraying is a few passwords against many accounts, one or two common passwords tried across the whole directory while staying under the lockout threshold on each. Spraying is quiet per account and noisy across the organization: the same password failing against dozens of usernames, often from one source. Credential stuffing is not a 2.4 bullet but a favorite distractor: breached username and password pairs from one site replayed against another.

Brute force Spraying Credential stuffing
Shape many passwords, one account few passwords, many accounts known pairs, many accounts
Noise lockout on the target account one or two failures per account, directory-wide successes with no failures, from unfamiliar hosts
Dodges lockout? no yes, that is the point mostly; each pair is tried once
Best control lockout, MFA MFA, banned common passwords, directory-wide failure monitoring MFA, breached-password checks

The reverse lookup: nine indicators, and the attacks they point to

The objective closes with nine indicators, and this is the direction the questions run: read the observation, then name what it most likely means. Detection rarely rests on one indicator. A realistic chain runs impossible travel, then out-of-cycle logging, then resource consumption, then either resource inaccessibility or missing logs, and the combination names the attack more clearly than any single symptom.

A matching grid of the nine indicators of malicious activity named by Security+, account lockout, concurrent session usage, blocked content, impossible travel, resource consumption, resource inaccessibility, out-of-cycle logging, published or documented, and missing logs, each paired with what an analyst observes and the attack it most likely points to, colored by whether the indicator means a credential is in the wrong hands, availability is under attack, or content and the evidence trail have been touched NINE INDICATORS, REVERSED INTO ATTACKS Indicator What you observe What it most likely means Account lockout burst of failed logins, then lockout, one account brute force against that account Concurrent sessions one account active in two places at once credential replay or session hijack Blocked content proxy, firewall or EDR denies a fetch or execution malicious code arriving or phoning home Impossible travel two logins, two continents, one hour apart stolen credentials used from a second place Resource consumption CPU, disk or bandwidth spikes with no cause DDoS victim, or the reflector; cryptomining Resource inaccessibility files, shares or a service suddenly unavailable DoS, environmental, or a destructive attack Out-of-cycle logging admin activity at 3 a.m.; jobs off their schedule an attacker on a stolen account, off hours Published or documented your data on a leak site; a public exploit breach already happened; known exploit in use Missing logs a gap where events should exist anti-forensics: the attacker covering tracks credential in the wrong hands availability under attack content and the evidence trail
The stem describes the middle column; the answers come from the right. Four of the nine indicators say the same thing, that a credential is being used by someone who should not have it.

Three carry most of the marks. Impossible travel and concurrent session usage both mean the credential is in someone else's hands, and the response is to revoke sessions and reset, not to block an address. Resource consumption changes meaning with where you observe it: on a victim it is the attack; on a DNS server whose outbound dwarfs its inbound, you are the reflector in someone else's attack. Missing logs reverses the usual logic: absence is the evidence, because logs do not delete themselves, and the countermeasure is shipping logs in real time to a write-once store. The malware indicators and threat actor attributes sit on either side of this objective.

Four stems, decoded

  1. A DNS server shows outbound traffic thirty times its inbound, all responses to queries from a single external address. A reflector in an amplified DDoS against that address. Rate limit and close open recursion; the "attacker" is the victim.
  2. Forty user accounts each record two failed logins from one IP address within an hour; none are locked out. Password spraying. The lockout never fired because the attacker stayed under the threshold on each account.
  3. Users typing the correct address of the payroll site land on a look-alike; the authoritative DNS records are unchanged. DNS poisoning of the local resolver. Had the registrar records changed, it would be domain hijacking.
  4. A bank customer's browser submits a transfer while the customer is logged in and browsing an unrelated forum. Cross-site request forgery. Nothing was captured; the customer's own session was used.

Key takeaways

  • Sort by target first: facility, path, software, math, credential. The distractors come from the neighboring family.
  • Reflected means a spoofed victim source; amplified means small request, huge response. Poisoning corrupts one resolver; hijacking steals the domain for everyone.
  • Replay copies, forgery tricks. Credential replay re-sends authentication material; CSRF uses the victim's own live browser and captures nothing.
  • Downgrade talks both sides into weak crypto; collision is the outcome, birthday the method. About 2n/2 attempts, which is why modern hashes are long.
  • Spraying goes wide and stays under lockout; brute force goes deep and trips it. Indicators chain, and the chain names the attack.

Indicators of malicious activity are objective 2.4 of Security+ Domain 2, Threats, Vulnerabilities and Mitigations, 22% of the exam and the domain's largest objective. Work all 27 Domain 2 topics, from threat actors through every vulnerability type and mitigation, with our Security+ Domain 2 study guide.

#SecurityPlus #SY0701 #IndicatorsOfCompromise #DDoS #OnPathAttack #PasswordSpraying #ExamPrep #CompTIA #InfoSec #CyberSecurity

Share this article

Keep reading

Security+ deep dives

Approval, Backout, Maintenance Window: Why Security+ Calls Change Management a Security Control

Change management reads like an IT operations topic until you notice where CompTIA put it: Domain 1, beside the control types and the CIA triad. Objective 1.3 in full: the business process from request to documentation, who owns a change versus who is affected by it, the seven technical implications and the question each one forces, why a patch is not a fix until the service restarts, and the version control habit that turns every change into evidence.

Read
Security+ deep dives

The Control Matrix: Four Categories, Six Types, and the Security+ Question You Will See Five Times

Every Security+ exam opens with the same trap: a control described in a sentence, and four answers that are all real words. Objective 1.1 as a grid: the four categories that say who implements a control, the six types that say what it does, why compensating and corrective are not the same thing, and the verb-spotting method that answers the question in ten seconds.

Read
Security+ deep dives

Secure Network Architecture: Zones, Device Placement, Firewalls vs. IDS/IPS, and Secure Protocols

Where you put a control decides what it can do. A Security+ deep dive on network design: security zones and the screened subnet, inline vs. tap and active vs. passive placement, fail-open and fail-closed, the four firewall generations, IDS vs. IPS, and the secure protocol and port swaps the exam expects on sight.

Read

Enjoyed this? Get the AI security news that matters.

Join The AI Security Brief for the top AI security news, plus what's important to the C-suite. Free, straight to your inbox.

No spam. Unsubscribe anytime.

Security+ Domain 2 · 22% of the exam

Know your enemy

Threats, Vulnerabilities & Mitigations is 22% of Security+. Study all 5 objectives (threat actors, attack vectors, vulnerability types, indicators, and mitigations) across 27 topics with 75 practice questions.

Get the Domain 2 guide