🇺🇸 Certified Ethical Hacker (CEH) · subject
Certified Ethical Hacker (CEH) Network Attacks, Sniffing, and Perimeter Evasion Syllabus
Every chapter and topic of Network Attacks, Sniffing, and Perimeter Evasion examined in Certified Ethical Hacker (CEH) — 4 chapters, 16 topics and 26 sub-topics, plus 55 flashcards written against it.
Network Attacks, Sniffing, and Perimeter Evasion syllabus — full chapter and topic list
Expand any chapter to see its topics and sub-topics. This is the whole examinable outline for Network Attacks, Sniffing, and Perimeter Evasion in Certified Ethical Hacker (CEH), not a summary of it.
-
Sniffing
4 topics- Sniffing Concepts
- Passive vs active sniffing
- Hardware protocol analyzers and SPAN ports
- MAC, ARP, and DHCP Attacks
- MAC flooding and CAM table overflow
- ARP poisoning and spoofing
- DHCP starvation and rogue DHCP
- DNS and Spoofing Attacks
- DNS cache poisoning
- MAC spoofing
- Sniffing Tools and Countermeasures
- Wireshark and tcpdump
- Detection: promiscuous mode and DAI
- Sniffing Concepts
-
Denial-of-Service Attacks
4 topics- DoS and DDoS Concepts
- Attack categories: volumetric, protocol, application
- Attack Techniques
- SYN flood, UDP flood, ICMP flood
- Slowloris and HTTP flood
- Amplification and reflection attacks
- Botnets
- Botnet architecture and command-and-control
- DoS Detection and Countermeasures
- Rate limiting and traffic scrubbing
- DoS and DDoS Concepts
-
Session Hijacking
4 topics- Session Hijacking Concepts
- Application-level vs network-level
- Application-Level Hijacking
- Session token prediction and theft
- Cross-site scripting and session fixation
- Network-Level Hijacking
- TCP/IP hijacking and sequence prediction
- Man-in-the-middle and UDP hijacking
- Countermeasures
- Secure tokens, HSTS, and encryption
- Session Hijacking Concepts
-
Evading IDS, Firewalls, and Honeypots
4 topics- IDS, IPS, Firewall, and Honeypot Concepts
- Detection types: signature, anomaly, stateful
- IDS/IPS Evasion
- Insertion, evasion, and obfuscation
- Fragmentation and session splicing
- Firewall Evasion
- HTTP, SSH, and DNS tunneling
- Bypassing via proxies and source routing
- Detecting and Defeating Honeypots
- IDS, IPS, Firewall, and Honeypot Concepts
Network Attacks, Sniffing, and Perimeter Evasion flashcards for Certified Ethical Hacker (CEH)
18 of 55 cards from the Network Attacks, Sniffing, and Perimeter Evasion deck — real questions with worked answers.
What is sniffing in the context of network security?
The process of capturing and monitoring data packets passing through a network using a packet-capture tool, often to steal information such as credentials, emails, or session data.
What is the difference between passive and active sniffing?
Passive sniffing captures traffic on a hub-based network without injecting packets (traffic is already broadcast to all ports). Active sniffing injects traffic (e.g., ARP poisoning, MAC flooding) into a switched network to redirect traffic to the attacker.
Why does a switched network require active sniffing while a hub does not?
A hub broadcasts every frame to all ports, so any NIC in promiscuous mode can capture it. A switch forwards frames only to the destination port based on its CAM table, so the attacker must actively manipulate the switch (e.g., MAC flooding, ARP poisoning) to receive other hosts' traffic.
What is promiscuous mode on a network interface card?
A NIC mode in which the card passes all received frames to the CPU rather than only those addressed to its own MAC, allowing the host to capture all traffic on the segment.
Which protocols are considered inherently vulnerable to sniffing because they send data in cleartext?
Telnet, HTTP, FTP, SMTP, POP, IMAP, SNMP (v1/v2), and rlogin — they transmit credentials and data without encryption.
What is MAC flooding (CAM table overflow) and what is its effect?
An attack that floods a switch with many frames using bogus source MAC addresses, filling the CAM/MAC table. When full, the switch fails open and behaves like a hub, broadcasting frames to all ports so the attacker can sniff traffic. (Tool example: macof)
What is ARP spoofing (ARP poisoning)?
An attack that sends forged ARP reply messages to associate the attacker's MAC address with the IP address of another host (e.g., the gateway), redirecting that host's traffic through the attacker for man-in-the-middle interception.
Why is ARP inherently vulnerable to spoofing?
ARP is stateless and unauthenticated — hosts accept and cache ARP replies even if they never sent a request (gratuitous ARP), so an attacker can poison ARP caches with false IP-to-MAC mappings.
What is a DHCP starvation attack?
An attacker broadcasts many DHCP requests with spoofed MAC addresses to exhaust the DHCP server's pool of IP addresses, causing a denial of service so legitimate clients cannot obtain addresses. (Tool example: Yersinia, Dhcpstarv)
What is a rogue DHCP server attack?
An attacker sets up an unauthorized DHCP server that responds to client requests faster than the legitimate server, assigning clients a malicious default gateway/DNS so traffic is routed through the attacker (man-in-the-middle).
What is the primary switch countermeasure against MAC flooding and DHCP starvation?
Port security — limit the number of MAC addresses allowed per switch port; DHCP snooping additionally blocks rogue DHCP servers on untrusted ports.
What is DNS spoofing (DNS poisoning)?
An attack that supplies false DNS resolution data so a domain name resolves to an attacker-controlled IP, redirecting victims to a malicious server. Types include intranet, internet, proxy server, and DNS cache poisoning.
What is DNS cache poisoning?
Injecting forged DNS records into a DNS resolver's cache so the resolver returns the attacker's IP for a domain to all users querying it until the cache entry's TTL expires.
What is the difference between ARP spoofing and DNS spoofing in terms of layer and target?
ARP spoofing operates at Layer 2 (data link), poisoning IP-to-MAC mappings on the local segment. DNS spoofing operates at the application/name-resolution layer, falsifying domain-name-to-IP mappings, and can affect users beyond the local segment.
Name three common packet-sniffing tools and their general use.
Wireshark (GUI protocol analyzer for capture/analysis), tcpdump/WinDump (command-line capture), and Ettercap (MITM and active sniffing). Others: Cain & Abel, dsniff, macof.
What display filter would show only HTTP traffic in Wireshark, and what is a capture filter equivalent?
Display filter: http. Capture filter (BPF): tcp port 80.
List three key countermeasures against sniffing attacks.
1) Use encryption (HTTPS/TLS, SSH, IPsec, VPN) so captured data is unreadable. 2) Use static ARP entries and Dynamic ARP Inspection (DAI). 3) Use switches with port security/DHCP snooping and avoid hubs; detect promiscuous NICs.
How can promiscuous-mode (sniffing) hosts be detected?
Using methods such as the ARP method (send ARP to a non-broadcast MAC; only sniffing hosts reply), the ping/ICMP method with a wrong MAC, the DNS method (sniffers may reverse-resolve captured IPs), and tools like Nmap's sniffer-detect script or PromqryUI.
See more Network Attacks, Sniffing, and Perimeter Evasion flashcards →
Planning Network Attacks, Sniffing, and Perimeter Evasion for Certified Ethical Hacker (CEH)
Network Attacks, Sniffing, and Perimeter Evasion is about 18% of the Certified Ethical Hacker (CEH) syllabus by topic count — 16 of 90 topics, spread over 4 chapters. At roughly 45 minutes per topic plus 12 minutes per sub-topic, a first pass runs to about 15 hours.
The heaviest chapters are Sniffing (4 topics), Denial-of-Service Attacks (4 topics), Session Hijacking (4 topics) . Front-load those while your energy is high; the short chapters are better revision filler later.
Work top-down: read the chapter, then tick topics off individually rather than marking the whole chapter done. Sub-topics are where silent gaps hide.
Network Attacks, Sniffing, and Perimeter Evasion (Certified Ethical Hacker (CEH)) FAQ
What is in the Certified Ethical Hacker (CEH) Network Attacks, Sniffing, and Perimeter Evasion syllabus?
Network Attacks, Sniffing, and Perimeter Evasion is split into 4 chapters — Sniffing, Denial-of-Service Attacks, Session Hijacking and Evading IDS, Firewalls, and Honeypots, containing 16 topics and 26 sub-topics in total.
How is Network Attacks, Sniffing, and Perimeter Evasion structured in the Certified Ethical Hacker (CEH) syllabus?
4 chapters. Network Attacks, Sniffing, and Perimeter Evasion accounts for about 18% of the topics in the whole Certified Ethical Hacker (CEH) syllabus (16 of 90).
How long should I spend on Network Attacks, Sniffing, and Perimeter Evasion for Certified Ethical Hacker (CEH)?
Budget around 15 hours for a first pass through Network Attacks, Sniffing, and Perimeter Evasion — about 45 minutes per topic plus 12 minutes per sub-topic across its 16 topics. Add revision cycles on top.
Are there flashcards for Certified Ethical Hacker (CEH) Network Attacks, Sniffing, and Perimeter Evasion?
Yes — a 55-card Network Attacks, Sniffing, and Perimeter Evasion deck. Sample cards are printed on this page, and the full deck is free in the Examius app with spaced repetition scheduling.