Threats, Vulnerabilities, and Mitigations

490 soru

Soru 281Soru

During a security audit of a web application, an analyst identifies software flaws caused by processing untrusted user data without proper sanitization or encoding. Which of the following application vulnerabilities result directly from improper input validation? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: SQL Injection (SQLi), where dynamic database statements execute arbitrary commands provided by untrusted input.; Cross-Site Scripting (XSS), where unencoded user input is rendered by the client web browser as executable script.

Cevap

SQL Injection (SQLi) and Cross-Site Scripting (XSS) are both application vulnerabilities resulting directly from improper handling and validation of untrusted user input.
Both SQL Injection and Cross-Site Scripting directly stem from failure to validate, parameterize, or encode untrusted input before passing it to interpreters (such as a database engine or a browser rendering engine).

Adım Adım Çözüm

1
Analyze the stem requirement
Identify vulnerabilities caused by improper handling or validation of untrusted input.
Input validation flaws occur when user-supplied input is processed by an interpreter without sanitization, parameterization, or encoding.
2
Evaluate each option
SQL Injection manipulates backend database interpreters due to unvalidated input, while Cross-Site Scripting manipulates frontend browser script interpreters due to unencoded output.
Both SQLi and XSS represent input validation and output encoding software vulnerabilities.

Anahtar Kavram

Application Input Validation Flaws
Tahmini Süre:1m 0s
Soru 282Soru

Following a security incident where an attacker leveraged compromised developer credentials to establish unauthorized persistence on Linux bastion hosts, an organization is revising its host hardening standards. The forensic investigation revealed two key persistence mechanisms: authorized keys file tampering to insert persistent public keys and rogue systemd service installation to launch unauthorized background processes. Which TWO of the following mitigation controls should the security team implement to directly prevent and detect these technical persistence techniques?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Disable interactive SSH password authentication and enforce central SSH certificate lookup via AuthorizedKeysCommand with strictly scoped principal limits.; Configure mandatory access controls (SELinux/AppArmor) in enforcing mode and deploy File Integrity Monitoring (FIM) targeting system daemon configuration directories.

Cevap

The correct mitigations are configuring central SSH certificate lookups to invalidate static key backdoors and implementing mandatory access control (SELinux/AppArmor) alongside File Integrity Monitoring (FIM) for system daemon directories.
Centralizing SSH access through short-lived certificates and restricting local key files directly mitigates static key persistence. Furthermore, deploying File Integrity Monitoring alongside mandatory access control frameworks ensures prompt detection of unauthorized systemd unit files and prevents unapproved process execution.

Adım Adım Çözüm

1
Analyze the first attack vector (authorized_keys file tampering for SSH persistence).
Disabling static SSH keys and mandating short-lived certificates via AuthorizedKeysCommand prevents unauthorized public key injection.
Static key files allow persistent backdoor access if modified, whereas certificate-based authentication requires dynamic authorization from a central Certificate Authority.
2
Analyze the second attack vector (rogue systemd service creation for background process execution).
File Integrity Monitoring (FIM) detects unauthorized service file additions in system directories, while Mandatory Access Control (MAC) restricts execution privileges.
Systemd unit directories dictate system startup services; monitoring these locations ensures prompt detection of persistence mechanisms, while MAC blocks unauthorized process execution.
3
Evaluate and eliminate perimeter and deception controls.
Honeypots and perimeter VPNs fail to protect host integrity once authenticated access is obtained.
Honeypots gather intelligence rather than enforcing host access boundaries, and perimeter VPNs do not inspect internal encrypted SSH sessions or local file writes.

Anahtar Kavram

Host Hardening and Integrity Monitoring Controls
Soru 283Soru

An enterprise security analyst investigates an incident report where multiple corporate mobile devices in a satellite office automatically established wireless associations with an untrusted rogue access point without user intervention. Packet capture analysis shows that the rogue access point listened for directed 802.11 Probe Request frames sent by client devices searching for their Preferred Network Lists (PNL) and dynamically broadcast matching SSIDs using open authentication. Which of the following attack classifications and technical controls accurately apply to this scenario? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The observed wireless packet behavior represents a Karma attack exploiting automatic client probe responses.; Enforcing 802.1X EAP-TLS authentication with client-side server certificate verification prevents client auto-connection to open rogue networks.

Cevap

The attack pattern is identified as a Karma attack, and the effective mitigation requires implementing 802.1X EAP-TLS authentication with strict client-side server certificate validation.
The scenario describes a classic Karma attack, where an attacker configures an access point to listen for 802.11 Probe Request frames from mobile devices searching for saved networks in their Preferred Network List (PNL) and dynamically responds claiming to be that network. The most effective technical countermeasure is migrating corporate wireless configurations to 802.1X EAP-TLS, which enforces mutual authentication using public key infrastructure (PKI) certificates, ensuring devices refuse connections to untrusted access points.

