Tüm alıştırma soruları

2232 soru

Soru 441Soru

During an off-peak security monitoring review, a security analyst identifies anomalous activity across several database server endpoints. Host telemetry indicates sustained 98% CPU and GPU utilization during non-business hours, accompanied by persistent outbound TCP traffic destined for an external IP address over port 3333 using the Stratum protocol. Endpoint inspection confirms an unauthorized binary executing via a persistent Windows Task Scheduler job. Based on these technical indicators of compromise (IoCs), which of the following malware types has compromised the systems?

Cevabı ve açıklamayı göster

Cevap: Cryptominer

Cevap

Cryptominer (or coin-miner) malware is identified by telemetry showing high system resource consumption (CPU/GPU) and network communication over mining pool protocols such as Stratum.
The correct answer is Cryptominer. Cryptomining malware (also known as cryptojacking software) secretly utilizes an infected endpoint's computational resources (CPU and GPU) to mine cryptocurrency. The key indicators in the scenario—extreme processor utilization during off-peak hours, persistence established via Task Scheduler, and outbound network traffic using the Stratum mining protocol—are definitive signatures of coin-mining operations.

Adım Adım Çözüm

1
Analyze the resource consumption telemetry in the incident log.
Near-100% CPU and GPU utilization during off-peak hours indicates unauthorized resource-heavy background computational tasks.
Cryptomining software requires intense mathematical operations to process cryptographic hashes for mining blocks.
2
Examine the network transport layer indicators and communication protocols.
Outbound TCP traffic over port 3333 utilizing the Stratum protocol links directly to cryptocurrency mining pool communication standards.
Stratum is the primary JSON-RPC based network protocol used by mining software to communicate with mining pool servers.
3
Synthesize the host persistence mechanics and telemetry artifacts to determine the malware type.
The combination of high processing load, Stratum mining pool network traffic, and scheduled task persistence confirms cryptominer malware deployment.
These telemetry markers explicitly define resource-hijacking cryptojacking malware.

Anahtar Kavram

Cryptomining Malware and Indicators of Compromise
Soru 442Soru

An enterprise security architect is mapping enterprise hardening controls to specific vulnerability findings identified during a comprehensive threat assessment. Match each enterprise mitigation strategy on the left with the threat or attack vector on the right that it is primarily designed to counter.

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

Öğeler

DNS Sinkholing coupled with DNSSEC validation
Microsegmentation utilizing host-based firewalls and network access control policies
Application allowlisting via strict code-signing and publisher policy enforcement
Privileged Access Management (PAM) with Just-In-Time (JIT) access and dual-operator controls

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Each enterprise mitigation strategy accurately maps to its corresponding risk: DNS sinkholing counters command-and-control (C2) channel establishing via DNS hijacking/tunneling; microsegmentation mitigates internal lateral movement across compromised workloads; application allowlisting blocks unauthorized zero-day software execution; and Privileged Access Management with JIT access eliminates standing rights to prevent insider privilege abuse.
The correct pairings align each defense-in-depth control with the primary attack vector it neutralizes: DNS sinkholing and DNSSEC address malicious domain resolution and C2 tunneling; host-level microsegmentation controls east-west traffic to halt lateral movement; application allowlisting enforces code-signing requirements to prevent unauthorized code execution; and PAM with JIT access revokes standing administrative rights to prevent insider abuse and unauthorized privilege exploitation.

Adım Adım Çözüm

1
Analyze the technical mechanism of DNS sinkholing with DNSSEC validation.
Identified that inspecting and redirecting DNS queries directly targets malicious domain lookup behavior typical of malware calling home via domain generation algorithms (DGAs) or DNS tunneling.
DNS-level mitigations specifically operate on domain resolution traffic to neutralize outbound C2 channels.
2
Evaluate the architectural purpose of host-based microsegmentation.
Determined that enforcing strict policy boundaries between host workloads prevents network traversal between internal nodes.
Microsegmentation is explicitly designed to contain blast radiuses by preventing unauthorized lateral (east-west) traffic flow.
3
Assess the operational mechanism of application allowlisting via code-signing enforcement.
Recognized that blocking execution based on digital signature certificates prevents unauthorized scripts, DLLs, and binary executables from running.
Allowlisting explicitly blocks untrusted binaries and zero-day executables that lack pre-approved publisher attestations.
4
Review Privileged Access Management (PAM) with Just-In-Time (JIT) and dual-operator controls.
Matched temporary privilege elevation and secondary approval workflows to the mitigation of standing administrative access abuse.
Removing persistent standing privileges and enforcing peer verification addresses insider threats and unauthorized administrative modifications.

Anahtar Kavram

Mitigation Strategies and Enterprise Hardening Practices
Soru 443Soru

