CompTIA Security+ Exam Notes

CompTIA Security+ Exam Notes
Let Us Help You Pass

Friday, September 25, 2026

Deauthentication Attacks Explained: Wi-Fi Deauth for Security+, PenTest+, and Network+

 Deauthentication Attacks: A Security+, PenTest+, and Network+ Exam Prep Guide

What Is a Deauthentication Attack?

A deauthentication attack exploits a weakness in the 802.11 wireless standard: management frames — the frames that handle association, authentication, and disconnection — were never encrypted or authenticated in the original protocol. An attacker who can spoof the source address of an access point or client can send a forged deauthentication frame, and the receiving device disconnects immediately, no credentials required.

This single trick shows up across three exams because it's genuinely multi-purpose: it's a denial-of-service technique, a stepping stone to capturing a WPA/WPA2 handshake, and the forcing function behind most evil twin attacks. Security+, PenTest+, and Network+ each test it from a different angle — defending against it, executing it under authorization, and recognizing it as a troubleshooting symptom, respectively.

A Quick Refresher on How Wi-Fi Association Works

Before a client can pass traffic, it goes through a predictable sequence with the access point (AP):

  • Probe/Beacon — the client discovers the AP via beacon frames (or actively probes for it).
  • Authentication — a largely vestigial open-system exchange (real security comes later, at the 4-way handshake).
  • Association — the client and AP agree on capabilities, and the client joins the BSS.
  • 4-Way Handshake (WPA2/WPA3) — the client and AP derive session keys from the pre-shared key or 802.1X credentials without ever sending the key itself over the air.

A deauthentication frame forces the client out of the associated state, back to square one — and if the attacker is listening, the client's next reconnection attempt regenerates the 4-way handshake in plain sight.

Deauth Attack Variants

Variant

What the attacker does

Primary effect

Targeted deauth

Spoofs the AP's MAC and sends deauth frames to one specific client

Disconnects a single user, often to force a handshake capture

Broadcast deauth

Sends deauth frames to the broadcast address, hitting every associated client

Denial of service across the entire BSS

Deauth-to-capture

Deauths a client, then captures the WPA/WPA2 handshake on reconnection

Enables offline password cracking against the PSK

Deauth-to-evil-twin

Deauths clients from the legitimate AP while a rogue AP with the same SSID is active

Forces clients to reconnect to the attacker's rogue AP instead

The deauth-to-capture variant is the one every exam leans on hardest, because it's the direct bridge between a passive weakness (unencrypted management frames) and an active compromise (a crackable password hash).

How the Attack Is Carried Out

A typical deauth-driven handshake capture, as exam material walks through it:

  1. Discover the target network — identify the BSSID, channel, and connected clients using a tool like airodump-ng in monitor mode.
  2. Start capturing — point the capture at the target channel and BSSID so the handshake will be recorded when it happens.
  3. Send forged deauth frames — a tool like aireplay-ng (--deauth) or mdk4 sends spoofed deauthentication frames to a connected client.
  4. Capture the handshake — the client automatically reconnects, and the 4-way handshake is recorded in the capture file.
  5. Crack offline — tools like aircrack-ng or hashcat attempt to recover the pre-shared key against the captured handshake, entirely offline and undetectable to the target network.

Why It Matters: The Business Impact

  • Denial of service — a sustained deauth flood can knock every client off a wireless network with minimal attacker effort or equipment.
  • Credential exposure — a captured handshake, if the PSK is weak, can be cracked offline and hand over full network access.
  • Evil twin facilitation — repeated deauths make clients abandon the legitimate AP for a rogue one, exposing them to credential harvesting or traffic interception.
  • Low cost, low skill barrier — deauth attacks require cheap hardware and widely available tools, making them a common real-world nuisance, not just a lab exercise.

For a report, the finding is the specific weakness enabling it (WPA2-Personal with a guessable PSK, no 802.11w) — not just "the network was disconnected."

Detection and Mitigation

Control

What it does

802.11w (Management Frame Protection)

Cryptographically protects deauth and disassociation frames, making forged ones rejected by compliant clients

WPA3

Mandates 802.11w and replaces the PSK exchange with SAE, resisting offline handshake-cracking entirely

Wireless Intrusion Prevention System (WIPS)

Monitors for abnormal volumes of deauth frames and can alert or actively counter rogue devices

Strong, long PSKs or 802.1X/EAP

Makes a captured handshake computationally impractical to crack even if captured

Best-practice guidance to remember for the exam: 802.11w and WPA3 don't stop a deauth frame from being sent — they stop it from being honored, which is the actual fix.

Security+ Exam Tips

  • Deauthentication (and the related disassociation) attack is listed explicitly under Security+'s Threats, Vulnerabilities, and Mitigations domain, grouped with other wireless attacks like jamming, evil twin, and IV attacks.
  • Know 802.11w (Management Frame Protection) by name as the direct mitigation — Security+ loves pairing an attack with its specific countermeasure.
  • Understand that WPA3 is the modern answer to most legacy wireless weaknesses, including deauth-enabled handshake capture, through mandatory MFP and SAE.
  • Don't confuse deauthentication with jamming — jamming is RF-layer interference with no valid frames involved; deauth is a protocol-layer attack using legitimate (forged) frame types.

PenTest+ Exam Tips

Deauthentication attacks map to PenTest+'s Attacks and Exploits domain, under wireless attacks, alongside evil twin, rogue AP, and Bluetooth-based attacks.

  • Tool recognition — know aircrack-ng, aireplay-ng, and mdk4 by name and purpose; expect them as answer choices in wireless-attack scenario questions.
  • Authorization and scope — PenTest+ emphasizes that wireless attacks have a physical/RF dimension: deauthing a network can affect devices and people outside the engagement's intended scope, so rules of engagement around physical location matter more here than in most other attack types.
  • Chaining attacks — expect deauth framed as one step in a larger chain (deauth → capture handshake → crack — or deauth → evil twin → credential harvest), not as a standalone objective.
  • Reporting — findings should specify the encryption/authentication method in use and whether 802.11w or WPA3 would have prevented the capture.

Network+ Exam Tips

  • Network+ tests deauthentication attacks primarily as a wireless troubleshooting and security concept, not something you're expected to execute — know what it is and what symptoms it produces (clients repeatedly dropping and reconnecting).
  • Expect it grouped with other wireless threats in the Network Security objectives: evil twin, rogue AP, war driving, and jamming.
  • Know the difference between rogue AP (an unauthorized AP added to the network) and evil twin (an AP impersonating a legitimate one) — deauth attacks are commonly the tool that makes an evil twin effective.
  • Recognize WPA3 and 802.11w as the standards-based answer when a question asks how to harden a WLAN against this category of attack.

Key Takeaways

A deauthentication attack works because 802.11 management frames were built on trust rather than authentication — a gap that WPA3 and 802.11w finally close. Everything downstream of the forged frame, from a simple denial of service to a captured handshake to a successful evil twin, depends on that one unprotected frame type being honored.

For exam day, anchor on three things: what a deauth frame actually is (a forged management frame, not an exploit against encryption), the tool most associated with it (aireplay-ng), and the fact that all three exams converge on the same fix — 802.11w/WPA3 — even though they test the attack from three different angles: defend it (Security+), execute and report it (PenTest+), and recognize it in the field (Network+).

No comments:

Post a Comment