Adım Adım Çözüm

1
Analyze the packet capture indicators and client association behavior.
Client devices sent 802.11 Probe Request frames searching for previously joined networks listed in their Preferred Network Lists (PNL). The rogue access point dynamically impersonated those requested SSIDs, which is the defining signature of a Karma attack.
Karma attacks exploit the legacy behavior of devices probing for unencrypted or open saved networks.
2
Evaluate technical controls to prevent rogue association.
Enterprise wireless networks utilizing 802.1X with EAP-TLS ensure mutual authentication via digital certificates. The client verifies the server certificate before passing credentials or completing association.
Without a valid trust anchor and server certificate, the client device rejects connection to the rogue access point even if the SSID matches.

Anahtar Kavram

Karma Attack Indicators and Enterprise Wireless Mutual Authentication
Soru 284Soru

A security audit reveals that several non-interactive service accounts on Linux production application servers have interactive login shells assigned in `/etc/passwd`. Additionally, auditors found that world-writable temporary storage locations (`/tmp` and `/var/tmp`) are mounted on the main filesystem partition without restrictive execution flags, allowing local users to execute binaries placed in these directories. Which of the following technical mitigation steps provides the most effective hardening baseline to directly address both audit findings?

Cevabı ve açıklamayı göster

Cevap: Mount temporary partitions using the `noexec` mount option and change non-interactive service account shells to `/sbin/nologin`.

Cevap

Mount temporary partitions using the `noexec` mount option and change non-interactive service account shells to `/sbin/nologin`.
Mounting temporary partitions with the `noexec` flag disables the kernel execution bit for all files residing in those mount points, neutralising malware staging in shared folders like `/tmp`. Updating service account login shells to `/sbin/nologin` prevents adversaries from spawning interactive command shells if a service account context is compromised.

Adım Adım Çözüm

1
Analyze the first audit finding regarding execution of binaries from temporary locations.
Identify that mounting `/tmp` and `/var/tmp` on dedicated partitions with the `noexec` flag prevents the OS kernel from executing any binaries staged in those locations.
Attackers frequently stage and run privilege escalation scripts from world-writable temporary directories.
2
Analyze the second audit finding regarding non-interactive service accounts.
Identify that updating default shells in `/etc/passwd` to non-executable binaries such as `/sbin/nologin` or `/bin/false` prevents service accounts from obtaining interactive TTY sessions.
Daemon accounts (e.g., `www-data`, `nobody`) require system access to run processes but should never permit interactive shell access.
3
Select the host baseline control that addresses both findings directly.
Combining `noexec` partition flags with `/sbin/nologin` shell configuration mitigates both vulnerabilities at the OS level.
This baseline implementation enforces least privilege and attack surface reduction directly on the host.

Anahtar Kavram

Host Hardening Baselines and Attack Surface Reduction
Soru 285Soru

Security analysts at a biotechnology firm discover an ongoing, highly covert intrusion targeting proprietary genomic therapy blueprints. Forensic investigation reveals that the attackers utilized undisclosed zero-day exploits, maintained encrypted command-and-control persistence for over eighteen months, and focused strictly on data exfiltration without attempting ransomware deployment or financial extortion. Based on these operational attributes, which of the following threat actor types is most likely responsible for this attack?

Cevabı ve açıklamayı göster

Cevap: Nation-state / Advanced Persistent Threat (APT)

Cevap

Nation-state / Advanced Persistent Threat (APT)
The combination of custom zero-day exploit development, sustained covert persistence over eighteen months, and non-monetized intellectual property theft aligns directly with the capabilities, resources, and strategic espionage motivations of a Nation-state or Advanced Persistent Threat (APT) actor.

Adım Adım Çözüm

1
Analyze threat actor attributes from the scenario
Identified high technical sophistication (zero-day exploits), significant funding/resources (eighteen months persistence), and espionage intent (intellectual property theft without monetary extortion).
Threat actor categorization relies on mapping observed tactics, intent, funding, and capability levels.
2
Evaluate candidate threat actor profiles against identified attributes
Nation-state APT groups exhibit high capability, prolonged covert persistence, and strategic exfiltration motives.
Financially motivated or ideological threat actors typically display distinct operational behaviors such as extortion, defacement, or immediate monetization.

Anahtar Kavram

Threat Actor Attributes and Motivations
Soru 286Soru

