Skip to main content

312-50V13 Real Exam Questions

EC-Council Certified Ethical Hacker (C|EH v13)

1,376 questions available · Page 1 of 138

Updated Exam DumpsVerified AnswersPass Guarantee

Get Complete Exam Dumps
Question 1 Single choice

Which attack best demonstrates covert eavesdropping via smartphone sensors?

  1. A

    Malicious APK exploitation

  2. B

    Man-in-the-Disk attack

  3. C

    Spearphone attack

  4. D

    Tap `n Ghost attack

Show answer and explanation

Correct answer: C

Explanation

A Spearphone attack covertly derives speech information through smartphone sensor behavior, turning a device sensor into an eavesdropping channel. That mechanism directly matches covert listening through sensors. The other choices describe application exploitation, external-storage manipulation, or a different mobile attack rather than this sensor-based acoustic technique.

Question 2 Single choice

During a security assessment of a metropolitan public transportation terminal, a penetration tester examines a network-connected IoT surveillance camera system used for 24/7 video monitoring. The camera uses outdated SSLv2 encryption to transmit video data. The tester intercepts and decrypts video streams due to the weak encryption and absence of authentication mechanisms.

What IoT vulnerability is most likely being exploited in this scenario?

  1. A

    Insecure data transfer and storage

  2. B

    Jamming attack on RF communication

  3. C

    Credential theft via web application

  4. D

    Replay attack on wireless signals

Show answer and explanation

Correct answer: A

Explanation

The camera transmits sensitive video using obsolete encryption and lacks authentication, allowing the traffic to be intercepted and decrypted in transit. This is an insecure data transfer condition because confidentiality and authenticity are not adequately protected while the video moves across the network. It falls under insecure data transfer and storage rather than RF jamming.

Question 3 Single choice

Cross-site request forgery involves:

  1. A

    A request sent by a malicious user from a browser to a server

  2. B

    Modification of a request by a proxy between client and server

  3. C

    A browser making a request to a server without the user's knowledge

  4. D

    A server making a request to another server without the user's knowledge

Show answer and explanation

Correct answer: C

Explanation

Cross-site request forgery causes a victim's browser to send a request to a server without the user's knowledge or intent. The browser may automatically include an existing authenticated session, causing the server to treat the forged request as legitimate. The request originates from the browser, not from a proxy or another server.

Question 4 Single choice

Clark is gathering sensitive information about a competitor and uses a tool to input the target's server IP address to identify network range, OS, and topology.

What tool is he using?

  1. A

    AOL

  2. B

    ARIN

  3. C

    DuckDuckGo

  4. D

    Baidu

Show answer and explanation

Correct answer: B

Explanation

ARIN maintains registration information for Internet number resources. Starting with a server IP address, Clark can use ARIN to identify the registered organization and allocated network range, providing a foundation for mapping the target's address space. AOL, DuckDuckGo, and Baidu are not dedicated IP-allocation registries, so they do not provide the same authoritative range lookup.

Question 5 Single choice

You must map open ports and services while remaining stealthy and avoiding IDS detection.

Which scanning technique is best?

  1. A

    FIN Scan

  2. B

    TCP Connect Scan

  3. C

    ACK Scan

  4. D

    Stealth Scan (SYN Scan)

Show answer and explanation

Correct answer: D

Explanation

A stealth SYN scan sends the opening SYN and determines port state from the target's response without completing a full TCP connection. Avoiding the final handshake reduces connection logging and overhead compared with a TCP Connect scan while still mapping listening ports. This half-open behavior supports service discovery with a smaller observable footprint.

Question 6 Single choice

A penetration tester discovers that a web application is using outdated SSL/TLS protocols (TLS 1.0) to secure communication.

What is the most effective way to exploit this vulnerability?

  1. A

    Conduct a Cross-Site Scripting (XSS) attack on the application

  2. B

    Use a man-in-the-middle (MitM) attack to intercept and decrypt traffic

  3. C

    Perform a brute-force attack on the SSL/TLS handshake

  4. D

    Execute a SQL injection attack on the application's backend

Show answer and explanation

Correct answer: B

Explanation

The weakness is in the transport-security protocol, so exploitation requires access to the communication path rather than an application input field. A man-in-the-middle attack places the tester between client and server, enabling interception and attacks against the outdated TLS session to recover traffic. XSS and SQL injection target separate application-layer flaws.

Question 7 Single choice

what are common files on a web server that can be misconfigured and provide useful Information for a hacker such as verbose error messages?

  1. A

    httpd.conf

  2. B

    administration.config

  3. C

    idq.dll

  4. D

    php.ini

Show answer and explanation

Correct answer: D

Explanation
The php.ini file controls PHP runtime behavior on a web server, including settings related to error reporting and whether detailed errors are displayed. A misconfiguration can expose verbose diagnostic information to remote users, revealing paths, application details, or database-related messages. Reviewing and securing this configuration therefore addresses the type of information disclosure described.
Question 8 Single choice

A large media-streaming company receives complaints that its web application is timing out or failing to load. Security analysts observe the web server is overwhelmed with a large number of open HTTP connections , transmitting data extremely slowly. These connections remain open indefinitely, exhausting server resources without consuming excessive bandwidth. The team suspects an application-layer DoS attack .

Which attack is most likely responsible?

  1. A

    A UDP flooding attack targeting random ports.

  2. B

    An ICMP Echo Request flooding attack.

  3. C

    A Slowloris attack that keeps numerous HTTP connections open to exhaust server resources.

  4. D

    A fragmented packet attack with overlapping offset values.

Show answer and explanation

Correct answer: C

Explanation

Slowloris exhausts a web server's capacity by creating many HTTP connections and keeping them incomplete for long periods. Data is sent slowly enough to prevent the server from closing each connection, so connection-handling resources are consumed without requiring a high-bandwidth flood. That behavior matches the observed application-layer outage.

Question 9 Single choice

Why are containers less secure than virtual machines?

  1. A

    Host OS on containers has a larger surface attack.

  2. B

    Containers may fulfill disk space of the host.

  3. C

    A compromised container may cause a CPU starvation of the host.

  4. D

    Containers are attached to the same virtual network.

Show answer and explanation

Correct answer: A

Explanation

Containers isolate processes while sharing the host operating system kernel, whereas virtual machines generally place workloads behind separate guest operating systems and a hypervisor boundary. Because every container depends on the shared host OS, exposed kernel interfaces and container-runtime interactions enlarge the common attack surface. A host-level compromise can therefore affect multiple containers.

Question 10 Single choice

Which tier in the N-tier application architecture is responsible for moving and processing data between the tiers?

  1. A

    Presentation tier

  2. B

    Application Layer

  3. C

    Logic tier

  4. D

    Data tier

Show answer and explanation

Correct answer: C

Explanation

The logic tier contains the application's processing rules and coordinates the movement of information between the user-facing presentation tier and the data tier. It receives requests, applies the required operations, and passes results or data-access requests between layers. This intermediary processing role makes the logic tier responsible for the described work.