A zone file consists of which of the following Resource Records (RRs)?
Correct Answer: D
A DNS zone file contains resource records (RRs) that define mappings and configurations for domains and subdomains. The standard records found in a zone file include: * SOA (Start of Authority): Indicates the beginning of the zone file. * NS (Name Server): Specifies the authoritative name servers. * A (Address): Maps hostnames to IPv4 addresses. * MX (Mail Exchange): Specifies mail servers. These records are essential for the DNS resolution process and mail routing. From CEH v13 Official Courseware: * Module 3: DNS Enumeration * Topic: DNS Record Types CEH v13 Study Guide states: "A zone file contains all the resource records including SOA, NS, A, and MX. These define name server authority, IP resolution, and mail server routing." Incorrect Options: * A: DNS is a protocol, not a resource record. * B: PTR is for reverse DNS, typically in a separate reverse zone file. * C: AXFR is a DNS transfer mechanism, not an RR in the zone file. Reference:CEH v13 Study Guide - Module 3: DNS Record TypesRFC 1035 - Domain Names: Implementation and Specification
Question 117
A penetration tester is attempting to gain access to a wireless network that is secured with WPA2 encryption. The tester successfully captures the WPA2 handshake but now needs to crack the pre-shared key. What is the most effective method to proceed?
Correct Answer: B
WPA2-PSK networks authenticate users using a pre-shared key derived from a passphrase. After capturing the 4-way handshake, CEH teaches that the standard and most effective method to recover the key is to perform an offline dictionary attack, where wordlist entries are hashed and compared against the captured handshake values. Offline cracking avoids detection and is significantly faster than brute-force attempts.
Question 118
Dayn, an attacker, wanted to detect if any honeypots are installed in a target network. For this purpose, he used a time-based TCP fingerprinting method to validate the response to a normal computer and the response of a honeypot to a manual SYN request. Which of the following techniques is employed by Dayn to detect honeypots?
Correct Answer: B
Question 119
A penetration tester evaluates a secure web application using HTTPS, secure cookies, and multi-factor authentication. To hijack a legitimate user's session without triggering alerts, which technique should be used?
Correct Answer: C
CEH v13 describes Cross-Site Request Forgery (CSRF) as a technique that forces authenticated users to unknowingly execute actions within a web application without their intent. Unlike session hijacking methods that require stealing or replaying session cookies, CSRF exploits the trust relationship that the server has with a user's browser. Even with HTTPS, secure cookies, and MFA, once a user is authenticated, the browser automatically sends session cookies with each request. If the attacker convinces the victim to load a maliciously crafted webpage or URL, the browser sends a forged request to the target application, executing actions under the user's authenticated session. CEH notes that secure cookies and MFA do not stop CSRF because no credentials are stolen-only forced actions occur. This technique is sophisticated because it leaves minimal traces, avoids direct cookie manipulation, bypasses robust authentication mechanisms, and leverages design weaknesses rather than technical misconfigurations. Protection typically requires anti-CSRF tokens and proper origin validation.
Question 120
What ports should be blocked on the firewall to prevent NetBIOS traffic from not coming through the firewall if your network is comprised of Windows NT, 2000, and XP?
Correct Answer: B,C,E
To block NetBIOS and related Windows networking traffic from traversing a firewall (especially from external sources), you should block the following ports: Port 135 (TCP/UDP): Microsoft RPC endpoint mapper (DCOM/RPC) Port 139 (TCP): NetBIOS Session Service Port 445 (TCP): Direct-hosted SMB over TCP/IP (Windows 2000+) These ports are commonly used for: File sharing RPC-based communication Windows network services From CEH v13 Official Courseware: Module 3: Scanning Networks Module 4: Enumeration CEH v13 Study Guide states: "To prevent external enumeration, remote file sharing, and NetBIOS attacks, administrators should block inbound access to ports 135, 139, and 445 on the firewall." Incorrect Options: A (110): POP3 mail service D (161): SNMP F (1024): High ephemeral port; not specific to NetBIOS Reference:CEH v13 Study Guide - Module 4: Enumeration # NetBIOS Enumeration PreventionMicrosoft Security Best Practices - Block SMB Ports (135-139, 445) ======