To optimize threat data collection, an enterprise security operations team must classify different threat intelligence feed types. Pair each threat intelligence category on the left with its defining operational characteristic on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Open-Source Intelligence (OSINT)
Sector-Specific ISAC
Commercial Threat Intelligence
Dark Web Intelligence

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Open-Source Intelligence (OSINT) matches publicly available security information. Sector-Specific ISAC matches non-profit peer network for exchanging industry-specific cyber threat alerts. Commercial Threat Intelligence matches subscription-based compiled feed offering high-confidence indicators. Dark Web Intelligence matches data gathered from anonymized underground marketplaces.
Each threat intelligence source corresponds directly to its defined collection domain: OSINT uses public resources, ISACs facilitate industry peer sharing, commercial feeds offer subscription-based IoCs, and dark web intelligence targets restricted underground channels.

Adım Adım Çözüm

1
Identify the collection accessibility of each threat intelligence source.
OSINT is publicly accessible; Commercial feeds require a paid subscription; Dark Web intelligence requires monitoring restricted hidden networks.
Accessibility and origin define the baseline intelligence source type.
2
Evaluate organizational and sharing structures.
ISACs represent member-driven, sector-specific peer sharing communities.
Understanding non-profit peer sharing distinguishes ISACs from commercial vendors and open sources.
3
Pair each threat intelligence term with its matching description based on collection method and access model.
All terms are correctly mapped to their defining descriptions.
Ensures complete alignment across all intelligence categories.

Anahtar Kavram

Classification and operational traits of threat intelligence sources
Soru 287Soru

Match each observed wireless or network anomaly on the left with its corresponding attack classification on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Unsolicited contact cards or text messages appearing on a mobile device via short-range wireless connections without requesting data theft.
Frequent transmission of spoofed 802.11 control frames causing immediate dropped wireless connections for connected endpoints.
A massive spike in noise floor levels across 2.4 GHz channels leading to severe degradation of signal-to-noise ratio and complete connection loss.
Switch security alerts indicating that an identical media access control address is registered on two different physical switch ports.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Unsolicited short-range messages correspond to Bluejacking; spoofed 802.11 control frames disconnecting clients correspond to a Disassociation Attack; high noise floor across frequency channels corresponds to Radio Frequency Jamming; and identical physical addresses appearing on multiple switch ports corresponds to MAC Spoofing.
Each indicator uniquely points to a distinct network or wireless attack vector based on standard security monitoring signatures: short-range spam maps to Bluejacking, 802.11 frame forgery maps to Disassociation, RF noise flooding maps to Jamming, and duplicate physical layer addressing maps to MAC Spoofing.

Adım Adım Çözüm

1
Analyze the indicator involving unsolicited Bluetooth messages.
Identify that pushing unsolicited messages over Bluetooth without unauthorized data retrieval defines Bluejacking.
Bluejacking focuses on message sending, whereas Bluesnarfing involves unauthorized data extraction.
2
Examine the indicator regarding spoofed 802.11 management frames.
Match 802.11 frame manipulation targeted at client disconnection to a Disassociation Attack.
Attackers forge management frames to force clients off the wireless network.
3
Evaluate the RF noise floor anomaly.
Correlate channel-wide noise spikes and degraded signal-to-noise ratio with Radio Frequency Jamming.
Jamming impacts physical layer radio frequencies by overpowering legitimate wireless signals.
4
Inspect the duplicate physical address log alert.
Associate identical hardware addresses on distinct switch ports with MAC Spoofing.
Impersonating another endpoint's network interface card address causes switch table conflicts.

Anahtar Kavram

Network and Wireless Attack Indicators
Soru 288Soru

A security operations team is refining its threat intelligence research workflow during an active incident investigation involving suspicious PowerShell scripts executed on an endpoint. An analyst needs to correlate newly identified command-and-control (C2) domains against publicly accessible registration data, historic passive DNS records, and peer-reviewed technical blogs without transmitting internal organization telemetry to external partners or incurring subscription fees. Which of the following threat intelligence source categories best satisfies these operational constraints?

Cevabı ve açıklamayı göster

Cevap: Open-Source Intelligence (OSINT)

Cevap

Open-Source Intelligence (OSINT) is the correct choice because it relies entirely on publicly available resources such as WHOIS databases, open passive DNS repositories, and public research write-ups without requiring subscription costs or sharing sensitive internal telemetry.
Open-Source Intelligence (OSINT) refers to intelligence derived from publicly accessible information, including WHOIS registries, open passive DNS databases, threat research publications, and code repositories. It allows analysts to research infrastructure indicators freely and passively without transmitting private incident data to third parties.

Adım Adım Çözüm