A security administrator is auditing a legacy internal service and discovers two critical cryptographic control weaknesses: the application utilizes static, hardcoded Initialization Vectors (IVs) for Cipher Block Chaining (CBC) encryption, and it explicitly disables Certificate Revocation List (CRL) verification during TLS peer authentication. Which of the following security risks are directly introduced by these weaknesses? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Fixed Initialization Vectors enable attackers to detect identical plaintext blocks and perform pattern recognition attacks across encrypted ciphertext.; Bypassing revocation checks allows the service to establish trusted connections using revoked or compromised digital certificates.

Cevap

Static Initialization Vectors enable pattern recognition across ciphertext, and bypassing revocation checking permits trusting compromised or revoked certificates.
Hardcoded IVs compromise the randomness of symmetric CBC block ciphers, enabling pattern analysis when identical plaintext blocks are encrypted. Furthermore, disabling CRL checking prevents the application from discovering if a certificate has been revoked by its Issuing CA, allowing revoked or compromised certificates to establish trusted TLS sessions.

Adım Adım Çözüm

1
Analyze the impact of hardcoded Initialization Vectors (IVs) in CBC mode.
Identify that static IVs cause identical plaintext encrypted with the same key to yield predictable block patterns.
CBC mode requires a unique and random IV for every encryption operation to ensure indistinguishability.
2
Analyze the impact of disabling Certificate Revocation List (CRL) checks during TLS validation.
Identify that revoked certificates will be accepted without verification.
CRL validation ensures that certificates revoked due to key compromise or expiration are rejected before establishing trust.

Anahtar Kavram

Cryptographic Weaknesses in Cipher Initialization and Certificate Validation
Soru 444Soru

A security engineer is analyzing HTTP request logs for a document generation microservice after a Security Information and Event Management (SIEM) alert triggered on high CPU utilization. The service accepts custom template strings from authenticated users to format PDF invoices. Inspection of an isolated POST request payload reveals the following body:

`{"account_id": 9402, "template_body": "{{ self._TemplateReference__context.namespace.__init__.__globals__['os'].popen('id').read() }}"}`

The microservice returned an HTTP 200 OK response containing the payload output: `uid=1001(appworker) gid=1001(appworker)`.

Which of the following vulnerabilities was exploited in this incident, and what primary software control best prevents this vulnerability?

Cevabı ve açıklamayı göster

Cevap: Server-Side Template Injection (SSTI); remediate by using a sandboxed rendering engine or avoiding reflection to native language globals during template evaluation.

Cevap

The microservice is vulnerable to Server-Side Template Injection (SSTI), which is best mitigated by using a secure, sandboxed rendering context and preventing access to native language globals.
The correct answer identifies Server-Side Template Injection (SSTI). The payload leverages template expression syntax (`{{ ... }}`) combined with language-level reflection (`__globals__['os'].popen()`) to evaluate arbitrary shell commands on the hosting server. Effective defense requires running template engines within sandboxed execution boundaries or restricting access to native language globals.

Adım Adım Çözüm

1
Analyze the request payload structure and syntax in the log snippet.
The payload uses double curly braces `{{ ... }}` to inject template expression syntax combined with Python object reflection (`__globals__['os'].popen()`).
Identifying template expression delimiters helps distinguish server-side template rendering abuse from direct web script or database injection.
2
Evaluate the execution environment and response behavior.
The server executed the `id` system binary and returned `uid=1001(appworker)`, proving that code execution occurred on the server within the template processing engine.
Execution on the server confirms a server-side injection vulnerability (SSTI) rather than a client-side execution flaw like XSS.
3
Determine the appropriate remediation strategy.
The vulnerability is remediated by configuring the template engine in a restricted, sandboxed mode where dangerous built-ins, reflection attributes, and OS execution modules cannot be accessed.
Disabling dangerous reflection and isolating template execution prevents malicious input from invoking underlying system binaries.

Anahtar Kavram

Server-Side Template Injection (SSTI)
Soru 445Soru

An e-commerce organization is transitioning its customer portal microservices from self-managed virtual machines running in an Infrastructure as a Service (IaaS) environment to a managed Platform as a Service (PaaS) application hosting engine. Which of the following security management tasks is transferred from the organization to the cloud service provider as a direct result of adopting this PaaS model?

Cevabı ve açıklamayı göster

Cevap: Applying security updates and security patches to the underlying operating system of the application hosting environment.

Cevap

Applying security updates and security patches to the underlying operating system of the application hosting environment.
In the Cloud Shared Responsibility Model for Platform as a Service (PaaS), the Cloud Service Provider (CSP) assumes full management of the hardware, hypervisor, operating system (OS), and middleware runtime. Moving from IaaS to PaaS transfers the burden of OS security patching and kernel updates from the customer to the provider.

Adım Adım Çözüm

