Certified Ethical Hacker – CEH – 312-50 – Question314

Which of the following is assured by the use of a hash?


A.
Integrity
B. Confidentiality
C. Authentication
D. Availability

Correct Answer: A

Explanation:

An important application of secure hashes is verification of message integrity. Determining whether any changes have been made to a message (or a file), for example, can be accomplished by comparing message digests calculated before, and after, transmission (or any other event).

References: https://en.wikipedia.org/wiki/Cryptographic_hash_function#Verifying_the_integrity_of_files_or_messages

Certified Ethical Hacker – CEH – 312-50 – Question313

Which mode of IPSec should you use to assure security and confidentiality of data within the same LAN?


A.
ESP transport mode
B. AH permiscuous
C. ESP confidential
D. AH Tunnel mode

Correct Answer: A

Explanation:

When transport mode is used, IPSec encrypts only the IP payload. Transport mode provides the protection of an IP payload through an AH or ESP header. Encapsulating Security Payload (ESP) provides confidentiality (in addition to authentication, integrity, and anti-replay protection) for the IP payload.

Incorrect Answers:

B: Authentication Header (AH) provides authentication, integrity, and anti-replay protection for the entire packet (both the IP header and the data payload carried in the packet). It does not provide confidentiality, which means that it does not encrypt the data.
References: https://technet.microsoft.com/en-us/library/cc739674(v=ws.10).aspx

Certified Ethical Hacker – CEH – 312-50 – Question312

Which of the following is a design pattern based on distinct pieces of software providing application functionality as services to other applications?


A.
Service Oriented Architecture
B. Object Oriented Architecture
C. Lean Coding
D. Agile Process

Correct Answer: A

Explanation:

A service-oriented architecture (SOA) is an architectural pattern in computer software design in which application components provide services to other components via a communications protocol, typically over a network.
References: https://en.wikipedia.org/wiki/Service-oriented_architecture

Certified Ethical Hacker – CEH – 312-50 – Question311

Which of the following is the structure designed to verify and authenticate the identity of individuals within the enterprise taking part in a data exchange?


A.
PKI
B. single sign on
C. biometrics
D. SOA

Correct Answer: A

Explanation:

A public key infrastructure (PKI) is a set of roles, policies, and procedures needed to create, manage, distribute, use, store, and revoke digital certificates[1] and manage public-key encryption. The purpose of a PKI is to facilitate the secure electronic transfer of information for a range of network activities such as e-commerce, internet banking and confidential email.

References: https://en.wikipedia.org/wiki/Public_key_infrastructure

Certified Ethical Hacker – CEH – 312-50 – Question310

Which of the following is an extremely common IDS evasion technique in the web world?


A.
unicode characters
B. spyware
C. port knocking
D. subnetting

Correct Answer: A

Explanation:

Unicode attacks can be effective against applications that understand it. Unicode is the international standard whose goal is to represent every character needed by every written human language as a single integer number. What is known as Unicode evasion should more correctly be referenced as UTF-8 evasion. Unicode characters are normally represented with two bytes, but this is impractical in real life.
One aspect of UTF-8 encoding causes problems: non-Unicode characters can be represented encoded. What is worse is multiple representations of each character can exist. Non-Unicode character encodings are known as overlong characters, and may be signs of attempted attack.

References: http://books.gigatux.nl/mirror/apachesecurity/0596007248/apachesc-chp-10-sect-8.html

Certified Ethical Hacker – CEH – 312-50 – Question309

The configuration allows a wired or wireless network interface controller to pass all traffic it receives to the central processing unit (CPU), rather than passing only the frames that the controller is intended to receive.
Which of the following is being described?


A.
promiscuous mode
B. port forwarding
C. multi-cast mode
D. WEM

Correct Answer: A

Explanation:

Promiscuous mode refers to the special mode of Ethernet hardware, in particular network interface cards (NICs), that allows a NIC to receive all traffic on the network, even if it is not addressed to this NIC. By default, a NIC ignores all traffic that is not addressed to it, which is done by comparing the destination address of the Ethernet packet with the hardware address (a.k.a. MAC) of the device. While this makes perfect sense for networking, non-promiscuous mode makes it difficult to use network monitoring and analysis software for diagnosing connectivity issues or traffic accounting.

References: https://www.tamos.com/htmlhelp/monitoring/

Certified Ethical Hacker – CEH – 312-50 – Question308

Which of the following is a command line packet analyzer similar to GUI-based Wireshark?


A.
tcpdump
B. nessus
C. etherea
D. Jack the ripper

Correct Answer: A

Explanation:

tcpdump is a common packet analyzer that runs under the command line. It allows the user to display TCP/IP and other packets being transmitted or received over a network to which the computer is attached.
References: https://en.wikipedia.org/wiki/Tcpdump

Certified Ethical Hacker – CEH – 312-50 – Question307

You are using NMAP to resolve domain names into IP addresses for a ping sweep later.

Which of the following commands looks for IP addresses?


A.
>host -t a hackeddomain.com
B. >host -t soa hackeddomain.com
C. >host -t ns hackeddomain.com
D. >host -t AXFR hackeddomain.com

Correct Answer: A

Explanation:

The A record is an Address record. It returns a 32-bit IPv4 address, most commonly used to map hostnames to an IP address of the host.
References: https://en.wikipedia.org/wiki/List_of_DNS_record_types

Certified Ethical Hacker – CEH – 312-50 – Question306

> NMAP -sn 192.168.11.200-215
The NMAP command above performs which of the following?


A.
A ping scan
B. A trace sweep
C. An operating system detect
D. A port scan

Correct Answer: A

Explanation:

NMAP -sn (No port scan)
This option tells Nmap not to do a port scan after host discovery, and only print out the available hosts that responded to the host discovery probes. This is often known as a ping scan, but you can also request that traceroute and NSE host scripts be run.

References: https://nmap.org/book/man-host-discovery.html

Certified Ethical Hacker – CEH – 312-50 – Question305

The purpose of a __________ is to deny network access to local area networks and other information assets by unauthorized wireless devices.


A.
Wireless Intrusion Prevention System
B. Wireless Access Point
C. Wireless Access Control List
D. Wireless Analyzer

Correct Answer: A

Explanation:

A wireless intrusion prevention system (WIPS) is a network device that monitors the radio spectrum for the presence of unauthorized access points (intrusion detection), and can automatically take countermeasures (intrusion prevention).
References: https://en.wikipedia.org/wiki/Wireless_intrusion_prevention_system