1
Analyze the operational constraints given in the scenario.
Identified key requirements: zero financial cost (no subscriptions), no outbound sharing of sensitive organization telemetry, and reliance on publicly accessible domain/DNS records.
Threat intelligence source selection must strictly conform to organizational privacy, data-sharing, and budget policies.
2
Evaluate candidate intelligence source categories against the constraints.
OSINT sources (WHOIS, open passive DNS records, public blogs) meet all criteria because they are public, free, and require no inbound/outbound telemetry submission.
OSINT permits passive research using publicly exposed information assets without alerting threat actors or incurring vendor fees.
3
Eliminate incorrect options based on scenario mismatches.
ISAC feeds require industry membership and threat-sharing agreements; commercial feeds require subscription licensing; NVD tracks software vulnerabilities rather than infrastructure/domain IOCs.
Each eliminated source fails either the cost constraint, telemetry-sharing constraint, or data domain relevance requirement.

Anahtar Kavram

Threat Intelligence Sources (OSINT vs. Closed/Proprietary vs. ISAC vs. Vulnerability Databases)
Soru 289Soru

An enterprise help desk analyst receives an incoming phone call from an individual impersonating a senior IT infrastructure manager. The caller claims that a critical core router has failed, causing an ongoing outage that threatens an upcoming executive board demonstration. The caller insists that standard identity verification protocols must be bypassed immediately to reset an administrative service account credential before board members notice the disruption. Fearing administrative escalation, the help desk analyst performs the credential reset. Which social engineering technique and primary influence tactics were directly leveraged by the attacker?

Cevabı ve açıklamayı göster

Cevap: Vishing and pretexting, leveraging authority and urgency

Cevap

Vishing and pretexting, leveraging authority and urgency
The scenario describes a voice-based attack (vishing) in which the adversary invents a believable identity and backstory (pretexting). The attacker exploits the help desk analyst's deference to management hierarchy (authority) and panic over a time-sensitive outage threatening an executive demonstration (urgency) to bypass security procedures.

Adım Adım Çözüm

1
Analyze the communication medium used in the scenario.
The attack occurred over a phone call, establishing voice phishing (vishing) as the delivery vector.
Identifying the medium isolates voice-based vectors from email (phishing), text (smishing), or web-based techniques.
2
Evaluate the narrative and identity presented by the adversary.
The attacker created a fabricated scenario and persona (senior IT manager troubleshooting a core outage), which defines pretexting.
Pretexting involves establishing a believable backstory and context to justify compliance with an unauthorized request.
3
Identify the principles of influence applied to manipulate the victim.
The caller asserted executive status (authority) and claimed an immediate critical outage with executive visibility (urgency) to force a bypass of security controls.
Combining high organizational hierarchy with severe time-sensitivity bypasses critical thinking and standard operational procedures.

Anahtar Kavram

Social Engineering Delivery Vectors and Principles of Influence
Soru 290Soru

A security monitoring system triggers an alert after Microsoft Word spawns a hidden PowerShell process executing an encoded command. Forensic inspection of the host system indicates that no traditional executable files were written to disk; instead, malicious code resides and executes entirely within volatile memory to maintain an outbound command-and-control session. Which of the following malware types is described in this incident?

Cevabı ve açıklamayı göster

Cevap: Fileless malware

Cevap

Fileless malware relies on living-off-the-land techniques and memory-only execution through existing system tools like PowerShell.
Fileless malware operates directly within system memory (RAM) and often uses native system processes or scripts (such as PowerShell or WMI) to perform malicious activities without dropping an executable file onto the local file system. This technique bypasses traditional signature-based antivirus solutions that scan disk files.

Adım Adım Çözüm

1
Analyze host indicators
Observed Microsoft Word invoking a hidden PowerShell process with encoded arguments.
Identify the vector and process relationships on the endpoint.
2
Evaluate disk versus memory telemetry
No binary file artifact was created on the disk; payload runs entirely in volatile RAM.
Determine the artifact footprint to categorize execution behavior.
3
Map execution characteristics to malware taxonomy
Executing directly within system memory using native administrative scripts defines fileless malware.
Match telemetry indicators with standard threat definitions.

Anahtar Kavram

Fileless Malware Execution and Telemetry
Soru 291Soru

During a security review of a modern document processing web service, an analyst examines crash logs and source code after an unexpected service degradation. The backend endpoint accepts a JSON request containing a document rendering configuration. The service fetches remote custom template assets via HTTP based on a user-provided URL and parses binary header blocks into a fixed-size internal C-style buffer without checking the size of the incoming string. Log analysis reveals that an attacker submitted a payload pointing to http://169.254.169.254/latest/metadata/http://169.254.169.254/latest/meta-data/ alongside a 4,0964,096-byte header string into a 512512-byte memory buffer, causing an application crash and sensitive cloud infrastructure credential exposure. Which of the following mitigation controls should the security team implement to remediate these specific software vulnerabilities? (Select TWO)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Enforce strict outbound URL target validation using a strict domain allowlist and block requests destination targets resolving to internal or link-local IP addresses.; Refactor the memory handling logic to use length-bounded string operations and perform strict input size validation prior to buffer copying.