1
Analyze the scope of responsibility in Infrastructure as a Service (IaaS).
In IaaS, the customer manages the guest operating system, runtime software, network configurations, application code, and data.
IaaS provides raw virtualized compute infrastructure where the OS layer is customer-maintained.
2
Analyze the shift in scope when migrating to Platform as a Service (PaaS).
In PaaS, the Cloud Service Provider (CSP) manages the hardware, hypervisor, operating system, and execution runtime environment.
PaaS abstracts the underlying operating system and hardware platform so developers can focus solely on application code and data.
3
Identify the task transferred from the customer to the CSP.
Operating system patching and runtime engine maintenance are transferred to the CSP in PaaS.
Because the customer no longer manages or accesses the underlying OS in PaaS, OS update enforcement becomes a provider duty.

Anahtar Kavram

Cloud Shared Responsibility Model (IaaS vs. PaaS)
Soru 446Soru

An enterprise security operations center (SOC) detects anomalous network and wireless activity across multiple site logs during a synchronized red-team exercise. Match each observed technical log snippet or packet capture indicator to its corresponding network or wireless attack classification.

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

Öğeler

Syslog alert: 'MAC 00:11:22:33:44:55 associated with BSSID AA:BB:CC:DD:EE:FF sent 802.11 Reason Code 7 (Class 3 frame received from nonassociated STA) to 150 clients simultaneously.'
Packet capture snippet: Repeated ARP replies broadcasted to 192.168.1.255 stating IP 192.168.1.1 is at MAC 00:AA:11:BB:22:CC, while switches report 192.168.1.1 active port MAC as 00:11:22:33:44:55.
Wireless analyzer log: Broadcast beacon frames detected for SSID 'Corp-Secure' on Channel 6 using WPA2-Enterprise with BSSID 02:14:6C:AA:BB:CC, matching the enterprise SSID but operating at a significantly higher RSSI (-35 dBm) than legitimate APs (-72 dBm).
SIEM log event: DNS server log showing sudden resolution of intranet.corp.internal from 10.0.5.50 to 192.168.100.45 following non-authoritative UDP port 53 response injection without query ID mismatch alerts on clients.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings match each technical log snippet to its distinct attack indicator: 802.11 Reason Code 7 management frames indicate a Deauthentication attack; mismatched ARP gateway MAC bindings indicate ARP Poisoning; a high-RSSI unauthorized AP matching corporate SSID indicates an Evil Twin; and unauthorized IP resolution via forged records indicates DNS Cache Poisoning.
Each indicator uniquely aligns with standard protocol behaviors under attack: 802.11 disassociation frames force client disconnections; gratuitous ARP replies corrupt local MAC resolution tables; unauthorized high-power BSSIDs spoofing corporate SSIDs represent Evil Twins; and corrupt DNS response mappings indicate DNS cache poisoning.

Adım Adım Çözüm

1
Analyze the wireless management frame log snippet (802.11 Reason Code 7).
Reason Code 7 signifies disassociation due to class 3 frame receipt from a nonassociated station. Mass broadcast indicates a wireless disassociation/deauthentication attack.
Identify wireless denial-of-service or credential-harvesting pre-attack indicators.
2
Analyze the ARP packet capture log.
Discrepancy between broadcasted ARP reply MAC addresses and physical switch port MAC tables points to gratuitous/unsolicited ARP spoofing used for on-path interception.
Distinguish ARP poisoning indicators from normal network ARP traffic.
3
Analyze the wireless beacon frame capture for Corp-Secure.
An unauthorized BSSID advertising the legitimate SSID with an unusually high RSSI indicates a malicious rogue AP configured as an Evil Twin.
Recognize rogue wireless infrastructure masquerading as legitimate corporate access points.
4
Analyze the DNS resolution anomaly log.
Forged responses updating cached IP mapping for internal domain names demonstrate DNS cache poisoning.
Differentiate protocol spoofing at layer 7 (DNS) from layer 2 (ARP) and layer 1/2 (Wireless).

Anahtar Kavram

Identification and analysis of network and wireless attack indicators including ARP poisoning, DNS cache poisoning, Evil Twin access points, and 802.11 disassociation attacks.
Tahmini Süre:3m 0s
Soru 447Soru

A healthcare provider maintains an on-premises data center for storing confidential patient health records to maintain direct physical oversight. To handle peak computing demands during annual health audits, the provider integrates resources from a public cloud vendor. Which cloud deployment model is the organization utilizing?

Cevabı ve açıklamayı göster

Cevap: Hybrid cloud

Cevap

Hybrid cloud
A hybrid cloud deployment model bridges private on-premises infrastructure with public cloud resources, allowing organizations to store sensitive data locally while bursting workloads to the cloud during high-demand periods.

Adım Adım Çözüm

