Network and Wireless Attacks

Key Takeaways

  • Network attacks fail a trust assumption: traffic redirection, name resolution, address identity, availability, or a wireless trust boundary.
  • On-path (man-in-the-middle) attacks intercept or alter traffic between parties; spoofing forges a trusted IP, MAC, or identity.
  • DoS and DDoS exhaust a resource - bandwidth (volumetric), state tables (protocol), or application logic - and mitigation must sit at or before the exhausted point.
  • Wireless attacks include evil twin, rogue AP, deauthentication, jamming, and WPS abuse; WPA3 and 802.1X harden access.
  • Mitigations include segmentation, DNSSEC, dynamic ARP inspection, DHCP snooping, port security, secure protocols, and upstream DDoS scrubbing.
Last updated: June 2026

Ask What Trust Failed

Network-attack questions are really asking which trust assumption broke. Did the attacker redirect traffic, impersonate a system, flood a service, weaken wireless access, or trick name resolution? Identify that first, then the mitigation usually follows.

AttackWhat happensTypical clueMitigation
On-path (MITM)Attacker intercepts traffic between partiesCertificate warning, altered trafficTLS validation, VPN, secure switching
ARP poisoningAttacker maps their MAC to another's IPGateway MAC changes; local LAN onlyDynamic ARP inspection, static entries for critical hosts
DNS poisoningName resolves to a malicious addressCorrect URL, wrong destination IPDNSSEC, trusted resolvers, cache flushing
IP / MAC spoofingAttacker forges an address identityTraffic from impossible or duplicate addressACLs, DHCP snooping, port security
DoS / DDoSService exhausted or unreachableTraffic flood, resource saturationRate limiting, CDN/scrubbing, autoscaling
ReplayCaptured valid data is resentDuplicate valid request or tokenNonces, timestamps, session protection
SSL strippingHTTPS downgraded to HTTPSensitive site loads over HTTPHSTS, secure cookies, awareness
VLAN hoppingAttacker reaches another VLANUnexpected cross-VLAN trafficDisable trunking on access ports, harden native VLAN

Wireless Attack Map

A key distinction the exam loves: a rogue access point is unauthorized infrastructure plugged into your network, while an evil twin impersonates a known SSID to lure clients - same name, attacker's hardware.

Wireless attackDescriptionDefense
Evil twinFake AP broadcasts a legitimate SSID802.1X with certificates, user verification
Rogue APUnauthorized AP attached to the LANWireless scanning, NAC, switch port control
DeauthenticationForged frames knock clients off Wi-FiWPA3 / 802.11w management-frame protection
JammingRF interference disrupts the bandSpectrum analysis, channel planning, physical response
BluejackingUnsolicited Bluetooth messagesDisable discovery, awareness
BluesnarfingUnauthorized Bluetooth data theftPatch devices, disable unused Bluetooth
WPS PIN attackWeak 8-digit WPS PIN brute-forcedDisable WPS entirely

Note that WPA3 adds SAE (Simultaneous Authentication of Equals) to resist the offline dictionary attacks that WPA2's 4-way handshake allowed, and mandates management-frame protection that blunts deauthentication.

Worked Example: Name Resolution

A user types the correct banking URL but lands on a convincing fake. The certificate is invalid, and the DNS cache shows the bank's domain resolving to an unfamiliar IP. That points to DNS poisoning or local hosts-file tampering, not a password attack. The right response: flush the poisoned entry, verify resolver integrity, check the endpoint for compromise, and enforce DNSSEC or a trusted/encrypted resolver.

Worked Example: DDoS Triage

Mitigation depends entirely on where the resource is exhausted. A local firewall cannot help if the circuit is saturated before traffic ever reaches it.

SymptomLikely DDoS layerResponse
Upstream link saturatedVolumetric (Layer 3/4)Provider scrubbing or CDN absorption
Firewall state table fullProtocol / state exhaustionSYN cookies, rate limits, upstream filtering
Web CPU spikes from expensive searchesApplication (Layer 7)WAF rules, caching, request rate limits

Common Traps

TrapBetter exam reasoning
"Use encryption" for every network attackEncryption aids confidentiality/integrity but does nothing against flooding or jamming
Confuse rogue AP and evil twinRogue AP is unauthorized infrastructure; evil twin impersonates a known SSID
Treat jamming as an authentication failureJamming is RF interference, needing spectrum or physical investigation
Place DDoS mitigation behind the bottleneckFiltering must occur at or before the exhausted resource

Layer-2 and Routing Trust Failures

Many SY0-701 network questions live at Layer 2, where there is little built-in trust. An attacker on the local segment can forge ARP replies, exhaust the DHCP pool, or flood the switch CAM table. Knowing the matching switch hardening control is exactly what the exam rewards.

Local attackEffectSwitch/control mitigation
MAC floodingCAM table overflows; switch fails open and floods all portsPort security, limit MACs per port
ARP poisoningRedirects traffic by forging IP-to-MAC mappingsDynamic ARP inspection (DAI)
DHCP starvationExhausts the address pool, denying clientsDHCP snooping, rate limiting
Rogue DHCP serverHands clients a malicious gateway/DNSDHCP snooping trusted ports
VLAN hopping (double-tag/switch-spoof)Crosses VLAN boundariesDisable DTP, set access ports, change native VLAN

DNS-based attacks also deserve precision: DNS poisoning corrupts a resolver's cache so a correct name returns a malicious IP, while domain hijacking and typosquatting trick the user before resolution even matters. DNSSEC signs records so a resolver can validate authenticity, and encrypted transports (DoH/DoT) protect the query in transit but do not by themselves prove record integrity.

Quick Drill

(1) Cafe users join "CorpWiFi" and type credentials into a captive portal - evil twin. (2) The default-gateway IP suddenly maps to a new MAC on the LAN - ARP poisoning. (3) A public API gets millions of valid-looking search requests per minute - application-layer DDoS. (4) Correct hostnames resolve to attacker addresses - DNS poisoning or resolver compromise. (5) The switch suddenly floods all frames to every port after a burst of unknown MACs - MAC flooding; enable port security.

Test Your Knowledge

Users in a coffee shop connect to a wireless network broadcasting the same SSID as their corporate Wi-Fi and enter credentials. What attack is this?

A
B
C
D
Test Your Knowledge

A web application is unreachable because its upstream internet circuit is fully saturated with traffic. Which mitigation is most appropriate?

A
B
C
D
Test Your KnowledgeMulti-Select

Which controls help reduce LAN spoofing and address-redirection attacks? Select two.

Select all that apply

Dynamic ARP inspection
DHCP snooping
WPS PIN enrollment
Plain HTTP for device management