Cevap

To address the vulnerabilities identified in the scenario, the team must implement URL destination validation (blocking internal metadata IP ranges like 169.254.169.254169.254.169.254) to mitigate Server-Side Request Forgery (SSRF), and refactor memory operations to use bounds-checked functions that validate payload length against buffer size limits to prevent buffer overflows.
The scenario highlights two distinct software vulnerabilities: Server-Side Request Forgery (SSRF), evidenced by the attempt to retrieve internal cloud metadata (169.254.169.254169.254.169.254), and a buffer overflow, evidenced by writing a 4,0964,096-byte string into a 512512-byte buffer. Restricting outbound HTTP targets using domain allowlists and blocking internal IP ranges directly mitigates SSRF. Refactoring code to validate input length and enforce bounds checks on memory allocations eliminates buffer overflow vulnerabilities.

Adım Adım Çözüm

1
Analyze the incident details to identify the primary application vulnerabilities.
The request fetching http://169.254.169.254/latest/metadata/http://169.254.169.254/latest/meta-data/ indicates Server-Side Request Forgery (SSRF), while copying a 4,0964,096-byte header into a 512512-byte buffer indicates a buffer overflow.
Correctly categorizing the application flaws ensures appropriate mitigations are chosen.
2
Evaluate remediation controls for Server-Side Request Forgery (SSRF).
Restricting remote request destinations using allowlists and blocking access to internal or link-local IP addresses (such as cloud metadata endpoints) neutralizes SSRF risks.
SSRF occurs when the application accepts arbitrary external URLs and executes requests on behalf of the server to internal resources.
3
Evaluate remediation controls for the buffer overflow flaw.
Implementing bounds checking and using length-bounded memory operations prevents excessive input from overwriting adjacent memory spaces.
Buffer overflows stem from inadequate length checks on incoming binary or text data before writing to allocated memory.

Anahtar Kavram

Mitigating Application Vulnerabilities (SSRF and Buffer Overflow)
Soru 292Soru

A system administrator tests a diagnostic page on an internal network dashboard that allows users to test ping utility responses by submitting an IP address. The web application passes the input string directly to a server-side shell script without sanitization. When the administrator inputs `127.0.0.1; cat /etc/passwd`, the output displays the server's user account database. Which of the following application vulnerabilities is present?

Cevabı ve açıklamayı göster

Cevap: Command Injection

Cevap

Command Injection occurs when application code concatenates unsanitized user input directly into system shell command strings, enabling unauthorized command execution.
The correct answer identifies Command Injection because the application passes raw user input to a host shell interpreter without sanitization or parameterization. The semicolon metacharacter allows arbitrary secondary OS commands (`cat /etc/passwd`) to execute with the privileges of the web application service account.

Adım Adım Çözüm

1
Analyze the application behavior described in the scenario
The application appends user input (`127.0.0.1; cat /etc/passwd`) directly into a server-side command interpreter.
Understanding how the input is processed reveals whether the flaw is client-side, database-level, or system-level.
2
Identify the shell metacharacter and payload execution
The semicolon `;` acts as a command separator in unix-like shells, executing `cat /etc/passwd` immediately after the ping command.
Executing host operating system commands through untrusted web input characterizes command injection.
3
Match the observed attack vector with the correct vulnerability term
The flaw is identified as Command Injection (OS Command Injection).
Proper input validation, parameterized API calls, or avoiding shell execution calls entirely remediate this specific application flaw.

Anahtar Kavram

Command Injection (OS Command Injection)
Soru 293Soru

A systems administrator is applying baseline security configurations to newly provisioned enterprise servers. To minimize the host attack surface, the administrator closes unneeded network ports and stops background services such as Telnet and FTP that are not required for business operations. Which of the following enterprise hardening practices is the administrator performing?

Cevabı ve açıklamayı göster

Cevap: Disabling unnecessary services and protocols

Cevap

Disabling unnecessary services and protocols
Disabling unnecessary services and protocols is a foundational enterprise host-hardening technique. By turning off legacy or unneeded services like FTP and Telnet, administrators eliminate potential attack vectors and minimize the system's exposed attack surface.

Adım Adım Çözüm