1
Identify the environments present in the scenario.
The healthcare provider relies on an internal on-premises data center alongside external public cloud resources.
Determining all hosting environments in use is essential for identifying the overall deployment model.
2
Map the combined environment structure to standard cloud deployment definitions.
An architecture connecting private local infrastructure with public cloud services to support workload bursting is defined as a hybrid cloud.
Hybrid cloud architectures allow organizations to maintain strict control over sensitive data locally while dynamically leveraging public cloud elasticity.

Anahtar Kavram

Cloud Deployment Models
Tahmini Süre:45s
Soru 448Soru

A security analyst reviewing network traffic logs from a global logistics platform notices that high-frequency automated telemetry updates are transmitted using AES encryption. Despite the encryption, an eavesdropper sitting on the network path can easily identify recurring fleet coordinates and status codes because identical 16-byte plaintext blocks consistently produce identical 16-byte ciphertext blocks throughout the session. Which cryptographic weakness is directly responsible for allowing the adversary to reconstruct payload patterns from the intercepted traffic?

Cevabı ve açıklamayı göster

Cevap: Utilization of Electronic Codebook (ECB) mode, which lacks initialization vector randomization

Cevap

The vulnerability is caused by the utilization of Electronic Codebook (ECB) mode, which lacks initialization vector randomization and fails to obscure structural patterns in identical plaintext blocks.
Electronic Codebook (ECB) mode is a deterministic block cipher mode of operation that encrypts every matching plaintext block into the exact same ciphertext block when using the same key. Because ECB does not employ an Initialization Vector (IV) or chain ciphertext across blocks, repetitive structured data (such as fixed-format telemetry or coordinates) remains visually or statistically recognizable in the encrypted stream.

Adım Adım Çözüm

1
Analyze the observed security flaw in the scenario
Identical 16-byte plaintext blocks produce identical 16-byte ciphertext blocks across encrypted transmissions.
This pattern leakage indicates a lack of diffusion and pseudo-random initialization across block encryptions.
2
Evaluate block cipher operating modes against the observed behavior
Electronic Codebook (ECB) mode evaluates each plaintext block independently using only the key without an Initialization Vector (IV).
Modes like Cipher Block Chaining (CBC) or Galois/Counter Mode (GCM) utilize IVs to ensure identical plaintexts yield distinct ciphertexts.
3
Select the cryptographic configuration error causing the deterministic pattern output
The system was misconfigured to use AES in ECB mode.
ECB mode deterministically maps input blocks to output blocks, exposing structural data patterns to passive eavesdroppers.

Anahtar Kavram

Block Cipher Modes of Operation and Pattern Leakage (ECB Flaw)
Soru 449Soru

A financial institution is deploying a microservice platform using a Function-as-a-Service (FaaS) cloud model to process high-frequency transaction requests. During a security architecture review, the compliance team requires a clear matrix of operational duties between the organization and the cloud service provider (CSP). Which of the following responsibilities is retained solely by the enterprise customer under this deployment model?

Cevabı ve açıklamayı göster

Cevap: Configuring application-level access control logic and authorization rules within the function code

Cevap

Configuring application-level access control logic and authorization rules within the function code is retained solely by the enterprise customer.
Under the cloud shared responsibility model for Function-as-a-Service (FaaS), the cloud service provider abstracts and manages the underlying hardware, hypervisor, host operating system, and language runtime environment. The enterprise customer retains complete responsibility for writing secure code, managing user data, defining data access policies, and embedding application-level authorization controls within the deployed function code.

Adım Adım Çözüm

1
Analyze the cloud service model specified in the scenario
Identified the platform model as Function-as-a-Service (FaaS) / Serverless compute
Service responsibility boundaries vary significantly depending on whether IaaS, PaaS, SaaS, or FaaS is used
2
Evaluate CSP versus customer responsibility for FaaS deployments
The CSP manages physical hardware, hypervisors, server OS, container runtimes, and auto-scaling logic
FaaS abstracts server and runtime management away from the customer
3
Identify the remaining customer management domain
The customer remains responsible for code development, API authorization logic, data classification, and IAM permissions
The customer owns all custom application logic and security configuration within their functions

Anahtar Kavram

Cloud Shared Responsibility Model in Serverless / FaaS Architectures
Soru 450Soru

A security engineer inspects a vulnerability scan report and port listing for a building automation system (BAS) controller deployed on an internal VLAN (172.16.45.10):

PORT STATE SERVICE REASON
23/tcp open telnet Unencrypted interactive management shell
80/tcp open http Embedded Web Server (Cleartext HTTP Basic Auth)
502/tcp open modbus Modbus TCP (Industrial protocol without built-in authentication)

Which of the following architectural and host vulnerabilities are present on this system? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Transmission of management credentials and administrative traffic across unencrypted communication protocols; Exposure of unauthenticated operational technology protocols directly accessible on the network

Cevap

