EC-Council Certified Ethical Hacker (CEH v13) (312-50v13)
Get full access to the updated question bank and confidently prepare for your exam.
Vendor
EC-Council
Certification
Ethical Hacking
Content
804 Qs
Status
Verified
Updated
39 minutes ago
Test the Practice Engine
Experience our interactive testing environment with free demo questions
Premium Bundle
Complete Success Suite
Save $39 Instantly
-
✓Full PDF + Interactive Engine Everything you need to pass
-
✓All Advanced Question Types Drag & Drop, Hotspots, Case Studies
-
✓Priority 24/7 Expert Support Direct line to certification leads
-
✓90 Days Free Priority Updates Stay current as exams change
Success Metric
98.4% Pass Rate
Standard Simulation
Practice Engine
One-Time Payment
-
Web-Based (Zero Install)
-
Real Testing Environment Virtual & Practice Modes
-
Interactive Engine Drag & Drop, Hotspots
-
60 Days Free Updates
Compatible with All Devices
Basic Tier
PDF Study Guide
Digital Access
- ✓ Exam Questions (PDF)
- ✓ Mobile Friendly
- ✓ 60 Days Updates
Verified 100-Question Preview (312-50v13)
Verified Community
The CertoMetrics Standard.
Recommend the #1 platform for verified EC-Council certification resources.
Success Network
Help a Colleague Succeed.
Invite a peer to get their own updated 312-50v13 prep kit.
Exam Overview
The EC-Council Certified Ethical Hacker (CEH v13) certification is an industry benchmark, validating your expertise in offensive cybersecurity techniques. This credential signifies your ability to think like a malicious actor, master the tools and methodologies used in ethical hacking, and proactively identify vulnerabilities before they can be exploited. Earning your CEH v13 dramatically enhances your professional value, demonstrating a deep understanding of penetration testing, attack vectors, and defensive strategies. It's crucial for cybersecurity professionals aiming to fortify organizational defenses, advance their careers, and gain recognition as a highly skilled practitioner capable of safeguarding critical assets in an ever-evolving digital threat landscape.
Questions
125
Passing Score
70% (700/1000)
Duration
240 Minutes
Difficulty
Intermediate
Level
Professional
Skills Measured
Career Path
Target Roles
Common Questions
Is the material up to date?
Yes. We update our question bank weekly to match the latest EC-Council standards. You get free updates for 90 days.
What format do I get?
You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).
Is there a guarantee?
Absolutely. If you fail the 312-50v13 exam using our materials, we offer a full money-back guarantee.
When do I get the download?
Instantly. The download link is available in your dashboard immediately after payment is confirmed.
Free Study Guide Samples
Previewing updated 312-50v13 bank (100 Questions).
An ethical hacker needs to enumerate user accounts and shared resources within a company's internal network without raising any security alerts. The network consists of Windows servers running default configurations. Which method should the hacker use to gather this information covertly?
Correct Option: A
✅ Choice A: Exploit null sessions to connect anonymously to the IPC$ share
Description: A null session refers to an unauthenticated connection established to a Windows server using a blank username and password. The IPC$ (Inter-Process Communication) share is a hidden, default share on Windows systems used for communication between processes, particularly for named pipes and RPC. By exploiting null sessions to connect to IPC$, an attacker could historically enumerate significant amounts of information about a target system, such as user accounts, group names, share names, services, and even lists of machines and domain controllers, without requiring any credentials.
Why this fits: This technique is a classic and fundamental reconnaissance and enumeration method taught in ethical hacking courses like CEH. It allows an attacker to gather critical intelligence about a target Windows environment (user names, group names, shares, etc.) anonymously, which is invaluable for planning subsequent attacks like password guessing, social engineering, or privilege escalation. It directly addresses the goal of obtaining information without authentication, making it a powerful initial step in a penetration test against vulnerable Windows systems.
penetration tester suspects that a web application’s user profiplaege is vulnteo SrQL ainjebctilon,e as it
uses the useriD parameter in SQL queries without proper sanitization. Which technique should the tester use to confirm the vulnerability?
Correct Option: C
✅ Modify the useriD parameter in the URL to ' OR 1'="1 and check if it returns multiple profiles
Description: This action attempts to exploit a SQL Injection vulnerability. SQL Injection is a code injection technique used to attack data-driven applications, in which malicious SQL statements are inserted into an entry field for execution (e.g., to dump the database contents to the attacker). The payload ' OR 1'="1 is a classic SQL Injection technique known as a "boolean-based blind SQL injection" or "always true" condition.
Why this fits: If the userID parameter is directly incorporated into a SQL query without proper sanitization (e.g., SELECT * FROM users WHERE userID = 'entered_userID'), inserting ' OR 1'="1 would transform the query into something like SELECT * FROM users WHERE userID = '' OR 1='1'. Since 1='1' is always true, the OR condition would cause the database to return all rows (or multiple profiles) from the users table, effectively bypassing the intended single user lookup and revealing the vulnerability. This is a common and effective initial test for SQL injection.
You have been asked to perform a penetration test for a local company. You have had several meetings with the client and are now almost ready to begin the assessment.
Which of the following is the document that would contain verbiage which describes what type of testing is allowed and when you will perform testing and limits your liabilities as a penetration tester?
Correct Option: D
The Rules of Engagement (ROE) is the definitive document for a penetration test, explicitly detailing permitted testing types, scope, schedule, communication protocols, and critical liability limitations for the tester. It formalizes the agreement between the client and the penetration tester, setting clear boundaries and responsibilities to ensure the assessment is conducted legally and ethically. While other documents like the project scope or NDA are important, the ROE specifically addresses the operational aspects and liabilities of the testing itself.
Reference: https://www.eccouncil.org/programs/certified-ethical-hacker-ceh/
A penetration tester is evaluating the security of a mobile application and discovers that it lacks proper input validation. The tester suspects that the application is vulnerable to a malicious code injection attack. What is the most effective way to confirm and exploit this vulnerability?
Correct Option: A
✅ Use directory traversal to access sensitive files stored in the application's internal storage
Description: Directory traversal, also known as path traversal, is a web security vulnerability that allows an attacker to read arbitrary files on the server running an application, and in some cases, write files to the server. It exploits insufficient security validation/sanitization of user-supplied input filepaths, allowing an attacker to manipulate variables that reference files with "dot-dot-slash (../)" sequences, or similar constructs, to move up the directory hierarchy and access files or directories outside of the intended root directory.
Why this fits: The objective is to "access sensitive files stored in the application's internal storage." Directory traversal directly targets this by manipulating file paths to access unauthorized directories and files on the system where the application resides. It's a common method for attackers to gain access to configuration files, source code, or other sensitive data stored outside the web root. The other options describe different types of attacks (cryptographic attacks, authentication attacks, client-side injection) that do not directly correspond to accessing arbitrary files within the application's internal storage via path manipulation.
During an internal penetration test, a security analyst assesses a web application that interfaces with a
backend Oracle database. Initial atternpts using standard SQL injection payloads such as ‘ OR '1'="1 and UNION SELECT return no useful output and do not affect application behavior. Suspecting input sanitization and error suppression, the analyst crafts a new payload:
1AND 1< (SELECT COUNT(*) FROM all_users A, all_users B, all_users
Correct Option: C
✅ Choice C: Heavy query-based SQL injection
Description: Heavy query-based SQL injection is a sophisticated technique, primarily utilized in blind SQL injection scenarios, where an attacker crafts computationally expensive or resource-intensive SQL queries. These queries are designed to consume significant database server resources (e.g., CPU cycles, memory, I/O operations) or perform extensive data processing. The attacker then infers sensitive information by observing the database server's response time, resource utilization patterns, or other observable side effects caused by the execution of these "heavy" queries. Unlike explicit time-based blind SQL injection which uses commands like WAITFOR DELAY to introduce a fixed delay, this method relies on the inherent computational cost or processing burden of the injected query to create measurable differences in response time or behavior, based on true/false conditions for data exfiltration. This can involve complex mathematical operations, large joins, recursive queries, or operations on large datasets.
Why this fits: Without the specific question context, we infer that "Heavy query-based SQL injection" is the correct answer because it describes a technique used to extract data blindly by leveraging the resource consumption of crafted queries to infer information. This method is distinct from:
- Out-of-band SQL injection (Choice A), which relies on the database making an external connection to an attacker-controlled server.
- Union-based SQL injection (Choice B), which involves directly retrieving data using the
UNION SELECTstatement and seeing it in the HTTP response. - Time-based SQL injection using WAITFOR DELAY (Choice D), which specifically uses explicit delay commands to infer data.
Therefore, "Heavy query-based SQL injection" fits a scenario where an attacker observes the performance or resource impact of their complex, injected queries to deduce information in a blind context, but not through direct output, external connections, or explicit WAITFOR DELAY commands.
Which of the following addresses the secrecy and privacy of information?
Correct Option: C
✅ Option C (Correct)
Reasoning: Confidentiality ensures that information is accessible only to those authorized to have access. It specifically addresses the secrecy and privacy of information, protecting it from unauthorized disclosure. This is a fundamental component of information security.
❌ Why the other choices are incorrect:
- Option A is incorrect: Availability ensures authorized users have timely and uninterrupted access to information and resources. It does not address secrecy or privacy.
- Option B is incorrect: Integrity ensures the accuracy, completeness, and trustworthiness of information, protecting it from unauthorized modification. It does not address secrecy or privacy.
- Option D is incorrect: Authentication is the process of verifying a user's identity. While crucial for enforcing security, it is a control mechanism, not the definition of secrecy or privacy itself.
Reference: https://www.eccouncil.org/programs/certified-ethical-hacker-ceh/
During a security evaluation of a smart agriculture setup, an analyst investigates a cloud-managed irrigation controller. The device is found to transmit operational commands and receive firmware updates over unencrypted HTTP. Additionally, it lacks mechanisms to verify the integrity or authenticity of those updates. This vulnerability could allow an adversary to intercept communications or inject malicious firmware, leading to unauthorized control over the device's behavior or denial of essential functionality. Which IoT threat category does this situation best illustrate?
Correct Option: D
✅ Insecure network services
Description: Insecure network services refer to vulnerabilities found in services running on network devices (e.g., web servers, FTP servers, SSH, DNS, SMB) or operating systems, which can be exploited by attackers. These vulnerabilities often stem from misconfigurations, unpatched software, weak encryption, default or weak credentials, or design flaws that allow unauthorized access, denial-of-service, or remote code execution.
Why this fits: The Certified Ethical Hacker (CEH) certification heavily emphasizes identifying and exploiting vulnerabilities in network services. Many common attack vectors, such as port scanning, banner grabbing, service enumeration, buffer overflows, and exploitation of known CVEs, directly target insecure network services. For example, an outdated FTP server, a web server with default credentials, or an unpatched SSH daemon all represent insecure network services that ethical hackers would aim to identify and exploit during a penetration test. This category encompasses a broad range of critical vulnerabilities that are foundational to network security and ethical hacking practices.
As a cybersecurity consultant, you have been hired by a multinational corporation to identify potential
security risks in their network. During the enumeration phase, you utilize LDAP to gather information about the network infrastructure. However, you observe that some critical information isn't retrievable. What could be the primary reason for this?
Correct Option: B
✅ Choice B: Our LDAP directory data is protected by Access Control Lists (ACLs).
Description: Access Control Lists (ACLs) are fundamental security mechanisms used to define and enforce permissions for users and processes accessing specific resources. In the context of an LDAP (Lightweight Directory Access Protocol) directory, ACLs specify which users or groups have rights to read, write, modify, delete, or search particular entries, attributes, or subtrees within the directory.
Why this fits: LDAP directories store critical information, and protecting this data from unauthorized access or modification is paramount. When a client attempts to interact with the LDAP directory (e.g., query for user details, modify a password entry, or add new data), the LDAP server evaluates the request against its configured ACLs. If the requesting entity (user or application) does not possess the required permissions as defined by the ACLs for the specific data or operation, the request will be denied. This mechanism directly protects the LDAP directory data by restricting access based on granular permissions, making it a robust form of data protection. The other options are either general network issues (A), network reachability issues (C), or security-through-obscurity (D), none of which provide direct, explicit data protection within the LDAP service itself like ACLs do.
After the completion of the pen test, you have provided the client with a list of controls to implement to reduce the identified risk.
What term best describes the risk that remains after the controls have been implemented?
Correct Option: B
✅ Option B (Residual risk) (Correct) Reasoning: Residual risk is the risk that remains after an organization has implemented controls and safeguards to mitigate identified threats and vulnerabilities. It represents the remaining level of risk an organization is willing to accept after mitigation efforts. ❌ Why the other choices are incorrect: * Option A is incorrect: Inherent risk is the risk level before any controls or mitigations are applied. * Option C is incorrect: Gap analysis is a method for assessing the difference between current and desired states, not a type of risk. * Option D is incorrect: Total risk often refers to the overall inherent risk exposure without specific mitigation context.
Reference: https://www.eccouncil.org/programs/certified-ethical-hacker-ceh/
A penetration tester is evaluating a secure web application that uses HTTPS, secure cookie flags, and regenerates session IDs only during specific user actions. To hijack a legitimate user's session without triggering security alerts, which advanced session hijacking technique should the tester employ?
Correct Option: D
✅ Implement a Cross-Site Scripting (XSS) attack to steal session tokens.
Description: Cross-Site Scripting (XSS) is a type of web security vulnerability typically found in web applications. XSS enables attackers to inject client-side scripts into web pages viewed by other users. These injected scripts can bypass access controls such as the same-origin policy. Attackers can leverage XSS to execute malicious code in a victim's browser, allowing them to perform actions such as session hijacking by stealing session cookies (which often contain session tokens), defacing websites, or redirecting users to malicious sites.
Why this fits: XSS attacks are a highly effective and common method for stealing session tokens. When a vulnerable web application allows an attacker to inject a script into a page viewed by a victim, that script runs in the context of the victim's browser. If the session cookie (which holds the session token) is not protected with the HttpOnly flag, the injected script can access document.cookie to read the session token and then transmit it to an attacker-controlled server. The attacker can then use this stolen token to impersonate the victim, gaining unauthorized access to their session. This directly addresses the objective of "stealing session tokens."
During a routine security audit, administrators found that cloud storage backups were illegally accessed and modified. What countermeasure would most directly mitigate such incidents in the future?
Premium Solution Locked
Unlock all 804 answers & explanations
During a security review, you have discovered that there are no documented security policies for the area you are assessing.
Which of the following would be the most appropriate course of action?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester suspects that the web application's "Order History" page is vulnerable to SQL Injection because it displays user orders based on an unprotected user ID parameter in the URL. What is the most appropriate approach to test this?
Premium Solution Locked
Unlock all 804 answers & explanations
As a security expert for a prominent tech company, you've noticed an increasing number of attacks on your
web services. You've concluded that the best course of action is to enhance your patch management strategies. Considering the information presented, which of the following strategies would be most effective in ensuring the secure and efficient management of patches and hotfixes?
Premium Solution Locked
Unlock all 804 answers & explanations
During which step of the incident response process would you be tasked with building the team, identifying roles, and testing the communication system?
Premium Solution Locked
Unlock all 804 answers & explanations
An attacker places a malicious VM on the same physical server as a target VM in a multi-tenant cloud environment. The attacker then extracts cryptographic keys using CPU timing analysis. What type of attack was conducted?
Premium Solution Locked
Unlock all 804 answers & explanations
Emily, a security engineer at a Chicago-based healthcare provider, is auditing the organization's new cloud environment after a breach where sensitive patient records were exposed. Her investigation reveals that the root cause was the lack of encryption during data transmission between end-user devices and cloud storage. To mitigate this issue and align with HIPAA compliance requirements, Emily must prioritize addressing the correct cloud computing security risk
Which cloud computing threat should Emily address to mitigate the risk of sen tive data being exposed during transmission?
Premium Solution Locked
Unlock all 804 answers & explanations
Your ethical hacking firm has been hired to conduct a penetration test.
Which of the following documents limits the scope of your activities?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is conducting a security assessment for a client and needs to capture sensitive information transmitted across multiple VLANs without being detected by the organization's security monitoring systems. The network employs strict VLAN segmentation and port security measures to restrict unauthorized access. Which advanced sniffing technique should the tester use to discreetly intercept and analyze traffic across all VLANs?
Premium Solution Locked
Unlock all 804 answers & explanations
On July 2S, 2025, during a penetration test at Horizon Financial Services in Chicago, Illinois, cybersecurity specialist Laura Bennett is analyzing an attack simulation targeting the company's online banking portal. The system logs reveal a coordinated barrage of traffic from multiple compromised systems. orchestrated through a central command-and-control server. flooding the portal and rendering it unavailable to legitimate users. The attack leverages a network of infected devices, likely recruited via malicious links on social media.
What is the structure or concept most likely used to launch this coordinated attack?
Premium Solution Locked
Unlock all 804 answers & explanations
Which of the following is a proprietary information security standard that requires organizations to follow security best practices and use 12 high-level requirements, aligned across six goals?
Premium Solution Locked
Unlock all 804 answers & explanations
During a black-box internal penetration test, a security analyst is tasked with identifying potentially exploitable services running on an SNMP-enabled Linux server. The target organization uses SNMPv2, and the default community string "public" has not been changed. The analyst confirms that UDP port 161 is open and accessible. To gather service-related intelligence for privilege escalation or lateral movement, the analyst decides to enumerate all running processes on the host. Which Nmap command would most effectively retrieve the required information?
Premium Solution Locked
Unlock all 804 answers & explanations
You've recently Joined an international software firm as part of the cybersecurity governance team. While
preparing for an internal compliance review, your supervisor asks you to identify the ISO/IEC standard that
serves as a comprehensive framework for managing an organization's information security. You examine
several standards. including those focusing on risk management. cybersecurity. and control implementation. However, you need to select the one that defines the overarching structure for managing information security programs across the organization.
Which of the following standards should you choose?
Premium Solution Locked
Unlock all 804 answers & explanations
Which of the following protocols is used when an attacker attempts to launch a man-in-the-middle attack by manipulating sequence and acknowledgment numbers?
Premium Solution Locked
Unlock all 804 answers & explanations
During an internal red team engagement, an operator discovers that TCP port 389 is open on a target system identified as a domain controller. To assess the extent of LDAP exposure, the operator runs the command lapser -h <Target IP> -x -s base naming Contexts and receives a response revealing the base distinguished name (DN): DC=internal DC=corp. This naming context indicates the root of the LDAP directory structure used by the organization's Active Directory. With this discovery, the operator plans the next step to continue LDAP enumeration and expand visibility into users and objects in the domain. What is the most logical next action?
Premium Solution Locked
Unlock all 804 answers & explanations
Emma, an ethical hacker at a Chicago-based healthcare provider, is performing a penetration test on the
organization's patient record system following a recent data breach. During her investigation. she discovers
that attackers gained access to a large volume of encrypted patient records but had no knowledge of the
original data or encryption keys. Emma observes that the system uses a block cipher and suspects the
attackers may have applied a cryptanalytic method that examines encrypted outputs in bulk to detect
structural or statistical patterns in the encrypted data.
Which cryptanalysis technique should Emma investigate to assess the system's vuln ility in this scenario?
Premium Solution Locked
Unlock all 804 answers & explanations
Which of the following tools is used to analyze the files produced by several packet-capture programs such as tcpdump, WinDump, Wireshark, and EtherPeek?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is tasked with compromising a company's wireless network, which uses WPA2-PSK encryption. The tester wants to capture the WPA2 handshake and crack the pre-shared key. What is the most appropriate approach to achieve this?
Premium Solution Locked
Unlock all 804 answers & explanations
While conducting a security review for a public healthcare data center, Jason, a senior penetration tester, is asked to gather system descriptions, contact details, and interface metrics from a set of legacy network
devices running SNMPv2. These devices respond on UDP port 161 and use default community strings. Jason must retrieve this structured SNMP data in a format that can be fed into a reporting script without requiring GUI based tools or raw packet captures.
Which of the following methods should Jason use?
Premium Solution Locked
Unlock all 804 answers & explanations
Which of the following is one primary difference between a malicious hacker and an ethical hacker?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester runs a vulnerability scan and identifies an outdated version of a web application running on the company's server. The scan flags this as a medium-risk vulnerability. What is the best next step for the tester?
Premium Solution Locked
Unlock all 804 answers & explanations
During a security penetration test at ABC Financial Services in Miami, Florida, on July 9, 2025, ethical hacker Javier Morales targets the company's online banking portal to assess its resilience. Over several hours. The portal's web server begins to fatter, with legitimate users reporting inability to log in or complete transactions.
The IT team notices the server is struggling to accept new connections, as its maximum connection limit is
nearly reached. despite no significant spike in overall network traffic. Javier's controlled test, run from a secure system, logs interactions to simulate a real attack, aiming to evaluate the IT team's a
to identify the threat.
What DoS/DDoS attack technique is Javier's exercise primarily simulating?
Premium Solution Locked
Unlock all 804 answers & explanations
Which of the following best describes an attack that altered the contents of two critical files?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester targets a company's executive assistants by referencing upcoming board meetings in an email requesting access to confidential agendas. What is the most effective social engineering technique to obtain the necessary credentials without raising suspicion?
Premium Solution Locked
Unlock all 804 answers & explanations
During a security assessment in San Francisco, an ethical hacker is tasked with evaluating a network's
resilience against stealthy reconnaissance attempts. The hacker needs to employ a scanning technique that leverages TCP nags to evade detection by intrusion detection systems. relying on the targetts response
behavior to infer port states without completing a full connection. Which approach best aligns with this
strategy. ensuring minimal visibility during the assessment?
Premium Solution Locked
Unlock all 804 answers & explanations
Which individuals believe that hacking and defacing websites can promote social change?
Premium Solution Locked
Unlock all 804 answers & explanations
During an internal assessment, a penetration tester gains access to a hash dump containing NTLM password hashes from a compromised Windows system. To crack the passwords efficiently, the tester uses a high-performance GPU setup with the hash cat tool, configuring it to attempt millions of password combinations per second using a known hash algorithm. This setup drastically reduces the time required for password recovery compared to CPU-based cracking methods. Which technique is being optimized in this scenario?
Premium Solution Locked
Unlock all 804 answers & explanations
In the heart of Silicon Valley, ethical hacker Sophia Nguyen is hired by InnoVate Solutions, a San Francisco- based startup, to secure their cloud-based task management platform. On March IS, 2025, Sophia begins testing a feature that allows users to upload custom workflow templates to streamline project assignments. By carefully crafting a template file, she manipulates the platform's data processing, triggering unexpected behavior that grants her administrative access to restricted project dashboards. The issue arises from the platform's handling of user-supplied data during object reconstruction, not from dat
se queries, client-side code execution, or session manipulation. Sophia documents her findings to help Innovate's developers strengthen their application.
Which web application vulnerability is Sophia most likely exploiting in Innovate Solutions' task management
platform?
Premium Solution Locked
Unlock all 804 answers & explanations
This type of security test usually takes on an adversarial role and looks to see what an outsider can access and control.
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester finds malware that spreads across a network without user interaction, replicating itself from one machine to another. What type of malware is this?
Premium Solution Locked
Unlock all 804 answers & explanations
In a high-stakes cybersecurity exercise in Boston, Emily, an ethical hacker, is tasked with tracing a mock
phishing email sent to a healthcare provider's staff. using the email header. she identifies a series of IP
addresses and server details, including multiple timestamps and server names. Her objective is to pinpoint the exact moment the email was processed by the sender's system. As part of her reconnaissance. what specific detail from the email header should Emily examine to determine this information?
Premium Solution Locked
Unlock all 804 answers & explanations
Your company performs PCI-DSS audits and penetration testing for third-party clients. During an approved pen test you have discovered a folder on an employee’s computer that appears to have hundreds of credit card numbers and other forms of personally identifiable information (PII).
Which of the following is the best course of action?
Premium Solution Locked
Unlock all 804 answers & explanations
system within a corporate network protected by advanced firewalls, IDS, and email security gateways. To maintain persistence and evade content inspection, the attacker crafts a malicious HTML email attachment containing obfuscated JavaScript code. When the user opens the attachment in a browser, a hidden JavaScript blob dynamically reconstructs a malware payload and triggers an automatic file download on the client side. No external connections are initiated during this process, making it difficult for network security tools to detect or block the attack. Which evasion technique is being employed to bypass the firewall and IDS protections?
Premium Solution Locked
Unlock all 804 answers & explanations
In the heart of Silicon Valley, California, network administrator Jake Henderson oversees the web
infrastructure for Tech Trend innovations, a startup specializing in cloud solutions. During a routine architecture review. Jake evaluates the setup of their web server. which handles high-traffic API requests. He notes that the server's primary module processes incoming requests and works with additional modules to manage encryption, URL rewriting, and authentication. Curious about the server's design. Jake consults the documentation to ensure optimal performance and security.
Which web server component is Jake analyzing as part of Tech Trend Innovations' architecture?
Premium Solution Locked
Unlock all 804 answers & explanations
Which of the following is a common framework applied by business management and other personnel to identify potential events that may affect the enterprise, manage the associated risks and opportunities, and provide reasonable assurance that objectives will be achieved?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester suspects that a web application's user profile page is vulnerable to SQL Injection, as it uses the userID parameter in SQL queries without proper sanitization. Which technique should the tester use to confirm the vulnerability?
Premium Solution Locked
Unlock all 804 answers & explanations
During a post-exploitation phase in a network compromise simulation, ethical hacker Devon Hughes gains a Meterpreter session on a managers Windows 10 workstation. To maintain stealth, he avoids actions that generate obvious signs of tampering such as privilege escalation or file system changes. Instead. he wants to monitor the user's live activity over time without their knowledge. focusing specifically on input patterns and active sessions.
Which Meterpreter command should he use to achieve this objective with minimal v
Premium Solution Locked
Unlock all 804 answers & explanations
When referring to the domain name service, what is a zone?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is running a vulnerability scan on a company's network. The scan identifies an open port with a high-severity vulnerability linked to outdated software. What is the most appropriate next step for the tester?
Premium Solution Locked
Unlock all 804 answers & explanations
You are Ava Mitchell, an ethical hacker at Sentinel Cyberwars, hired to test the wireless defenses of
Horizon Financial. a bank in Boston, Massachusetts. During a covert nighttime assessment, your objective is to simulate an attacker attempting to breach the bank's WPA-protected Wi-Fi network. You deploy a tool that allows you to capture wireless packets, send de-authentication packets to force client reconnections. And attempt to recover the encryption key, all within a single graphical interface. Based on the described
functionality, which Wi-Fi security auditing tool are you using?
Premium Solution Locked
Unlock all 804 answers & explanations
You have gone to an organization’s website to gather information, such as employee names, email addresses, and phone numbers.
Which step of the hacker’s methodology does this correspond to?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester discovers that a web application uses unsensitized user input to dynamically generate file paths. The tester identifies that the application is vulnerable to Remote File Inclusion (RFI). Which action should the tester take to exploit this vulnerability?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is assessing a company's HR department for vulnerability to social engineering attacks using knowledge of recruitment and onboarding processes. What is the most effective technique to obtain network access credentials without raising suspicion?
Premium Solution Locked
Unlock all 804 answers & explanations
Kevin and his friends are going through a local IT firm’s garbage.
Which of the following best describes this activity?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is testing a web application's product search feature, which takes user input and queries the database. The tester suspects the input is not properly sanitized. What is the best approach to confirm the presence of SQL injection?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is assessing an loT thermostat used in a smart home system. The device communicates with a cloud server for updates and commands. The tester discovers that communication between the device and the cloud server is not encrypted. What is the most effective way to exploit this vulnerability?
Premium Solution Locked
Unlock all 804 answers & explanations
You’ve just performed a port scan against an internal device during a routine pen test. Nmap returned the following response: Starting NMAP 7.30 at 2021-10-10 11:06 NMAP scan report for 192.168.123.100 Host is up (1.00s latency). Not shown: 993 closed ports PORT STATE SERVICE 80/tcp open http 161/tcp open snmp 515/tcp open Ipd MAC Address: 00:1B:A9:01:3a:21
Based on this scan result, which of the following is most likely correct?
Premium Solution Locked
Unlock all 804 answers & explanations
An attacker extracts the initial bytes from an encrypted file container and uses a tool to iterate through numeric combinations. What type of cryptanalytic technique is being utilized?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester discovers that a web application uses unsanitized user input to dynamically generate file paths. The tester identifies that the application is vulnerable to Remote File Inclusion (RFI). Which action should the tester take to exploit this vulnerability?
Premium Solution Locked
Unlock all 804 answers & explanations
A web app deserializes untrusted data leading to RCE.
What flaw exists?
Premium Solution Locked
Unlock all 804 answers & explanations
A security researcher is analyzing a target organization's publicly accessible cloud infrastructure. While reviewing the website's HTML source code, the researcher discovers direct references to files hosted on Amazon S3. What is the most effective way to identify additional publicly accessible bucket URLs used by the target?
Premium Solution Locked
Unlock all 804 answers & explanations
During a targeted phishing campaign, an attacker gains access to a trusted internal system within a corporate network protected by advanced firewalls, IDS, and email security gateways. To maintain persistence and evade content inspection, the attacker crafts a malicious HTML email attachment containing obfuscated JavaScript code. When the user opens the attachment in a browser, a hidden JavaScript blob dynamically reconstructs a malware payload and triggers an automatic file download on the client side. No external connections are initiated during this process, making it difficult for network security tools to detect or block the attack. Which evasion technique is being employed to bypass the firewall and IDS protections?
Premium Solution Locked
Unlock all 804 answers & explanations
An attacker abuses PowerShell heavily.
Which log helps most?
Premium Solution Locked
Unlock all 804 answers & explanations
A security analyst investigates unusual east-west traffic on a corporate network. A previously MAC address is found actively communicating from a port connected to a trusted desktop. On closer inspection, a small computing device (Raspberry Pi) was physically inserted between the switch and the legitimate machine. This setup allows the rogue device to piggyback onto the network using the identity and privileges of the authenticated workstation without triggering any authentication processes or alarms. Which evasion technique is being used to blend unauthorized traffic with legitimate access?
Premium Solution Locked
Unlock all 804 answers & explanations
During a red team engagement simulating a targeted attack on a smart office environment, an ethical hacker identifies a thermostat used for regulating temperature across multiple floors. While analyzing its firmware management process, the tester discovers that the device accepts older versions without verifying their integrity or authenticity. The attacker successfully loads a previously deprecated firmware that contains known vulnerabilities and gains unauthorized access to the broader network by exploiting reintroduced flaws. No mechanisms are in place to prevent version rollback or verify firmware trustworthiness. Which loT security issue is most accurately demonstrated in this scenario?
Premium Solution Locked
Unlock all 804 answers & explanations
What does TTL manipulation help evade?
Premium Solution Locked
Unlock all 804 answers & explanations
A university's online registration system is experiencing disruptions due to a DDoS attack that combines DNS reflection and HTTP slow Loris techniques. Standard firewalls and load balancers are unable to mitigate the attack without impacting legitimate users. To ensure uninterrupted registration services, which advanced mitigation strategy should the university implement?
Premium Solution Locked
Unlock all 804 answers & explanations
An ethical hacker needs to gather detailed information about a company's internal network without initiating any direct interaction that could be logged or raise suspicion. Which approach should be used to obtain this information covertly?
Premium Solution Locked
Unlock all 804 answers & explanations
What does an ACK scan mainly identify?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester identifies that a web application's login form is not using secure password hashing mechanisms, allowing attackers to steal passwords if the database is compromised. What is the best approach to exploit this vulnerability?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is tasked with uncovering historical content from a company's website, including previously exposed login portals or sensitive internal pages. Direct interaction with the live site is prohibited due to strict monitoring policies. To stay undetected, the tester decides to explore previously indexed snapshots of the organization's web content saved by external sources. Which approach would most effectively support this passive information-gathering objective?
Premium Solution Locked
Unlock all 804 answers & explanations
What does AXFR allow?
Premium Solution Locked
Unlock all 804 answers & explanations
During a high-stakes engagement on a secure corporate network, a penetration tester discovers an opportunity to attack the domain controller. By abusing an API call from Microsoft's Encrypting File System Remote Protocol (MS-EFSRPC), the tester forces the domain controller to initiate NTLM authentication to a server controlled by the tester. The tester then captures the resulting NTLM hash and relays it to the Active Directory Certificate Services (AD CS), ultimately obtaining a certificate that confers administrative privileges over the network. This sophisticated method allows the tester to compromise the network without requiring direct access to the domain controller. Which network-level hijacking technique is illustrated in this scenario?
Premium Solution Locked
Unlock all 804 answers & explanations
During a comprehensive security audit of a financial institution's online infrastructure, a penetration tester observes abnormal traffic redirection patterns affecting the institution's primary domain. Customers who attempt to access the legitimate website are seamlessly redirected to a visually identical phishing page, hosted on a suspicious IP address. After tracing the DNS resolution path, the tester discovers that the authoritative DNS server has been compromised, and its records have been altered to point to the attacker's server. The redirection affects all DNS queries for the domain, indicating unauthorized control over name resolution infrastructure, rather than local cache poisoning or client-side manipulation. The tester confirms that this redirection was achieved by tampering with the DNS zone records themselves. Which technique is being used in this scenario?
Premium Solution Locked
Unlock all 804 answers & explanations
Which tool dumps Windows hashes?
Premium Solution Locked
Unlock all 804 answers & explanations
During a physical penetration test simulating a social engineering attack, a threat actor walks into the lobby of a target organization dressed as a field technician from a known external vendor. Carrying a fake ID badge and referencing a known company name, the attacker confidently claims they've been dispatched to perform a routine server room upgrade. Using internal-sounding terminology and referencing real employee names gathered via OSINT, the individual conveys urgency. The receptionist, recognizing the vendor name and the convincing language, allows access without verifying the credentials.
Premium Solution Locked
Unlock all 804 answers & explanations
A company's online service is under a multi-vector DoS attack using both SYN floods and HTTP GET floods from a botnet. Standard firewalls and IDS are unable to prevent the outages. To mitigate the attack without disrupting legitimate traffic, which advanced defense should the company implement?
Premium Solution Locked
Unlock all 804 answers & explanations
Which Nmap scan is stealthiest?
Premium Solution Locked
Unlock all 804 answers & explanations
While conducting a covert penetration test on a UNIX-based infrastructure, the tester decides to bypass Intrusion detection systems by sending specially crafted TCP packets with an unusual set of flags enabled. These packets do not initiate or complete any TCP handshake. During the scan, the tester notices that when certain ports are probed, there is no response from the target, but for others, a TCP RST (reset) packet is received. The tester notes that this behavior consistently aligns with open and closed ports, respectively, without triggering detection systems configured to monitor connection-based scans. Based on these observations, which scanning technique is most likely being used?
Premium Solution Locked
Unlock all 804 answers & explanations
A cyber adversary is performing external reconnaissance on a large enterprise network with multiple perimeter defenses in place, including packet-filtering firewalls and intrusion detection systems (IDS). The goal is to enumerate the firewall’s rule set to identify which TCP and UDP ports are permitted for inbound traffic to internal systems. To minimize noise and avoid immediate detection, the attacker wants to use a method that mimics normal traffic flows while providing insight into how the firewall handles packets based on port and protocol combinations. Which reconnaissance technique should the attacker choose to effectively map the firewall's filtering behavior without raising alerts?
Premium Solution Locked
Unlock all 804 answers & explanations
Which attack abuses business logic?
Premium Solution Locked
Unlock all 804 answers & explanations
You're a security analyst conducting a foot printing exercise for a new client to uncover as much
information as possible without direct interaction. Your preliminary investigation using search engines and
public databases has provided a significant amount of data about the organization's online presence. You are now considering using Google Hacking techniques to find further vulnerabilities. Which of the following could best justify this decision?
Premium Solution Locked
Unlock all 804 answers & explanations
A penetration tester is assessing the security of a corporate wireless network that uses WPA2-Enterprise encryption with RADIUS authentication. The tester wants to perform a man-in-the-middle attack by tricking wireless clients into connecting to a rogue access point. What is the most effective method to achieve this?
Premium Solution Locked
Unlock all 804 answers & explanations
What does ATT&CK tactic “Persistence” mean?
Premium Solution Locked
Unlock all 804 answers & explanations
While performing a vulnerability assessment for XYZ Corporation, you discover that several key systems are regularly interacting with unidentified external entities. These interactions often involve data transfers, both incoming and outgoing. While some of these might be legitimate, the nature and volume of this unmonitored traffic raise concerns about potential data exfiltration or malware introduction. Given the ambiguous nature of these interactions and the high stakes involved, which strategy would most directly identify and mitigate the vulnerabilities associated with these unsanctioned exchanges?
Premium Solution Locked
Unlock all 804 answers & explanations
During a red team exercise, a certified ethical hacker (CEH) is working on exploiting a potential vulnerability
in the target's web server. The CEH has completed the information gathering and footprinting stages and
mirrored the website for offline analysis. They have also discovered the server is prone to session hijacking.
Which next step is most likely to be part of a successful attack methodology, keeping in mind the requirement to minimize the possibility of detection?
Premium Solution Locked
Unlock all 804 answers & explanations
Which defense MOST disrupts ransomware spread?
Premium Solution Locked
Unlock all 804 answers & explanations
A senior executive receives a personalized email with a subject line that reads "Annual Performance Review 2024." The email contains a downloadable PDF that installs a backdoor when opened. The email appears to come from the CEO and includes company branding. Which phishing method does this best illustrate?
Premium Solution Locked
Unlock all 804 answers & explanations
A cybersecurity team at a multinational company notices unusual network traffic on their Bluetooth devices. It is suspected to be a Bluesnarfing attack, aimed at accessing unauthorized information from Bluetooth-enabled devices.
Which of the following would be the most effective countermeasure to prevent further unauthorized access?
Premium Solution Locked
Unlock all 804 answers & explanations
Attackers exploit SMBv1 to spread malware across hosts.
What attack behavior is this?
Premium Solution Locked
Unlock all 804 answers & explanations
A company's customer data stored in a cloud environment has been exposed due to an vulnerability. Which of the following types of attacks most likely led to this incident?
Premium Solution Locked
Unlock all 804 answers & explanations
An attacker performs DNS cache snooping using the dig command with the +norecurse flag against a
known DNS server. The server returns NOERROR but provides no answer to the query. What does this most likely suggest?
Premium Solution Locked
Unlock all 804 answers & explanations
A Linux system allows SSH login using deprecated ciphers.
What risk exists?
Premium Solution Locked
Unlock all 804 answers & explanations
A multinational company is planning to integrate an IoT-based environmental control system for its manufacturing units worldwide. They engage a cybersecurity team to ensure that the new system remains secure from any potential threats. The cybersecurity team is tasked with identifying the most likely method an advanced persistent threat (APT) group might use to compromise the new IoT-based environmental control system. What is the most plausible attack vector?
Premium Solution Locked
Unlock all 804 answers & explanations
A cybersecurity company wants to prevent attackers from gaining information about its encrypted traffic
patterns. Which of the following encryption algorithms should they utilize?
Premium Solution Locked
Unlock all 804 answers & explanations
A system’s audit logs are not centralized.
Which attack phase is hardest to detect?
Premium Solution Locked
Unlock all 804 answers & explanations
After a recent breach, your team discovers that attackers used modified versions of legitimate system utilities and a Windows service to persist undetected for weeks, accessing internal credentials.
What key step can be taken to better protect against similar future threats?
Premium Solution Locked
Unlock all 804 answers & explanations
During a penetration test on a legacy Windows network, you use the nbtstat -A <IP> command on a target
system and retrieve several NetBIOS names, including entries ending with <20> and <03>. However, attempts to list shared folders fail. Which of the following best explains this behavior?
Premium Solution Locked
Unlock all 804 answers & explanations
What is the purpose of banner grabbing?
Premium Solution Locked
Unlock all 804 answers & explanations
A major financial institution is experiencing persistent Denial-of-Service (DoS) attacks targeting its online banking services, causing significant disruption to customer transactions and eroding trust in the institution. The security team is under immense pressure to identify and mitigate the sophisticated tactics employed by the attackers to ensure uninterrupted access to banking services. Considering the scenario described, which sophisticated Denial-of-Service (DoS) technique, resembling a scenario-based attack, poses the greatest challenge for the security team to detect and mitigate effectively, potentially jeopardizing the availability of online banking services?
Premium Solution Locked
Unlock all 804 answers & explanations
Full Question Bank Locked
You have reached the end of the free study guide preview. Upgrade now to unlock all 804 questions and the full simulation engine.
Certification Path
Related Certifications
Customer Reviews
Global Community Feedback
David M.
"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."
Sarah J.
"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."
Michael C.
"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"