By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
For CISSP, Security+, CEH, and Real-World Defense
Network attacks exploit weaknesses in how devices communicate to disrupt services, steal data, or gain unauthorized access. These attacks can cripple businesses (e.g., the 2016 Dyn DDoS attack took down Twitter, Netflix, and Reddit for hours), enable financial fraud (e.g., ARP spoofing in a coffee shop to intercept credit card data), or redirect users to malicious sites (e.g., DNS poisoning leading to a fake bank login page). Understanding these attacks is critical for defending availability (DDoS), integrity (ARP spoofing), and confidentiality (DNS poisoning) of networked systems.
Standards: NIST SP 800-61 (Incident Handling), ISO 27035 (Incident Management).
DoS (Denial of Service): A single-source attack to disrupt service (e.g., SYN flood). Less powerful than DDoS but easier to execute.
ARP (Address Resolution Protocol): Translates IP addresses to MAC addresses in a local network. ARP spoofing manipulates this process to intercept traffic.
Tools: Ettercap, Cain & Abel, arpspoof.
ARP Spoofing (ARP Poisoning): An attacker sends fake ARP messages to link their MAC address with a legitimate IP (e.g., the gateway), redirecting traffic to their machine. Used for MITM (Man-in-the-Middle) attacks.
Example: Stealing login credentials in a public Wi-Fi network.
DNS (Domain Name System): Translates human-readable domain names (e.g., google.com) to IP addresses. DNS poisoning corrupts this mapping.
google.com
Standards: RFC 1035 (DNS protocol), NIST SP 800-81 (DNS security).
DNS Poisoning (DNS Spoofing/Cache Poisoning): An attacker corrupts a DNS resolver’s cache to redirect users to malicious sites (e.g., phishing pages).
Tools: DNSspoof, Metasploit, dnschef.
MITM (Man-in-the-Middle) Attack: An attacker secretly relays or alters communications between two parties (e.g., ARP spoofing, SSL stripping).
Defenses: Encryption (TLS), ARP monitoring, HSTS.
Botnet: A network of compromised devices (bots) controlled by an attacker (C2 server). Used for DDoS, spam, or data theft.
Example: Emotet, TrickBot.
SYN Flood: A DDoS attack exploiting the TCP handshake by sending SYN requests without completing the connection, exhausting server resources.
Defense: SYN cookies, rate limiting.
Amplification Attack: A DDoS technique where small requests generate large responses (e.g., DNS amplification, NTP amplification).
Example: A 1-byte DNS query triggering a 100-byte response.
MAC (Media Access Control) Address: A unique hardware identifier for network interfaces (Layer 2). ARP spoofing targets this.
HSTS (HTTP Strict Transport Security): A web security policy that forces browsers to use HTTPS, preventing SSL stripping attacks.
port-security
nslookup
Correction: DoS = single source; DDoS = distributed (botnet). DDoS is harder to block because traffic comes from many IPs.
Mistake: Thinking ARP spoofing only works on Wi-Fi.
Correction: ARP spoofing works on any local network (wired or wireless) because ARP is a Layer 2 protocol.
Mistake: Assuming DNS poisoning only affects public DNS servers.
Correction: Attackers can poison local DNS caches (e.g., on a corporate resolver or even a single machine).
Mistake: Believing firewalls alone stop DDoS attacks.
Correction: Firewalls can block some attacks (e.g., SYN floods), but volumetric DDoS requires cloud-based scrubbing or ISP intervention.
Mistake: Ignoring application-layer DDoS (e.g., HTTP floods).
arp -a
iptables -A INPUT -p tcp --syn -m limit --limit 1/s -j ACCEPT
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.