1
Identify the primary threat mitigation objective in the scenario.
The goal is reducing the system attack surface on local server operating systems.
Every running service or open port creates potential vulnerability entry points.
2
Match the specific administrative action to standard host hardening controls.
Stopping unneeded daemons and closing unused ports corresponds directly to disabling unnecessary services and protocols.
Baseline host hardening guidelines mandate disabling non-essential features and legacy unencrypted protocols.

Anahtar Kavram

Disabling Unnecessary Services and Ports
Soru 294Soru

A security analyst reviews a vulnerability assessment report for legacy environmental monitoring sensors installed across a data center. The report reveals that the sensors transmit operational telemetry in cleartext using SNMPv1 with default community strings. The vendor confirms the embedded hardware cannot support firmware updates, protocol upgrade to SNMPv3, or host-level encryption. Which of the following architectural security controls represents the MOST effective mitigation to protect against internal eavesdropping and unauthorized control commands?

Cevabı ve açıklamayı göster

Cevap: Isolate the sensors on a dedicated out-of-band management VLAN and enforce access control lists through an inspecting security gateway.

Cevap

Isolate the sensors on a dedicated out-of-band management VLAN and enforce access control lists through an inspecting security gateway.
When legacy hardware cannot be patched or upgraded to support secure encrypted protocols like SNMPv3, deploying compensating network controls—such as placing devices on an isolated out-of-band management VLAN with strict access controls—is the most effective method to mitigate unauthorized access and cleartext data leakage.

Adım Adım Çözüm

1
Analyze the technical constraints presented in the scenario.
Identified that legacy sensor hardware cannot be patched, upgraded to SNMPv3, or host encrypted.
Host-level remediations are technically impossible due to device limitations.
2
Evaluate the risk vector associated with SNMPv1 cleartext transmission and default community strings.
Determined that internal network users or attackers who gain internal access can sniff telemetry or send unauthorized management commands.
Cleartext management traffic on shared networks is vulnerable to interception and unauthorized manipulation.
3
Select the appropriate compensating architectural control.
Network microsegmentation via an isolated out-of-band VLAN restricts traffic flow so that only authorized management systems can reach the unpatchable legacy endpoints.
Compensating network controls provide defense-in-depth when host systems cannot be remediated directly.

Anahtar Kavram

Compensating Network Controls and Microsegmentation for Legacy Architecture Vulnerabilities
Tahmini Süre:1m 30s
Soru 295Soru

A network security administrator monitoring enterprise switch logs notices that a single Media Access Control (MAC) address is rapidly alternating between two different physical switch ports. This constant port-flapping anomaly is causing frame misdirection across the local subnet. Which of the following attack types is most likely occurring?

Cevabı ve açıklamayı göster

Cevap: MAC spoofing

Cevap

The attack indicated by the rapid alternation of a single MAC address across multiple switch ports is MAC spoofing.
MAC spoofing occurs when an attacker modifies their network interface MAC address to mirror an authorized device. Transmitting traffic from two devices using identical MAC addresses forces the network switch to continuously rebind the MAC address to different ports, generating port-flapping indicators in syslog.

Adım Adım Çözüm

1
Analyze the observed log indicator.
Identified MAC address table flapping, where a single physical MAC address is learned on two separate switch ports in rapid succession.
Ethernet switches dynamically map learned source MAC addresses to specific ingress ports in their forwarding tables.
2
Match the indicator to the corresponding Layer 2 network attack.
Duplicate MAC addresses active on separate ports cause the switch to constantly overwrite port assignments for that address.
This behavior directly points to a MAC spoofing scenario where an attacker duplicates an authorized machine's MAC address.

Anahtar Kavram

MAC Spoofing Indicators
Tahmini Süre:45s
Soru 296Soru

A cybersecurity incident response team at a global logistics and supply chain enterprise is analyzing four distinct security events across their logistics automation infrastructure. Match each security event description on the left with the most likely threat actor profile on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

An unauthorized modification to automated warehouse software code committed outside business hours using valid credentials belonging to a recently demoted senior developer.
A sophisticated zero-day exploit targeting core BGP routing infrastructure, combined with custom multi-stage malware designed to observe long-term supply routing data without altering operations.
A widespread double-extortion ransomware attack targeting regional dispatch workstations, coupled with demands for cryptocurrency payment to prevent public release of stolen logistics data.
A distributed denial-of-service (DDoS) campaign targeting customer tracking portals accompanied by a public manifesto protesting corporate environmental policies.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Event 1 matches Insider Threat (Malicious User); Event 2 matches Nation-State / APT; Event 3 matches Organized Crime Syndicate; Event 4 matches Hacktivist Collective.
Each event corresponds to key threat actor attributes: malicious code alterations using demoted employee credentials reflect an insider threat; highly covert zero-day exploitation for espionage indicates a nation-state actor; double-extortion ransomware for monetary gain defines organized crime; and ideologically motivated disruption targeting tracking portals highlights hacktivism.