The correct vulnerabilities are the transmission of management credentials across unencrypted communication protocols and the exposure of unauthenticated operational technology protocols directly accessible on the network.
The system exhibits two primary vulnerabilities: legacy unencrypted protocols (Telnet and HTTP) that transmit session data and administrative credentials in plaintext, and the deployment of Modbus TCP on port 502, an industrial control system protocol that inherently lacks native authentication mechanisms.

Adım Adım Çözüm

1
Analyze the service findings for cleartext transport protocols
Ports 23 (Telnet) and 80 (HTTP) indicate cleartext management channels that expose credentials to interception.
Telnet and HTTP pass data in unencrypted format.
2
Analyze protocol security characteristics for industrial service ports
Port 502 (Modbus TCP) exposes an operational technology protocol lacking native authentication controls.
Legacy SCADA/ICS protocols rely on network isolation rather than protocol-level identity verification.

Anahtar Kavram

Host and Network Vulnerabilities in Cleartext Services and Legacy ICS Protocols
Soru 451Soru

A security analyst needs to gather freely available threat indicators and standardized software vulnerability data without incurring commercial licensing or subscription costs. Which TWO of the following threat intelligence sources should the analyst utilize?

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

Cevabı ve açıklamayı göster

Cevap: Open-Source Intelligence (OSINT); Public vulnerability databases (such as NVD and CVE lists)

Cevap

The analyst should utilize Open-Source Intelligence (OSINT) and public vulnerability databases (such as NVD and CVE lists).
Open-Source Intelligence (OSINT) and public vulnerability databases (like NVD/CVE) both provide freely available, publicly accessible threat data and vulnerability details without requiring paid subscriptions or proprietary vendor tools.

Adım Adım Çözüm

1
Identify the constraints specified in the scenario
The requirements demand threat intelligence sources that are publicly available, free of charge, and provide threat indicators or software vulnerability data.
Filtering intelligence sources by cost and public accessibility narrows the valid choices.
2
Evaluate publicly available threat intelligence sources
Open-Source Intelligence (OSINT) provides threat indicators from open media, web feeds, and repositories. Public vulnerability databases (such as the NVD/CVE repository) supply free, standardized vulnerability information.
Both sources fulfill the criteria of being publicly accessible and cost-free.
3
Exclude paid, internal, or active detection mechanisms
Proprietary feeds require subscriptions, internal SIEM logs are localized security telemetry, and honeypots are active internal deception tools.
These alternatives either incur financial costs or fail to qualify as external research intelligence sources.

Anahtar Kavram

Threat Intelligence Sources and Research
Soru 452Soru

A multinational financial services firm discovers an unauthorized third-party file synchronization application installed across several workstations in the accounting department. The application was introduced by employees seeking to bypass internal network latency when sharing large spreadsheets with external auditors. While analyzing the traffic, security operations identifies that the external cloud server receiving the synchronized financial data was compromised three days prior by a ransomware syndicate, exposing corporate credentials and confidential records. Which of the following best categorizes the primary attack vector utilized and the threat actor attribute responsible for the initial vulnerability?

Cevabı ve açıklamayı göster

Cevap: The primary attack vector is Shadow IT, created by internal staff acting without malicious intent but lacking authorization.

Cevap

The initial vulnerability was created through Shadow IT, where internal employees deployed unsanctioned third-party software to circumvent operational inefficiency without malicious intent.
The scenario describes employees installing unauthorized third-party software to solve a practical business challenge (network latency). This unsanctioned use of technology outside formal IT management and oversight defines Shadow IT, which introduced an unveted attack vector that external threat actors exploited.

Adım Adım Çözüm

1
Analyze the motivation and authorization of the internal employees who installed the application.
The accounting staff installed the application to solve network latency issues, indicating non-malicious intent but unauthorized software usage.
Threat actor attributes and attack vectors are determined by intent, authorization, and execution methods.
2
Categorize the attack vector associated with unsanctioned software deployment.
Deploying unapproved applications or cloud services outside the IT department's oversight is classified as Shadow IT.
Shadow IT expands the organizational attack surface by introducing unvetted software and external endpoints.
3
Evaluate the subsequent compromise by the external ransomware syndicate.
The external ransomware group exploited the data sent to the compromised third-party cloud server introduced via the Shadow IT vector.
Threat actors frequently exploit secondary vulnerabilities created by unsanctioned asset deployment.

Anahtar Kavram

Threat Actors, Attributes, and Attack Vectors
Soru 453Soru

A network administrator suspects an attacker is performing an Evil Twin attack combined with a disassociation attack to intercept wireless client traffic. Which TWO technical indicators directly point to this specific wireless attack scenario? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: A sudden burst of 802.11 management frames containing deauthentication requests directed at connected clients; An unauthorized access point broadcasting an identical SSID as the corporate network but utilizing a different BSSID (MAC address)

Cevap

