πŸ”

312-50v13 β€” questions

Page 8 of 16 Β· 308 total questions.

Topic 1 Β· Question 141

An organization suspects a persistent threat from a cybercriminal. They hire an ethical hacker, John, to evaluate their system security. John identifies several vulnerabilities and advises the organization on preventive measures. However, the organization has limited resources and opts to fix only the most severe vulnerability. Subsequently, a data breach occurs exploiting a different vulnerability. Which of the following statements best describes this scenario?

  • AThe organization is at fault because it did not fix all identified vulnerabilities. (correct answer)
  • BBoth the organization and John share responsibility because they did not adequately manage the vulnerabilities.
  • CJohn is at fault because he did not emphasize the necessity of patching all vulnerabilities.
  • DThe organization is not at fault because they used their resources as per their understanding.
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: The organization is at fault because it did not fix all identified vulnerabilities. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 142

An ethical hacker is attempting to crack NTLM hashed passwords from a Windows SAM file using a rainbow table attack. He has dumped the on-disk contents of the SAM file successfully and noticed that all LM hashes are blank. Given this scenario, which of the following would be the most likely reason for the blank LM hashes?

  • AThe SAM file has been encrypted using the SYSKEY function.
  • BThe passwords exceeded 14 characters in length and therefore, the LM hashes were set to a β€œdummy" value.
  • CThe Windows system is Vista or a later version, where LM hashes are disabled by default. (correct answer)
  • DThe Windows system is using the Kerberos authentication protocol as the default method.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: The Windows system is Vista or a later version, where LM hashes are disabled by default.

Topic 1 Β· Question 143

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?

  • AThe system failed to establish a connection due to an incorrect port number.
  • BThe enumeration process was blocked by the target system's intrusion detection system.
  • CThe secure LDAP connection was not properly initialized due to a lack of 'use_ssl = True' in the server object creation. (correct answer)
  • DThe Python version installed on the CEH's machine is incompatible with the Idap3 library.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: The secure LDAP connection was not properly initialized due to a lack of 'use_ssl = True' in the server object creation. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 144

You are a cybersecurity consultant for a major airport that offers free Wi-Fi to travelers. The management is concerned about the possibility of "Evil Twin" attacks, where a malicious actor sets up a rogue access point that mimics the legitimate one. They are looking for a solution that would not significantly impact the user experience or require travelers to install additional software. What is the most effective security measure you could recommend that fits these constraints, considering the airport's unique operational environment?

  • ARegularly change the SSID of the airport's Wi-Fi network
  • BUse MAC address filtering on the airport's Wi-Fi network
  • CImplement WPA3 encryption for the airport's Wi-Fi network (correct answer)
  • DDisplay a captive portal page that warns users about the possibility of Evil Twin attacks
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Implement WPA3 encryption for the airport's Wi-Fi network

Explanation

Encryption protects confidentiality by making data unreadable without the appropriate key. WPA3 strengthens wireless authentication and encryption compared with earlier Wi-Fi security standards. Recovery point objective defines the maximum acceptable data loss measured in time. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 145

As a Certified Ethical Hacker, you are conducting a footprinting and reconnaissance operation against a target organization. You discover a range of IP addresses associated with the target using the SecurityTrails tool. Now, you need to perform a reverse DNS lookup on these IP addresses to find the associated domain names, as well as determine the nameservers and mail exchange (MX) records. Which of the following DNSRecon commands would be most effective for this purpose?

  • Adnsrecon -r 192.168.1.0/24 -n nsl.example.com -t axfr
  • Bdnsrecon -r 10.0.0.0/24 -n nsl.example.com -t zonewalk
  • Cdnsrecon -r 162.241.216.0/24 -n nsl.example.com -t std (correct answer)
  • Ddnsrecon -r 162.241.216.0/24 -d example.com -t brt
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: dnsrecon -r 162.241.216.0/24 -n nsl.example.com -t std

Explanation

DNS resolves host names to records such as IP addresses and service locations. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 146

You are an ethical hacker tasked with conducting an enumeration of a company's network. Given a Windows Answered Marked for Review 37.6% system with NetBIOS enabled, port 139 open, and file and printer sharing active, you are about to run some nbtstat commands to enumerate NetBIOS names. The company uses IPv6 for its network. Which of the following actions should you take next?

  • ASwitch to an enumeration tool that supports IPv6 (correct answer)
  • BUse nbtstat -a followed by the IPv6 address of the target machine
  • CUse nbtstat -c to get the contents of the NetBIOS name cache
  • DUtilize Nmap Scripting Engine (NSE) for NetBIOS enumeration
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Switch to an enumeration tool that supports IPv6

Explanation

Enumeration actively queries exposed services to identify users, shares, applications, and other attack-surface details.

Topic 1 Β· Question 147

