A security analyst is performing an audit on the network to determine if there are any deviations from the security policies in place. The analyst discovers that a user from the IT department had a dial-out modem installed. Which security policy must the security analyst check to see if dial-out modems are allowed?
Correct Answer: D
In CEH v13 Module 01: Information Security Controls, the Remote Access Policy is defined as the guideline that governs: Which remote access methods (VPNs, modems, RDP, etc.) are permitted. Requirements for authentication and encryption. Who is authorized to use them and under what conditions. In This Case: The use of a dial-out modem is considered a remote access method, especially if it bypasses the corporate firewall. The analyst needs to check whether such remote access is permitted, and under what security controls. Reference: Module 01 - Policies and Governance: Remote Access Policy CEH eBook: Policy Enforcement and Exception Auditing
312-50v13 Exam Question 147
Dayn, an attacker, wanted to detect if any honeypots are installed in a target network. For this purpose, he used a time-based TCP fingerprinting method to validate the response to a normal computer and the response of a honeypot to a manual SYN request. Which of the following techniques is employed by Dayn to detect honeypots?
Correct Answer: B
In CEH v13 Module 07: Evading IDS, Firewalls, and Honeypots, various honeypot detection techniques are discussed. One such method is time-based TCP fingerprinting, which is effective against Honeyd-based honeypots. Honeyd Honeypots: Lightweight, low-interaction honeypots. Often respond with inconsistent or delayed TCP timestamps. Can be fingerprinted by comparing round-trip time and TTL values to real systems. Option Clarification: A: VMware detection: Uses CPU/BIOS identifiers and MAC address patterns. B: Honeyd detection: Correct - uses time-based TCP fingerprinting. C: Snort_inline: A network-based IPS, not the context here. D: Sebek: Used to monitor user-level activity, not related to TCP response timing. Reference: Module 07 - Honeypot Detection Techniques CEH Labs: Timing Analysis for Detecting Honeyd Honeypots
312-50v13 Exam Question 148
Which of the following tools are used for enumeration? (Choose three.)
Correct Answer: B,D,E
Enumeration is the process of extracting usernames, shares, services, and other system-specific information from a target system. Tools used for enumeration include: B). USER2SID: Resolves a username to its associated Security Identifier (SID). D). SID2USER: Resolves an SID back to the corresponding username. E). DumpSec: A powerful GUI tool used to enumerate users, shares, and permissions on Windows systems. From CEH v13 Courseware: Module 4: Enumeration Section: NetBIOS and Windows Enumeration Tools CEH v13 Study Guide states: "USER2SID and SID2USER are classic tools used to map usernames to SIDs and vice versa during Windows enumeration. DumpSec can enumerate user accounts, group memberships, and shared resources on systems with open permissions." Incorrect Options: A). SolarWinds: Primarily a network performance monitoring tool, not designed for enumeration. C). Cheops: A network mapping tool, not an enumeration utility. Reference:CEH v13 Study Guide - Module 4: Enumeration # Windows Enumeration ToolsMicrosoft Windows Security SID Documentation
312-50v13 Exam Question 149
Attacker Lauren has gained the credentials of an organization's internal server system, and she was often logging in during irregular times to monitor the network activities. The organization was skeptical about the login times and appointed security professional Robert to determine the issue. Robert analyzed the compromised device to find incident details such as the type of attack, its severity, target, impact, method of propagation, and vulnerabilities exploited. What is the incident handling and response (IH&R) phase, in which Robert has determined these issues?
Correct Answer: D
Incident Handling and Response Incident handling and response (IH&R) is the process of taking organized and careful steps when reacting to a security incident or cyberattack. Steps involved in the IH&R process: 3. Incident Triage - The IH&R team further analyzes the compromised device to find incident details such as the type of attack, its severity, target, impact, and method of propagation, and any vulnerabilities it exploited. (P. 84/68)
312-50v13 Exam Question 150
While testing a web application in development, you notice that the web server does not properly ignore the "dot dot slash" (../) character string and instead returns the file listing of a folder structure of the server. What kind of attack is possible in this scenario?
Correct Answer: D
Appropriately controlling admittance to web content is significant for running a safe web worker. Index crossing or Path Traversal is a HTTP assault which permits aggressors to get to limited catalogs and execute orders outside of the web worker's root registry. Web workers give two primary degrees of security instruments Access Control Lists (ACLs) Root index An Access Control List is utilized in the approval cycle. It is a rundown which the web worker's manager uses to show which clients or gatherings can get to, change or execute specific records on the worker, just as other access rights. The root registry is a particular index on the worker record framework in which the clients are kept. Clients can't get to anything over this root. For instance: the default root registry of IIS on Windows is C:\Inetpub\wwwroot and with this arrangement, a client doesn't approach C:\Windows yet approaches C:\Inetpub\wwwroot\news and some other indexes and documents under the root catalog (given that the client is confirmed by means of the ACLs). The root index keeps clients from getting to any documents on the worker, for example, C:\WINDOWS /system32/win.ini on Windows stages and the/and so on/passwd record on Linux/UNIX stages. This weakness can exist either in the web worker programming itself or in the web application code. To play out a registry crossing assault, all an assailant requires is an internet browser and some information on where to aimlessly discover any default documents and registries on the framework. What an assailant can do if your site is defenseless With a framework defenseless against index crossing, an aggressor can utilize this weakness to venture out of the root catalog and access different pieces of the record framework. This may enable the assailant to see confined documents, which could give the aggressor more data needed to additional trade off the framework. Contingent upon how the site access is set up, the aggressor will execute orders by mimicking himself as the client which is related with "the site". Along these lines everything relies upon what the site client has been offered admittance to in the framework. Illustration of a Directory Traversal assault by means of web application code In web applications with dynamic pages, input is generally gotten from programs through GET or POST solicitation techniques. Here is an illustration of a HTTP GET demand URL GET http://test.webarticles.com/show.asp?view=oldarchive.html HTTP/1.1 Host: test.webarticles.com With this URL, the browser requests the dynamic page show.asp from the server and with it also sends the parameter view with the value of oldarchive.html. When this request is executed on the web server, show. asp retrieves the file oldarchive.html from the server's file system, renders it and then sends it back to the browser which displays it to the user. The attacker would assume that show.asp can retrieve files from the file system and sends the following custom URL. GET http://test.webarticles.com/show.asp?view=../../../../../Windows/system.ini HTTP/1.1 Host: test.webarticles.com This will cause the dynamic page to retrieve the file system.ini from the file system and display it to the user. The expression ../ instructs the system to go one directory up which is commonly used as an operating system directive. The attacker has to guess how many directories he has to go up to find the Windows folder on the system, but this is easily done by trial and error. Example of a Directory Traversal attack via web server Apart from vulnerabilities in the code, even the web server itself can be open to directory traversal attacks. The problem can either be incorporated into the web server software or inside some sample script files left available on the server. The vulnerability has been fixed in the latest versions of web server software, but there are web servers online which are still using older versions of IIS and Apache which might be open to directory traversal attacks. Even though you might be using a web server software version that has fixed this vulnerability, you might still have some sensitive default script directories exposed which are well known to hackers. For example, a URL request which makes use of the scripts directory of IIS to traverse directories and execute a command can be GET http://server.com/scripts/..%5c../Windows/System32/cmd.exe?/c+dir+c:\ HTTP/1.1 Host: server.com The request would return to the user a list of all files in the C:\ directory by executing the cmd.exe command shell file and run the command dir c:\ in the shell. The %5c expression that is in the URL request is a web server escape code which is used to represent normal characters. In this case %5c represents the character \. Newer versions of modern web server software check for these escape codes and do not let them through. Some older versions however, do not filter out these codes in the root directory enforcer and will let the attackers execute such commands.