The correct indicators are a sudden burst of 802.11 deauthentication management frames and an unauthorized access point broadcasting an identical SSID with a different BSSID.
In an Evil Twin and disassociation attack scenario, the attacker first sends 802.11 management frames (deauthentication packets) to disconnect legitimate users from their authorized access point. Once disconnected, the user devices automatically attempt to reconnect to the strongest access point broadcasting their saved network name (SSID), leading them to connect to the attacker's rogue AP which advertises the exact same SSID but uses a different BSSID (MAC address).

Adım Adım Çözüm

1
Analyze the mechanics of a wireless disassociation attack
Identify that attackers broadcast 802.11 deauthentication or disassociation management frames to force clients off a legitimate access point.
Disconnecting target devices is the initial step required to trick them into reconnecting to the attacker's rogue equipment.
2
Analyze the characteristics of an Evil Twin access point
Identify that the rogue access point clones the legitimate network's SSID but operates with its own distinct BSSID (MAC address).
Clients automatically attempt to reconnect to preferred wireless network names (SSID), making them vulnerable to rogue APs advertising the same name.
3
Differentiate wireless indicators from wired network and reconnaissance anomalies
Rule out ICMP ping sweeps (network scanning) and unsolicited ARP replies (wired ARP poisoning).
Network layer host discovery and Address Resolution Protocol manipulation operate on layer 2/3 wired infrastructure rather than 802.11 radio management frames.

Anahtar Kavram

Wireless Disassociation and Evil Twin Attack Indicators
Soru 454Soru

An enterprise security architect is establishing a security baseline across diverse cloud deployment and service models. Match each security operational task or control responsibility to the corresponding cloud service or deployment model that correctly allocates primary tenant responsibility.

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

Öğeler

Configuring guest operating system firewall rules, virtual network routing policies, and OS-level security patches
Managing application runtime environments, database engine security updates, and middleware framework dependencies
Defining user access role permissions, data classification rules, and identity governance within fully hosted turnkey applications
Enforcing a shared infrastructure security baseline and compliance governance model across independent organizations with common regulatory mandates

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Configuring guest OS firewall rules and virtual routing maps to Infrastructure as a Service (IaaS). Managing application runtime environments and database engine updates maps to Platform as a Service (PaaS). Defining user access permissions and data classification rules in turnkey applications maps to Software as a Service (SaaS). Enforcing a shared infrastructure baseline across entities with common compliance requirements maps to Community Cloud.
The allocation of security management responsibilities follows the cloud shared responsibility framework across service models (IaaS, PaaS, SaaS) and deployment structures (Community Cloud). In IaaS, the customer manages everything from the guest OS upwards. In PaaS, the provider manages the host infrastructure and runtime environment, while the customer manages code and data. In SaaS, the provider manages the full application stack, leaving data protection and access administration to the customer. A Community Cloud specifically serves multiple organizations sharing regulatory and operational requirements.

Adım Adım Çözüm

1
Analyze task 1 regarding guest OS firewalls and patching.
Identified as IaaS responsibility because the customer controls the OS layer and virtual network configuration while the CSP manages the hypervisor and physical hosts.
IaaS provides raw infrastructure primitives, leaving OS administration to the tenant.
2
Analyze task 2 regarding application runtime engines and middleware patching.
Identified as PaaS responsibility because the provider abstracts away OS and infrastructure maintenance, providing a ready-to-use execution engine for user applications.
PaaS offloads OS and engine maintenance to the CSP while keeping application code under tenant control.
3
Analyze task 3 regarding identity governance in turnkey software applications.
Identified as SaaS responsibility because the entire software product is abstracted, leaving only data security and user access management to the tenant.
SaaS providers deliver complete applications, shifting all infrastructure and application maintenance away from the tenant.
4
Analyze task 4 regarding joint infrastructure baseline enforcement across distinct organizations with shared compliance needs.
Identified as Community Cloud because this deployment model specifically pools infrastructure resources for member organizations operating under a shared security or regulatory umbrella.
Community clouds cater to multi-tenant peer cohorts with unified governance criteria.

Anahtar Kavram

Shared Responsibility Model across Cloud Service and Deployment Models
Soru 455Soru

A security analyst investigates packet capture data and network syslog alerts from an enterprise workstation segment. The logs reveal multiple unsolicited gratuitous ARP reply frames mapping the IP address of the subnet default gateway to an unauthorized local host's MAC address. Concurrently, workstations requesting address records for the corporate portal `login.enterprise.local` receive forged response packets directing them to an external public IP address, bypassing the internal primary DNS server. Which of the following attack indicators and techniques are demonstrated in this security incident? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: ARP poisoning utilized to establish an on-path (man-in-the-middle) network position on the local subnet.; DNS spoofing utilized to alter hostname resolution and redirect client authentication traffic.

Cevap

