Your company was hired by a small healthcare provider to perform a technical assessment on the network. What is the best approach for discovering vulnerabilities on a Windows-based computer?
Correct Answer: B
The correct answer is B. Use a scan tool like Nessus. In CEH vulnerability assessment and reconnaissance concepts, vulnerability scanners are used to discover security weaknesses on systems, applications, services, and network devices. Nessus is a widely known vulnerability assessment tool that can scan Windows-based systems for missing patches, weak configurations, open ports, insecure services, outdated software, and known vulnerabilities. Option A is not the best answer because MITRE CVE provides vulnerability information, but it does not directly assess whether a specific Windows computer is vulnerable. Option C is related to system imaging or forensic preparation, not vulnerability discovery. Option D, Windows Update, helps install patches, but it does not perform a complete vulnerability assessment or detect misconfigurations and exposed services. For a healthcare provider, vulnerability scanning is especially important because systems may process sensitive patient or business data. A scanner such as Nessus gives structured results that can be prioritized and remediated. Therefore, the best approach is to use a scan tool like Nessus.
Question 82
During an authorized cloud security assessment for an e-commerce company based in Seattle, Washington, a certified ethical hacker gains temporary programmatic access to the organization's cloud account. The tester focuses on identifying permission boundaries by querying the account to determine which identity entities are associated with attached policies and what level of access those identities possess across cloud resources. The objective is to understand privilege relationships before attempting any further controlled actions. Which cloud reconnaissance activity best aligns with this effort?
Correct Answer: A
This activity focuses on identifying identity entities and analyzing their attached policies and access levels, which is characteristic of examining role-based permissions and privilege relationships within cloud identity management.
Question 83
On 10th of July this year, during a security penetration test at IntelliCore Systems in Raleigh, North Carolina, the ethical hacking team evaluates the stability of the company's file-sharing server. Sofia crafts and transmits a sequence of oversized, malformed packets designed to test how the server handles unexpected input. Shortly after, the system begins crashing intermittently due to processing failures triggered by these anomalous network requests. The security team onsite is tasked with identifying the root cause behind the packet-induced instability and attributing it to a known DoS tactic. Which of the following best explains the technique Sofia used to trigger the server crashes?
Correct Answer: B
Ping of Death is a classic Denial-of-Service technique in which an attacker sends oversized or malformed IP packets that exceed the maximum allowed size when reassembled. In IP networks, the maximum packet size is 65,535 bytes. Historically, attackers exploited fragmentation by sending a series of IP fragments that, when reassembled by the target, resulted in a packet larger than the permitted limit or produced an invalid buffer condition. Vulnerable systems could crash, reboot, or become unstable because the network stack mishandled the reassembly process or failed to properly validate packet length and structure. The scenario matches this behavior precisely: Sofia transmits "oversized, malformed packets" and the server "crashes intermittently due to processing failures." That symptom is more consistent with a malformed-packet handling flaw than with pure traffic volume. An ICMP flood and an ACK flood are volumetric or resource- exhaustion attacks that overwhelm bandwidth or connection-handling capacity, typically degrading performance rather than directly causing crashes from malformed packet parsing. A Smurf attack is an amplification-based ICMP attack using broadcast addresses to multiply traffic toward a victim; again, it is about volume, not crafted malformed packets that trigger parsing failures. CEH guidance highlights that PoD-style attacks exploit improper packet validation and reassembly logic. Modern systems are generally patched, but poorly maintained devices, legacy OS stacks, and some embedded implementations can still exhibit instability when exposed to malformed fragmentation and reassembly edge cases.
Question 84
A Certified Ethical Hacker (CEH) is given the task to perform an LDAP enumeration on a target system. The system is secured and accepts connections only on secure LDAP. The CEH uses Python for the enumeration process. After successfully installing LDAP and establishing a connection with the target, he attempts to fetch details like the domain name and naming context but is unable to receive the expected response. Considering the circumstances, which of the following is the most plausible reason for this situation?
Correct Answer: B
The most plausible reason for the situation is that the secure LDAP connection was not properly initialized due to a lack of 'use_ssl = True' in the server object creation. To use secure LDAP (LDAPS), the CEH needs to specify the use_ssl parameter as True when creating the server object with the ldap3 library in Python. This parameter tells the library to use SSL/TLS encryption for the LDAP communication. If the parameter is omitted or set to False, the library will use plain LDAP, which may not be accepted by the target system that only allows secure LDAP connections12. For example, the CEH can use the following code to create a secure LDAP server object: from ldap3 import Server, Connection, ALL server = Server('ldaps://<target_ip>', use_ssl=True, get_info=ALL) connection = Connection(server, user='<username>', password='<password>') connection.bind() The other options are not as plausible as option B for the following reasons: A). The Python version installed on the CEH's machine is incompatible with the ldap3 library: This option is unlikely because the ldap3 library supports Python versions from 2.6 to 3.9, which covers most of the commonly used Python versions3. Moreover, if the Python version was incompatible, the CEH would not be able to install the library or import it in the code, and would encounter errors before establishing the connection. C). The enumeration process was blocked by the target system's intrusion detection system: This option is possible but not very plausible because the CEH was able to establish a connection with the target, which means the intrusion detection system did not block the initial handshake. Moreover, the enumeration process would not affect the response of the target system, but rather the visibility of the results. If the intrusion detection system detected and blocked the enumeration, the CEH would receive an error message or a blank response, not an unexpected response. D). The system failed to establish a connection due to an incorrect port number: This option is incorrect because the CEH was able to establish a connection with the target, which means the port number was correct. If the port number was incorrect, the CEH would not be able to connect to the target system at all, and would receive a connection refused error. References: 1: ldap3 - LDAP library for Python 2: How to use LDAPS with Python - Stack Overflow 3: ldap3 2.9 documentation
Question 85
In the crisp mountain air of Denver, Colorado, ethical hacker Lila Chen was hired by MediVault, a US-based healthcare platform used by regional clinics to manage patient data. While quietly conducting the initial footprinting phase of a red team assessment, Lila began examining publicly available platforms that track corporate valuation trends, investor activity, and industry performance indicators. As her analysis deepened, she uncovered detailed valuation graphs, executive summaries, industry reports, and aggregated datasets that revealed subtle shifts in market positioning and potential strategic developments-insights the organization had not disclosed on its own website or press releases. What footprinting technique was Lila most likely employing?
Correct Answer: D
Lila is gathering information from financial services because the examined sources concentrate on valuations, investment activity, industry performance, and financial or market trends. Such services can reveal funding rounds, acquisitions, revenue estimates, ownership relationships, regulatory filings, investors, executives, and changes in corporate strategy. During authorized footprinting, these details help an assessor understand the target's business structure, valuable assets, partners, and potential social-engineering themes. Financial intelligence may come from regulatory filing systems, market-data providers, investment databases, and company-analysis platforms. For example, the SEC's EDGAR search system provides public access to corporate filings containing financial, operational, and leadership information. Commercial platforms may aggregate those records with valuation models and investor data. Business-profile sites generally emphasize company descriptions, personnel, addresses, products, and contact information. They may contain limited financial information, but valuation graphs and investment- performance indicators make financial services the more precise category. Reputation tracking focuses on public sentiment, reviews, complaints, media coverage, and brand perception. Monitoring with alerts automatically notifies the investigator when selected names or keywords appear online; the scenario instead describes direct research across financial datasets. Therefore, gathering information from financial services is the CEH footprinting technique that best fits the evidence.