Tüm alıştırma soruları

2232 soru

Soru 541Soru

An application security specialist is investigating a recurring system crash in a legacy network daemon written in C. Log analysis reveals that an attacker sent a single network packet containing a 2,048-byte payload field into a fixed 512-byte destination memory buffer, causing a segmentation fault and corrupting the instruction pointer. Which of the following vulnerabilities was exploited, and what is the most effective code-level mitigation?

Cevabı ve açıklamayı göster

Cevap: Buffer overflow; enforce strict input boundary checking and use safe memory handling functions.

Cevap

Buffer overflow vulnerability remediated by enforcing strict input boundary checking and safe memory handling functions.
The crash log demonstrates a classic buffer overflow where data exceeding the allocated memory size overwrites adjacent memory spaces, including the instruction pointer. The proper solution is ensuring strict input length validation and safe memory handling within the application source code.

Adım Adım Çözüm

1
Analyze the crash details from the incident logs.
Identified that a 2,048-byte payload was written into a 512-byte buffer, corrupting memory and the instruction pointer.
Data exceeding allocated memory capacity without bounds checking demonstrates a classic buffer overflow.
2
Determine the appropriate remediation approach.
Selected source code modification enforcing input bounds checking over external infrastructure controls.
Software memory safety flaws must be corrected within the application code to eliminate the vulnerability.

Anahtar Kavram

Buffer Overflow Remediation and Input Validation
Soru 542Soru

An enterprise security analyst investigates a workstation after an employee reports unexpected system sluggishness. Detailed inspection of system logs reveals a persistent background process hook intercepting API keystrokes and capturing authentication session cookies. Further analysis of network flow records demonstrates stealthy, recurring outbound connections over non-standard ports transferring the collected data to an external address, while no attempts to scan or infect adjacent hosts are detected. Which of the following malware types and indicators of compromise are demonstrated in this incident? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Spyware and keylogging functionality intercepting sensitive user input and credential data; Command-and-control exfiltration evidenced by anomalous outbound network connections

Cevap

The correct options are Spyware and keylogging functionality intercepting sensitive user input and credential data, and Command-and-control exfiltration evidenced by anomalous outbound network connections.
The scenario highlights two distinct indicators: local host API hooking to capture credentials (characteristic of spyware and keyloggers) and unauthorized outbound traffic transferring stole data to an external recipient (characteristic of command-and-control exfiltration).

Adım Adım Çözüm

1
Analyze host process indicators
Process hooking keyboard input APIs and stealing cookies indicates active spyware/keylogger malware.
Spyware covertly monitors user activities and gathers sensitive personal or authentication data.
2
Analyze network traffic indicators
Unusual outbound data transfers over non-standard ports to an external IP indicate covert exfiltration over a command-and-control channel.
Indicators of Compromise (IoCs) for C2 traffic frequently involve unauthorized outbound network flows carrying stolen data.
3
Evaluate distractor propagation and mitigation options
Rule out worm mechanisms due to lack of replication, and rule out firewall controls for host memory flaws.
Differentiating malware propagation types and selecting valid technical controls prevents misdiagnoses during incident triage.

Anahtar Kavram

Malware Indicators of Compromise and Spyware/C2 Telemetry Analysis
Soru 543Soru

A network technician inspecting local subnet traffic notices a high volume of unsolicited Address Resolution Protocol (ARP) reply packets mapping the legitimate default gateway's IP address to an unknown host's MAC address. Which of the following network attacks is directly indicated by this activity?

Cevabı ve açıklamayı göster

Cevap: ARP poisoning

Cevap

ARP poisoning is indicated because unsolicited ARP responses alter the IP-to-MAC mapping cache on target hosts to intercept local network traffic.
The correct option is ARP poisoning because sending forged, unsolicited ARP responses to link the IP address of a default gateway to an unauthorized MAC address is the primary indicator of an ARP poisoning (or ARP spoofing) attack on a local Ethernet network.

Adım Adım Çözüm

1
Analyze the observed packet artifact in the scenario.
The technician observes unsolicited ARP replies mapping an IP address (default gateway) to an unexpected MAC address.
ARP (Address Resolution Protocol) operates at Data Link layer (Layer 2) to translate IPv4 addresses to hardware MAC addresses.
2
Correlate the packet artifact with known network attack signatures.
Sending fake, gratuitous, or unsolicited ARP responses to corrupt local ARP tables is the signature of ARP poisoning (spoofing).
By spoofing the MAC address of the default gateway, the attacker places themselves on-path to capture or manipulate traffic.