The observed security incident combines ARP poisoning (using gratuitous ARP frames to map the default gateway IP to an unauthorized MAC address for on-path traffic interception) and DNS spoofing (injecting forged hostname resolution packets to redirect users to an external IP).
The scenario demonstrates ARP poisoning and DNS spoofing. The presence of unsolicited gratuitous ARP replies remapping the default gateway IP address to an unauthorized host MAC address is the definitive indicator of ARP cache poisoning, establishing an on-path position. Simultaneously, forged DNS resolution responses redirecting internal domain queries to an external address represent DNS spoofing.

Adım Adım Çözüm

1
Analyze the layer 2 network indicators present in the packet capture.
Unsolicited gratuitous ARP reply frames mapping the gateway IP to an attacker MAC address confirm ARP poisoning/spoofing on the local layer 2 segment.
ARP poisoning alters local ARP cache bindings to intercept or modify packets destined for the default gateway.
2
Analyze the application layer domain resolution indicators.
Unsolicited or forged DNS responses overriding the legitimate internal DNS server confirm DNS spoofing/poisoning.
DNS spoofing causes client applications to resolve legitimate hostnames to rogue destination IP addresses.
3
Synthesize the multi-stage attack mechanisms.
The attacker combines ARP poisoning for network traffic redirection with DNS spoofing to hijack web portal authentication sessions.
On-path positions established via ARP poisoning frequently facilitate inline DNS manipulation.

Anahtar Kavram

Network Attack Indicators: ARP Poisoning and DNS Spoofing
Tahmini Süre:2m 0s
Soru 456Soru

During a targeted forensic investigation of a compromised server, an investigator examines volatile memory artifacts using a memory analysis framework. The analysis reveals an injected memory section within the address space of a legitimate lsass.exe process possessing PAGE_EXECUTE_READWRITE memory permissions. Further inspection reveals shellcode executing directly out of unmapped RAM with no corresponding executable file present on the disk or file modification recorded. Which of the following malware classifications best describes this threat?

Cevabı ve açıklamayı göster

Cevap: Fileless malware

Cevap

Fileless malware is the correct classification because the threat operates directly within volatile RAM and injected process memory without leaving a persistent binary file on disk.
Fileless malware resides exclusively in volatile memory (RAM) or piggybacks onto legitimate host processes through injection techniques, evading traditional disk-based detection mechanisms.

Adım Adım Çözüm

1
Analyze host indicators of compromise (IoCs)
Identified shellcode executing within PAGE_EXECUTE_READWRITE unmapped memory of a legitimate process (lsass.exe) with zero disk footprint.
Recognizing memory-only execution indicators helps distinguish non-persistent or injected threats from traditional disk-based payloads.
2
Evaluate malware propagation and storage vectors
The absence of stored executables, file modifications, or standalone malicious binaries rules out traditional disk-borne installers and Trojans.
Fileless threats leverage existing system processes (living off the land) or direct memory injection to evade disk-based antivirus detection.
3
Select the matching malware classification
Confirm Fileless malware as the accurate diagnosis.
Fileless malware specifically matches the profile of residing strictly in volatile memory.

Anahtar Kavram

Fileless malware and memory injection indicators of compromise
Soru 457Soru

A security team conducts a static code analysis on a newly developed mobile application. The review reveals that the application uses a hardcoded secret key embedded directly inside the compiled source code to encrypt local user session tokens. Which of the following best describes the primary cryptographic security weakness in this application design?

Cevabı ve açıklamayı göster

Cevap: Hardcoded key usage, which allows attackers to extract the secret key through reverse engineering of the application binary.

Cevap

Hardcoded secret keys embedded inside compiled application binaries allow attackers to extract the key through reverse engineering, compromising the security of all data encrypted with that key.
Embedding secret cryptographic keys directly inside source code or compiled application binaries creates a severe vulnerability known as hardcoded key usage. Because mobile application binaries reside on end-user devices, attackers can decompile or disassemble the software using standard reverse engineering tools, extract the secret key, and decrypt all protected session tokens.

Adım Adım Çözüm

1
Analyze the scenario details.
The application code contains an embedded, fixed secret key used for local encryption.
Static code analysis identified a hardcoded secret key directly within the compiled mobile application binary.
2
Evaluate the risk of embedding static cryptographic keys in client applications.
Attackers can decompile the mobile binary and extract the hardcoded key.
Client binaries are untrusted environments; any embedded secret key can be recovered using basic reverse engineering tools.
3
Identify the primary cryptographic control weakness.
The weakness is hardcoded key storage leading to key exposure.
Proper key management requires dynamically generated keys or secure storage mechanisms (such as hardware keystores or key vaults) rather than hardcoded code strings.

Anahtar Kavram

Hardcoded Cryptographic Keys
Soru 458Soru