During a red team assessment, a CEH is given a task to perform network scanning on the target network without revealing its IP address. They are also required to find an open port and the services available on the target machine. What scanning technique should they employ, and which command in Zenmap should they use?

  • AUse SCTP INIT Scan with the command "-sY"
  • BUse UDP Raw ICMP Port Unreachable Scanning with the command "-sU"
  • CUse the ACK flag probe scanning technique with the command "-sA"
  • DUse the IDLE/IPID header scan technique with the command "-sI" (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Use the IDLE/IPID header scan technique with the command "-sI"

Topic 1 Β· Question 148

A large corporation is planning to implement preventive measures to counter a broad range of social engineering techniques. The organization has implemented a signature-based IDS, intrusion detection system, to detect known attack payloads and network flow analysis to monitor data entering and leaving the network. The organization is deliberating on the next step. Considering the information provided about various social engineering techniques, what should be the organization's next course of action?

  • AImplement endpoint detection and response solution to oversee endpoint activities
  • BSet up a honeypot to attract potential attackers into a controlled environment for analysis
  • CDeploy more security personnel to physically monitor key points of access
  • DOrganize regular employee awareness training regarding social engineering techniques and preventive measures (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Organize regular employee awareness training regarding social engineering techniques and preventive measures

Topic 1 Β· Question 149

An audacious attacker is targeting a web server you oversee. He intends to perform a Slow HTTP POST attack, by manipulating 'a' HTTP connection. Each connection sends a byte of data every 'b' second, effectively holding up the connections for an extended period. Your server is designed to manage 'm' connections per second, but any connections exceeding this number tend to overwhelm the system. Given 'a=100' and variable 'm', along with the attacker's intention of maximizing the attack duration 'D=a*b', consider the following scenarios. Which is most likely to result in the longest duration of server unavailability?

  • Am=90, b=15: The server can manage 90 connections per second, but the attacker's 100 connections exceed this, and with each connection held up for 15 seconds, the attack duration could be significant. (correct answer)
  • Bm=105, b=12: The server can manage 105 connections per second, more than the attacker's 100 connections, likely maintaining operation despite a moderate hold-up time.
  • Cm=110, b=20: Despite the attacker sending 100 connections, the server can handle 110 connections per second, therefore likely staying operative, regardless of the hold-up time per connection.
  • Dm=95, b=10: Here, the server can handle 95 connections per second, but it falls short against the attacker's 100 connections, albeit the hold-up time per connection is lower.
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: m=90, b=15: The server can manage 90 connections per second, but the attacker's 100 connections exceed this, and with each connection held up for 15 seconds, the attack duration could be significant.

Topic 1 Β· Question 150

A large organization has recently performed a vulnerability assessment using Nessus Professional, and the security team is now preparing the final report. They have identified a high-risk vulnerability, named XYZ, which could potentially allow unauthorized access to the network. In preparing the report, which of the following elements would NOT be typically included in the detailed documentation for this specific vulnerability?

  • AProof of concept (PoC) of the vulnerability, if possible, to demonstrate its potential impact on the system.
  • BThe total number of high, medium, and low-risk vulnerabilities detected throughout the network. (correct answer)
  • CThe list of all affected systems within the organization that are susceptible to the identified vulnerability.
  • DThe CVE ID of the vulnerability and its mapping to the vulnerability's name, XYZ.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: The total number of high, medium, and low-risk vulnerabilities detected throughout the network. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 151

Recently, the employees of a company have been receiving emails that seem to be from their colleagues, but with suspicious attachments. When opened, these attachments appear to install malware on their systems. The IT department suspects that this is a targeted malware attack. Which of the following measures would be the most effective in preventing such attacks?

  • ADisabling Autorun functionality on all drives
  • BAvoiding the use of outdated web browsers and email software
  • CRegularly scan systems for any new files and examine them
  • DApplying the latest patches and updating software programs (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Applying the latest patches and updating software programs

Topic 1 Β· Question 152

A network security analyst, while conducting penetration testing, is aiming to identify a service account password using the Kerberos authentication protocol. They have a valid user authentication ticket (TGT) and decided to carry out a Kerberoasting attack. In the scenario described, which of the following steps should the analyst take next?

  • ACarry out a passive wire sniffing operation using Internet packet sniffers
  • BPerform a PRobability INfinite Chained Elements (PRINCE) attack
  • CExtract plaintext passwords, hashes, PIN codes, and Kerberos tickets using a tool like Mimikatz
  • DRequest a service ticket for the service principal name of the target service account (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Request a service ticket for the service principal name of the target service account This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 153

As a cybersecurity analyst at IoT Defend, you are working with a large utility company that uses Industrial Control Systems (ICS) in its operational technology (OT) environment. The company has recently integrated IoT devices into this environment to enable remote monitoring and control. They want to ensure these devices do not become a weak link in their security posture. To identify potential vulnerabilities in the IoT devices, which of the following actions should you recommend as the first step?

  • AUse stronger encryption algorithms for data transmission between IoT devices.
  • BImplement network segmentation to isolate IoT devices from the rest of the network.
  • CConduct a vulnerability assessment specifically for the IoT devices. (correct answer)
  • DInstall the latest antivirus software on each IoT device.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Conduct a vulnerability assessment specifically for the IoT devices. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 154

A penetration tester is performing an enumeration on a client's network. The tester has acquired permission to perform enumeration activities. They have identified a remote inter-process communication (IPC) share and are trying to collect more information about it. The tester decides to use a common enumeration technique to collect the desired data. Which of the following techniques would be most appropriate for this scenario?

  • AProbe the IPC share by attempting to brute force admin credentials (correct answer)
  • BBrute force Active Directory
  • CExtract usernames using email IDs
  • DConduct a DNS zone transfer
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Probe the IPC share by attempting to brute force admin credentials

Topic 1 Β· Question 155

As a cybersecurity analyst at TechSafe Inc., you are working on a project to improve the security of a smart home system. This IoT-enabled system controls various aspects of the home, from heating and lighting to security cameras and door locks. Your client wants to ensure that even if one device is compromised, the rest of the system remains secure. Which of the following strategies would be most effective for this purpose?

  • ARecommend using a strong password for the smart home system's main control panel.
  • BSuggest implementing two-factor authentication for the smart home system's mobile app.
  • CPropose frequent system resets to clear any potential malware.
  • DAdvise using a dedicated network for the smart home system, separate from the home's main Wi-Fi network. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Advise using a dedicated network for the smart home system, separate from the home's main Wi-Fi network. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 156

During your summer internship at a tech company, you have been asked to review the security settings of their web server. While inspecting, you notice the server reveals detailed error messages to users, including database query errors and internal server errors. As a cybersecurity beginner, what is your understanding of this setting, and how would you advise the company?

  • ARetain the setting as it aids in troubleshooting user issues.
  • BSuppress detailed error messages, as they can expose sensitive information. (correct answer)
  • CImplement stronger encryption to secure the error messages.
  • DIncrease the frequency of automated server backups.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Suppress detailed error messages, as they can expose sensitive information. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 157

You are the chief security officer at AlphaTech, a tech company that specializes in data storage solutions. Your company is developing a new cloud storage platform where users can store their personal files. To ensure data security, the development team is proposing to use symmetric encryption for data at rest. However, they are unsure of how to securely manage and distribute the symmetric keys to users. Which of the following strategies would you recommend to them?

  • AUse hash functions to distribute the keys.
  • BUse HTTPS protocol for secure key transfer.
  • CUse digital signatures to encrypt the symmetric keys.
  • DImplement the Diffie-Hellman protocol for secure key exchange. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Implement the Diffie-Hellman protocol for secure key exchange. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 158

You work as a cloud security specialist at SkyNet Solutions. One of your clients is a healthcare organization that plans to migrate its electronic health record (EHR) system to the cloud. This system contains highly sensitive personal and medical data. As part of your job, you need to ensure the security and privacy of this data while it is being transferred and stored in the cloud. You recommend that data should be encrypted during transit and at rest. However, you also need to ensure that even if a cloud service provider(CSP) has access to encrypted data, they should not be able to decrypt it. Which of the following would be the most suitable strategy to meet this requirement?

  • ARely on network-level encryption protocols for data transfer.
  • BUse SSL/TLS for data transfer and allow the CSP to manage encryption keys.
  • CUtilize the CSP's built-in data encryption services.
  • DUse client-side encryption and manage encryption keys independently of the CSP. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Use client-side encryption and manage encryption keys independently of the CSP.

Explanation

Encryption protects confidentiality by making data unreadable without the appropriate key. This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 159

A certified ethical hacker is conducting a Whois footprinting activity on a specific domain. The individual is leveraging various tools such as Batch IP Converter and Whois Analyzer Pro to retrieve vital details but is unable to gather complete Whois information from the registrar for a particular set of data. As the hacker, what might be the probable data model being utilized by the domain's registrar for storing and looking up Whois information?

  • AThin Whois model working correctly (correct answer)
  • BThin Whois model with a malfunctioning server
  • CThick Whois model with a malfunctioning server
  • DThick Whois model working correctly
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Thin Whois model working correctly

Topic 1 Β· Question 160

You are a cybersecurity professional managing cryptographic systems for a global corporation. The company uses a mix of Elliptic Curve Cryptography (ECC) for key exchange and symmetric encryption algorithms for data encryption. The time complexity of ECC key pair generation is O(n^3), where 'n' is the size of the key. An advanced threat actor group has a quantum computer that can potentially break ECC with a time complexity of O((log n)^2). Given that the ECC key size is 'n=512' and varying symmetric encryption algorithms and key sizes, which scenario would provide the best balance of security and performance?

  • AData encryption with AES-128: Provides moderate security and fast encryption, offering a balance between the two.
  • BData encryption with AES-256: Provides high security with better performance than 3DES, but not as fast as other AES key sizes. (correct answer)
  • CData encryption with 3DES using a 168-bit key: Offers high security but slower performance due to 3DES's inherent inefficiencies.
  • DData encryption with Blowfish using a 448-bit key: Offers high security but potential compatibility issues due to Blowfish's less widespread use.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Data encryption with AES-256: Provides high security with better performance than 3DES, but not as fast as other AES key sizes.

Explanation

Encryption protects confidentiality by making data unreadable without the appropriate key. This option keeps traffic private / properly secured as required.

Showing questions 141–160 of 308 Β· Page 8 of 16