Anahtar Kavram

ARP Poisoning Attack Indicators
Soru 544Soru

A security analyst is establishing a vulnerability testing framework for a web application hosted in a staging environment. The framework requires two specific testing techniques: one method that actively interacts with the executing web application to identify runtime vulnerabilities like cross-site scripting, and another method that passively observes network traffic without injecting traffic or modifying state to identify unencrypted cleartext protocols. Which of the following security assessment methods should the analyst select to fulfill these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Dynamic Application Security Testing (DAST); Passive Network Packet Analysis

Cevap

The analyst should select Dynamic Application Security Testing (DAST) to discover runtime application vulnerabilities and Passive Network Packet Analysis to safely detect cleartext protocol usage without injecting network traffic.
Dynamic Application Security Testing (DAST) actively tests live running web applications to uncover runtime security defects like cross-site scripting (XSS), fulfilling the first requirement. Passive Network Packet Analysis captures and inspects live traffic stream headers and payloads without transmitting probing frames, satisfying the requirement to detect cleartext protocols safely.

Adım Adım Çözüm

1
Identify the requirement for testing a running web application dynamically for runtime flaws.
Dynamic Application Security Testing (DAST) matches this requirement because it tests live, executing applications from an external perspective.
Runtime vulnerability discovery requires black-box or gray-box dynamic execution analysis.
2
Identify the requirement for detecting cleartext protocols without injecting network traffic.
Passive Network Packet Analysis fulfills this mandate by inspecting existing traffic packets without sending active probes.
Active network scanning generates traffic and can disrupt legacy components, whereas passive packet capture does not alter traffic flow.

Anahtar Kavram

Vulnerability Assessment and Security Testing Methods
Soru 545Soru

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 546Soru

An enterprise security architecture team is auditing security responsibility boundaries across diverse cloud deployment models and specialized security integrations. Which operational security responsibility correctly aligns with each cloud architecture or deployment model?

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

Öğeler

API-based Cloud Access Security Broker (CASB)
On-Premises Private Cloud
Managed Platform as a Service (PaaS) Container Service
Community Cloud Deployment

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

API-based CASB matches with enforcing policies out-of-band via direct provider APIs. On-Premises Private Cloud matches with retaining full control over physical hardware, hypervisors, and workloads. Managed PaaS Container Service matches with customer responsibility for application code and container images while provider manages the control plane. Community Cloud Deployment matches with sharing governance and costs among organizations with joint compliance goals.
Each deployment model and cloud architectural control has specific boundaries: API CASBs operate out-of-band via cloud APIs; On-Premises Private Clouds demand full physical and virtualization stack management by the enterprise; PaaS container platforms split responsibility between provider control planes and tenant container content; and Community Clouds distribute shared governance across multiple affiliated entities.

Adım Adım Çözüm

1
Analyze API-based CASB operational architecture.
Identify out-of-band API integration as the defining characteristic compared to inline proxies.
API CASBs inspect data at rest and event logs directly via provider interfaces rather than intercepting active inline network traffic.
2
Evaluate On-Premises Private Cloud responsibility boundaries.
Confirm 100% customer responsibility for physical hardware, virtualization layer, and guest OS security.
Private clouds hosted locally do not offload any layer of physical or hypervisor security to a third-party cloud service provider.
3
Delineate PaaS managed container service responsibilities under the shared responsibility model.
Separate container application runtime security from infrastructure control plane security.
The provider secures the host OS, orchestrator nodes, and physical hardware, while the tenant secures container images and application code.
4
Classify Community Cloud deployment governance features.
Link to multi-organizational resource and governance sharing based on joint mission or regulatory needs.
Community clouds exist to service specific groups with common requirements (e.g., healthcare or government agencies).

Anahtar Kavram

Cloud Shared Responsibility Model and Cloud Architecture Integrations
Soru 547Soru

Match each Zero Trust Architecture (ZTA) functional component on the left with its corresponding operational role on the right.

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

Öğeler