A threat intelligence team at a healthcare enterprise is designing an automated threat indicator pipeline. The organization wants to ingest structured, machine-readable threat data from trusted peer organizations within its industry sector and automatically exchange standardized operational telemetry across security platforms in real time. Which of the following solutions should the team implement to fulfill these specific requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Deployment of TAXII protocol services to facilitate automated, machine-readable indicator transport between security systems.; Direct subscription and participation in a sector-specific ISAC to receive and share industry-relevant threat telemetry with peer organizations.

Cevap

The correct solutions are deploying TAXII protocol services for automated indicator transport and joining a sector-specific ISAC to exchange vetted threat data with industry peers.
To achieve automated, machine-readable threat indicator ingestion and real-time community sharing, an organization should deploy TAXII servers (which manage the transport layer for structured threat data such as STIX) and participate in a sector-specific ISAC (which provides the operational trust framework and platform for industry peers to exchange relevant telemetry).

Adım Adım Çözüm

1
Analyze requirement for automated, real-time indicators
Identify that machine-readable threat indicator transport requires standardized protocol exchange standards like TAXII.
TAXII automates the sharing of structured threat data across heterogeneous security systems.
2
Analyze requirement for peer-to-peer industry indicator sharing
Identify that sector-specific threat sharing relies on Information Sharing and Analysis Centers (ISACs).
ISACs enable trusted peer collaboration and targeted threat intelligence dissemination within specialized domains like healthcare.
3
Evaluate distractor choices against threat intel definitions
Reject CVE/NVD unparsed feeds for firewall blocking, honeypots for inline packet filtering, and misaligned threat actor attribution.
Vulnerability databases do not contain active operational IOCs, honeypots are not preventive filtering controls, and script kiddies lack zero-day targeted capability.

Anahtar Kavram

Threat Intelligence Sharing Architecture (ISACs and TAXII)
Soru 459Soru

Users in a office location report that all connected wireless devices suddenly lost Wi-Fi signal simultaneously across multiple channels. Analysis using a spectrum analyzer detects a severe, continuous spike in radio frequency interference spanning the entire 2.4 GHz spectrum. Which of the following wireless attacks is indicated by these symptoms?

Cevabı ve açıklamayı göster

Cevap: Radio frequency jamming

Cevap

Radio frequency jamming
Radio frequency jamming occurs when an attacker uses an RF transmitter to intentionally flood wireless frequencies with noise. The signature indicator is continuous, broad spectrum noise across wireless bands detected by a spectrum analyzer, causing immediate signal loss for all surrounding devices.

Adım Adım Çözüm

1
Analyze the physical symptoms reported by end users.
All client devices across multiple channels lost Wi-Fi connectivity at the exact same time.
Simultaneous disruption across multiple channels points to physical-layer RF interference rather than logical access point issues.
2
Interpret the spectrum analyzer findings.
A high, continuous burst of noise was observed across the entire 2.4 GHz band.
RF jamming intentionally floods the wireless spectrum with noise, degrading the signal-to-noise ratio so devices can no longer transmit or receive signals.

Anahtar Kavram

Radio Frequency (RF) Jamming Indicators
Tahmini Süre:45s
Soru 460Soru

An incident response team at a regional water utility discovers unauthorized access to its operational technology (OT) network controlling water filtration valves. Forensic analysis reveals that the attacker gained initial access through compromised VPN credentials belonging to an external HVAC contractor, deployed custom zero-day exploits, and maintained undetected access for eight months without altering operations or requesting a ransom. Which of the following threat actor types best matches the attributes and behavior observed in this scenario?

Cevabı ve açıklamayı göster

Cevap: Nation-state actor

Cevap

Nation-state actor
A nation-state actor possesses the advanced technical capability to develop or procure custom zero-day exploits, the financial backing to conduct prolonged reconnaissance, and strategic motivation focused on espionage or long-term operational pre-positioning rather than financial extortion.

Adım Adım Çözüm

1
Analyze the attack vector and entry point presented in the scenario.
Initial entry was achieved via a third-party vendor's compromised credentials, demonstrating a supply chain attack vector.
Identifying the vector helps narrow down the actor's capabilities and target methodology.
2
Evaluate the technical sophistication and resource indicators.
The usage of custom zero-day exploits and an eight-month dwell time indicates advanced technical capabilities, significant financial backing, and high persistence.
Developing zero-day exploits requires extensive expertise and financial capital beyond standard cybercriminals or script kiddies.
3
Examine the threat actor's motivation and intent.
The absence of ransomware demands, operational disruption, or theft of financial assets indicates strategic intelligence gathering or pre-positioning rather than financial gain or publicity.
Aligning attributes (sophistication, resources, intent) confirms the threat actor classification.

Anahtar Kavram

Threat Actor Attributes and Attack Vectors
Tahmini Süre:1m 30s
ÖncekiSayfa 23 / 112Sonraki
Tüm alıştırma soruları — CompTIA Security+ | Examkin