Adım Adım Çözüm

1
Analyze the motivation, capability, and attack methods described in each event scenario.
Event 1 shows internal credential misuse after demotion; Event 2 shows highly sophisticated covert espionage; Event 3 shows profit-driven ransomware extortion; Event 4 shows ideologically driven service disruption.
Threat actors are differentiated by their intent, resource level, sophistication, and primary operational goals.
2
Map scenario traits to official threat actor categorizations.
Personal grievance using internal access maps to Insider Threat; state-sponsored espionage maps to Nation-State; financially motivated extortive cybercrime maps to Organized Crime; political protest maps to Hacktivist.
Accurate threat actor identification allows organizations to tailor security controls, threat intelligence matching, and response playbooks.

Anahtar Kavram

Threat Actor Classification, Attributes, and Motivations
Soru 297Soru

A security analyst is reviewing an assessment report for a web application that identified a Cross-Site Request Forgery (CSRF) vulnerability in a user profile management module. Which of the following strategies directly mitigate this specific vulnerability? (Select TWO).

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Utilizing unique anti-CSRF synchronizer tokens validated on all state-changing requests; Configuring session cookies with the SameSite attribute set to Strict or Lax

Cevap

The strategies that directly mitigate Cross-Site Request Forgery (CSRF) are utilizing unique anti-CSRF synchronizer tokens validated on state-changing requests, and configuring session cookies with the SameSite attribute set to Strict or Lax.
Cross-Site Request Forgery (CSRF) leverages an existing authenticated browser session to execute unintended commands. Implementing unique anti-CSRF synchronizer tokens ensures that state-changing requests include a secret, unpredictable value that an attacker cannot forge. Setting the SameSite attribute (Strict or Lax) on session cookies provides additional defense-in-depth by preventing the browser from automatically sending authentication cookies with cross-site requests.

Adım Adım Çözüm

1
Identify the nature of Cross-Site Request Forgery (CSRF).
CSRF occurs when an attacker tricks an authenticated user's web browser into executing unauthorized, state-changing actions on a trusted web application.
Understanding the attack vector helps select controls that validate request origin and intentionality.
2
Evaluate mitigation controls designed to verify request origin.
Anti-CSRF synchronizer tokens provide a secret, unpredictable value bound to the session that third-party sites cannot read, and SameSite cookie policies instruct browsers to suppress session cookies during cross-site requests.
Both controls ensure cross-site malicious forms cannot successfully submit state-changing requests using the victim's ambient credentials.

Anahtar Kavram

Cross-Site Request Forgery (CSRF) Prevention
Soru 298Soru

During an application security audit of a cloud-native microservices platform, an analyst inspects API logs for a customer profile service. The service accepts HTTP POST updates in JSON format. The analyst discovers that an attacker sent a modified JSON request payload containing an unadvertised field: `"is_admin": true`. The backend REST framework automatically instantiated the incoming JSON parameters directly into the internal user account object, successfully elevating the standard user's privileges without triggering any schema errors. Which software vulnerability is demonstrated in this scenario, and what primary remediation should developers implement?

Cevabı ve açıklamayı göster

Cevap: Mass assignment vulnerability; remediated by implementing explicit Data Transfer Objects (DTOs) and allow-listing permitted binding properties.

Cevap

The correct answer identifies the flaw as a mass assignment vulnerability and specifies remediation using explicit Data Transfer Objects (DTOs) or parameter allow-listing.
Mass assignment (also known as over-posting or auto-binding) occurs when web application frameworks automatically bind client-provided HTTP request parameters directly to internal data model fields without input filtering. If sensitive attributes like user roles or account balances exist on the model, an attacker can append those fields to the request payload and overwrite them. The effective remediation is to enforce input separation through Data Transfer Objects (DTOs) or parameter allow-listing so only authorized fields are bound.

Adım Adım Çözüm

1
Analyze the attack payload and backend framework behavior in the scenario.
The client supplied an unexpected JSON parameter (`"is_admin": true`), which the backend framework automatically bound to internal object properties.
Automatic binding of request parameters directly to domain models without property filtering constitutes a mass assignment (or over-posting) vulnerability.
2
Evaluate the underlying root cause.
The application lacks a validation layer or object boundary separating raw HTTP inputs from internal domain objects.
Without strict parameter filtering, attackers can set sensitive internal fields that were never meant to be modified by client requests.
3
Select the appropriate software-level mitigation.
Implement Data Transfer Objects (DTOs) or field allow-lists in the application controller.
DTOs explicitly define which properties are permitted to be bound from incoming requests, preventing unauthorized object attribute modification.