Policy Engine (PE)
Policy Administrator (PA)
Policy Enforcement Point (PEP)
Data Plane

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Policy Engine matches with evaluating security policies and context; Policy Administrator matches with issuing control commands to manage connections; Policy Enforcement Point matches with intercepting traffic and enforcing access controls; Data Plane matches with carrying actual application payload traffic.
Each Zero Trust architecture component serves a distinct role split across the control plane and data plane. The Policy Engine (PE) evaluates policies and context to determine authorization. The Policy Administrator (PA) generates signals and credentials to open or close sessions. The Policy Enforcement Point (PEP) acts as the inline mechanism enforcing access. The Data Plane carries the actual payload once allowed.

Adım Adım Çözüm

1
Identify the decision-making brain of Zero Trust Architecture.
The Policy Engine (PE) processes rules and context to make authorization decisions.
ZTA relies on dynamic evaluation of trust before access is decided.
2
Identify the control signaling component.
The Policy Administrator (PA) executes decision commands to control connection establishment.
PA coordinates between the decision engine and enforcement mechanisms.
3
Identify the inline gatekeeper component.
The Policy Enforcement Point (PEP) directly inspects and controls subject access requests.
Enforcement must happen directly at the gateway or endpoint interface.
4
Identify the network layer responsible for user payload.
The Data Plane transports application user data separate from control signals.
NIST SP 800-207 mandates separation between the control plane and data plane.

Anahtar Kavram

Zero Trust Functional Components (NIST SP 800-207)
Soru 548Soru

A network security team is establishing a zero-trust transit pipeline for remote systems administrators managing a backend database server located in a restricted internal network zone. Place the traffic flow controls and access verification steps in the correct sequential order, from the initial remote connection request to establishing access on the target server.

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct sequence for administrative transit into a highly segmented database zone begins at the external perimeter VPN gateway with MFA, proceeds to an isolated bastion host in a management DMZ, transitions through internal microsegmentation firewalls evaluating East-West traffic, and culminates with scoped authentication on the target database server.
Secure network architecture mandates defense-in-depth and strict boundary isolation. The correct order ensures that untrusted external traffic is authenticated at the perimeter VPN, proxied through a bastion host in a management DMZ, filtered through internal microsegmentation firewalls for East-West traffic control, and finally authorized at the destination asset using least-privilege credentials.

Adım Adım Çözüm

1
Enforce North-South perimeter security and identity verification
Remote administrator connects via TLS VPN with MFA to gain ingress authorization.
Untrusted incoming connections must be encrypted and authenticated at the edge before any internal subnet exposure occurs.
2
Route administrative traffic to a jump server in the management DMZ
The user initiates an administrative proxy session on a hardened bastion host.
Direct management access from client endpoints to high-value internal assets violates secure segmentation principles. Bastions act as controlled proxies.
3
Enforce internal zone boundaries and microsegmentation filtering
Traffic from the jump server is inspected by internal firewalls filtering East-West network paths.
Internal segmentation controls ensure that even within internal zones, traffic crossing boundaries between management and database segments is explicitly validated.
4
Complete target host authentication in the restricted database segment
The session establishes to the target database server using scoped just-in-time credentials.
Final authentication and granular authorization occur directly at the target resource within the most restrictive network zone.

Anahtar Kavram

Bastion Transit Rules and Zone-based Microsegmentation Flow Controls
Tahmini Süre:2m 0s
Soru 549Soru

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 550Soru

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 551Soru

A financial enterprise security team mandates that every access request to sensitive payment processing services must be explicitly authenticated, authorized, and encrypted, regardless of whether the request originates from an internal office workstation or a remote home connection. Which core principle of Zero Trust Architecture does this policy directly demonstrate?

Cevabı ve açıklamayı göster

Cevap: Explicit verification of every access request regardless of user location or network origin

Cevap

Explicit verification of every access request regardless of user location or network origin
Zero Trust Architecture operates on the fundamental principle of explicit verification ('never trust, always verify'). Every access request must be continuously authenticated, authorized, and encrypted using all available context (such as user identity, location, device health, and data sensitivity) regardless of whether the request originates inside or outside the traditional corporate network.

Adım Adım Çözüm

1
Analyze the enterprise security requirement described in the stem.
The policy requires strict authentication, authorization, and encryption for every single connection attempt, treating internal and external network locations identically.
Identifying the operational boundary and access conditions enforced by the policy.
2
Map the requirement to established Zero Trust Architecture tenets.
The requirement directly aligns with the foundational Zero Trust principle of explicit verification ('never trust, always verify').
Zero Trust eliminates implicit trust based on network topology or user location.

Anahtar Kavram

