Fingerprinting an Operating System helps a cracker because:
Correct Answer: D
OS fingerprinting helps attackers identify the operating system and version running on a target host. This allows them to: Determine potential vulnerabilities Choose appropriate exploits for the OS version and configuration Bypass ineffective defenses From CEH v13 Courseware: Module 3: Scanning Networks Topic: Active and Passive OS Fingerprinting CEH v13 Study Guide states: "Fingerprinting identifies the OS type/version and helps attackers choose specific exploits that apply to that system." Incorrect Options: A: Software enumeration is different from OS fingerprinting. B/C: Misleading or incorrect in this context. Reference:CEH v13 Study Guide - Module 3: OS Fingerprinting and ReconnaissanceNmap OS Detection (nmap.org) ======
Question 297
Joe, a cybersecurity analyst at Norwest Freight Services, has been assigned to run a vulnerability scan across the organization's infrastructure. He is specifically tasked with detecting weaknesses such as missing patches, unnecessary services, weak encryption, and authentication flaws across multiple servers. His scan identifies open ports and active services throughout the environment, providing a clear map of potential entry points for attackers. Which type of vulnerability scanning best matches Joe's assignment?
Correct Answer: A
Joe's assignment is best described as network-based vulnerability scanning because the scan is mapping open ports and active services across multiple servers and identifying weaknesses visible through network exposure, such as unnecessary services, weak encryption configurations on network services, and authentication-related flaws reachable over the network. Network-based scanning focuses on discovering and evaluating network-accessible entry points by probing hosts and services, enumerating versions /configurations, and correlating findings to known weaknesses. The scenario highlights that the scan "identifies open ports and active services throughout the environment," producing "a clear map of potential entry points." That is the core outcome of network-based scanning: a view of the organization's externally or internally reachable services, where each listening port represents a possible attack path. From there, scanners can detect issues like outdated service versions (implying missing patches), insecure protocols (e.g., weak TLS ciphers), default credentials, and exposed administrative interfaces. Why the other options are less accurate: External scanning (B) refers to a scan performed from outside the organization's perimeter. The scenario says he is scanning across organizational infrastructure and focuses on multiple servers; it doesn't specify "from the Internet," so "external" is not the best classification. Application scanning (C) targets web applications or specific application-layer logic (e.g., SQLi, XSS, auth bypass). Joe's focus is broader infrastructure exposure and service/port mapping. Host-based scanning (D) typically involves local, credentialed inspection on the host (patch inventory, local config files, registry) rather than primarily mapping ports/services across many systems. While host-based scanning is valuable, the described output is network entry-point mapping. Therefore, the scan type that best matches Joe's task is A. Network-based Scanning.
Question 298
Which attack abuses business logic?
Correct Answer: B
The correct answer is B because an attack that abuses the intended workflow, rules, or assumptions of an application is classified as a logic flaw or business logic flaw. In web application hacking, business logic defines how the application should behave, such as pricing rules, transaction sequencing, authorization decisions, coupon use, fund transfer limits, or approval workflows. A business logic flaw occurs when those rules are incomplete, poorly enforced, or can be manipulated by an attacker. The CEH web application material explains that business logic flaws exist when the application's core rules are not foolproof and can be exploited to compromise the application; these flaws often require careful review of architecture and design because automated scanners may not detect them reliably. XSS abuses improper output/input handling to run scripts in a browser. CSRF abuses a user's authenticated session. SQLi abuses database query construction. The option that directly matches abusing business logic is Logic flaw.
Question 299
in the Common Vulnerability Scoring System (CVSS) v3.1 severity ratings, what range does medium vulnerability fall in?
Correct Answer: C
Question 300
Which of the following is a component of a risk assessment?
Correct Answer: A
Administrative safeguards are a key component of risk assessment and risk management, involving policies, procedures, training, and governance measures used to reduce security risks.