Anahtar Kavram

Mass Assignment Vulnerability and Parameter Binding Protection
Soru 299Soru

A Cyber Threat Intelligence (CTI) analyst is designing an integrated threat research and ingestion framework for an enterprise Security Operations Center (SOC). Match each threat intelligence source or transport mechanism on the left with the operational workflow requirement it directly fulfills on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

TAXII (Trusted Automated eXchange of Intelligence Information) Transport Protocol
National Vulnerability Database (NVD) & CVE Dictionary
Sector-Specific ISAC (Information Sharing and Analysis Center)
Strategic Vendor Intelligence Whitepapers & Academic Research

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

TAXII Transport Protocol maps to automated machine-to-machine STIX relay into SIEM/firewalls. NVD & CVE Dictionary maps to cross-referencing standardized vulnerability IDs against internal inventory for patch prioritization. Sector-Specific ISAC maps to exchanging anonymized industry-specific telemetry among peer organizations. Strategic Vendor Whitepapers map to long-term analysis of adversary geopolitical motivations for executive leadership.
Each threat intelligence source or protocol mechanism targets a distinct operational layer within the enterprise security lifecycle: TAXII automates technical indicator ingestion over the network, NVD/CVE standardizes vulnerability severity tracking, ISACs facilitate trusted peer-to-peer industry collaboration, and Strategic Reports deliver high-level geopolitical and trend analysis to corporate executives.

Adım Adım Çözüm

1
Identify the automated transport mechanism for structured technical indicators.
TAXII provides the RESTful API / HTTPS transport protocol layer for machine-to-machine exchange of STIX threat intelligence feeds.
Technical IOC ingestion requires automated machine-readable transport protocols rather than human-oriented reports.
2
Identify the repository used for standardized software vulnerability scoring.
NVD and CVE store public vulnerability disclosures and CVSS scores used in patch management.
Vulnerability research relies on standardized identifier schemes to match enterprise inventory against published flaws.
3
Identify the collaborative framework for peer-to-peer industry information sharing.
ISACs provide sector-focused threat sharing communities for trust-based exchange among industry peers.
Organizations benefit from early warnings shared by peer entities operating in the same vertical market.
4
Identify the intelligence tier focused on long-term executive planning and threat actor motivation.
Strategic intelligence reports synthesize high-level adversary trends and risk impacts for leadership decision-makers.
Strategic CTI is tailored for high-level governance and policy decisions rather than tactical operational rule updates.

Anahtar Kavram

Threat Intelligence Sources, Formats, and Transport Protocols
Soru 300Soru

A security consultant is defining security testing methodologies for an organization's software development lifecycle (SDLC). Match each application security testing method to its corresponding operational characteristic.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Static Application Security Testing (SAST)
Dynamic Application Security Testing (DAST)
Interactive Application Security Testing (IAST)
Software Composition Analysis (SCA)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Static Application Security Testing (SAST) pairs with analyzing source code offline without executing the application. Dynamic Application Security Testing (DAST) pairs with evaluating a running application externally via black-box HTTP analysis. Interactive Application Security Testing (IAST) pairs with employing runtime instrumentation agents inside the application engine. Software Composition Analysis (SCA) pairs with inspecting open-source components and third-party libraries for known CVEs.
Each application security testing methodology targets a distinct phase or perspective within software security evaluation: SAST inspects static source code, DAST tests external running interfaces, IAST uses runtime instrumentation for internal execution visibility, and SCA identifies risks in third-party software dependencies.

Adım Adım Çözüm

1
Identify non-execution code analysis methods.
SAST analyzes source code or bytecode statically without application execution.
SAST is designed to catch implementation vulnerabilities early in the development pipeline before binaries are executed.
2
Differentiate external runtime testing from internal agent-based runtime testing.
DAST evaluates external endpoints without internal visibility, whereas IAST uses internal instrumentation agents.
DAST operates as a black-box tester, while IAST leverages internal execution hooks to provide high accuracy during functional testing.
3
Identify dependency and third-party library scanners.
SCA targets third-party libraries and open-source packages.
SCA ensures the software bill of materials (SBOM) does not contain known security risks or licensing violations.

Anahtar Kavram

Application Security Testing Methodologies (SAST, DAST, IAST, SCA)
Tahmini Süre:1m 30s
ÖncekiSayfa 15 / 25Sonraki
Threats, Vulnerabilities, and Mitigations Alıştırma Soruları — CompTIA Security+ — Sayfa 15 | Examkin