Zero Trust Explicit Verification Tenet
Soru 552Soru

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 553Soru

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 554Soru

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 555Soru

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 556Soru

A financial organization is incorporating a legacy mainframe transaction processing engine into its modern hybrid data center architecture. The legacy system cannot support modern endpoint detection software or host-based firewalls, but it must securely accept transactions from front-end web servers while strictly preventing unauthorized lateral movement to adjacent enterprise database subnets. Which network architecture decision best isolates the legacy system while managing East-West traffic risks?

Cevabı ve açıklamayı göster

Cevap: Implement microsegmentation using software-defined networking rules and application proxy gateways between network zones.

Cevap

Enforcing microsegmentation using software-defined networking and application proxy gateways provides granular, preventive East-West traffic control around legacy systems without requiring host-level agents.
Microsegmentation partitions the data center into isolated logical zones down to individual workload levels. Combined with proxy gateways, it enforces strict Zero Trust policy controls over lateral (East-West) traffic without needing agent software installed on the legacy endpoint.

Adım Adım Çözüm

1
Analyze the operational constraints and threat model for the legacy mainframe system.
Determine that host-based firewalls cannot be installed and that the main risk vector is lateral (East-West) movement from compromised internal web or database servers.
Legacy devices without modern host controls must be shielded at the network layer.
2
Evaluate segmentation strategies capable of restricting East-West traffic while permitting legitimate API requests.
Identify microsegmentation with proxy gateways as the optimal mechanism to create isolated security boundaries around specific workloads.
Microsegmentation enforces explicit allow rules between defined network workloads regardless of physical network topology.
3
Reject ineffective or overly restrictive isolation options.
Eliminate perimeter-only defense (lacks internal lateral prevention), passive NIDS (detective, not preventive), and physical air-gapping (disrupts necessary real-time connectivity).
Secure network design must balance required operational functionality with preventive security controls.

Anahtar Kavram

Microsegmentation and East-West Traffic Isolation
Soru 557Soru

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 558Soru

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 559Soru

A Chief Information Security Officer (CISO) is auditing enterprise cloud services to enforce compliance with the cloud shared responsibility model across diverse architectures. Match each cloud service model implementation on the left to the corresponding primary security responsibility retained by the cloud customer on the right.

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

Öğeler

Infrastructure as a Service (IaaS) virtual server cluster
Platform as a Service (PaaS) managed relational database
Function as a Service (FaaS) event-driven microservice
Software as a Service (SaaS) cloud collaboration suite

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Each cloud service model maps to a specific tier in the shared responsibility matrix based on the level of abstraction provided by the vendor. IaaS requires customer management of OS and networking firewall controls; PaaS requires customer management of data objects and access rights while delegating OS/engine patching to the vendor; FaaS leaves application code and identity execution context to the customer; SaaS limits customer control strictly to data governance, access controls, and policy configurations.
The mapping accurately reflects how responsibility shifts from customer-heavy in IaaS (OS, middleware, network controls) to provider-heavy in SaaS (entire application stack), with PaaS and FaaS delegating runtime and platform maintenance to the cloud provider while keeping data, code, and access governance under customer control.

Adım Adım Çözüm

1
Analyze the IaaS virtual server cluster requirements.
IaaS provides bare compute infrastructure and virtualized host space, leaving OS patching, guest firewalls, and application management to the customer.
The provider only controls physical infrastructure and the hypervisor layer in IaaS.
2
Analyze the PaaS managed relational database requirements.
PaaS abstracts the underlying operating system and software engine, leaving database object access control and schema management to the customer.
The provider patches the host OS and DB engine, but cannot manage customer data access or application-level queries.
3
Analyze the FaaS event-driven microservice requirements.
FaaS abstracts both OS and runtime environments, requiring the customer to focus on secure function code and IAM execution roles.
Serverless architectures push infrastructure provisioning to the provider while keeping code and execution policy on the customer side.
4
Analyze the SaaS cloud collaboration suite requirements.
SaaS abstracts the entire hardware and software stack, leaving identity access, tenant settings, and data classification to the customer.
The vendor maintains all software and underlying platforms in SaaS deployments.

Anahtar Kavram

Cloud Shared Responsibility Matrix across IaaS, PaaS, FaaS, and SaaS
Soru 560Soru

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
ÖncekiSayfa 28 / 112Sonraki
Tüm alıştırma soruları — CompTIA Security+ | Examkin