Tüm alıştırma soruları

2232 soru

Soru 561Soru

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

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

An enterprise security administrator needs to isolate public-facing web servers from the internal corporate network to ensure that external internet traffic cannot directly reach internal database servers. Which network design boundary should the administrator implement to host these public services?

Cevabı ve açıklamayı göster

Cevap: Demilitarized zone (DMZ)

Cevap

Demilitarized zone (DMZ)
A demilitarized zone (DMZ) is a specialized physical or logical subnetwork that exposes an organization's external-facing services to an untrusted network, such as the internet, while keeping the rest of the enterprise network isolated. If a server in the DMZ is compromised, the internal firewall controls limit the attacker's ability to pivot into the internal network.

Adım Adım Çözüm

1
Identify the architectural requirement
Public-facing services (web servers) need to be accessible from the internet while preventing direct access to sensitive internal resources.
Security best practices dictate separating publicly reachable assets from internal private assets.
2
Evaluate network segmentation options
A demilitarized zone (DMZ) creates a perimeter subnet placed between the untrusted external network (internet) and the trusted internal network.
Firewall rules control North-South traffic into the DMZ and strictly restrict East-West traffic from the DMZ into the internal network.

Anahtar Kavram

Demilitarized Zone (DMZ) Perimeter Design
Tahmini Süre:45s
Soru 564Soru

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

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

An enterprise security architect is designing a defense-in-depth framework across a multi-cloud environment. Match each cloud security technology on the left with its primary operational function on the right.

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

Öğeler

Cloud Access Security Broker (CASB)
Cloud Security Posture Management (CSPM)
Cloud Workload Protection Platform (CWPP)
Secure Access Service Edge (SASE)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Cloud Access Security Broker (CASB) matches with policy and DLP enforcement between users and cloud applications; Cloud Security Posture Management (CSPM) matches with continuous audit of cloud resource configurations and compliance drift; Cloud Workload Protection Platform (CWPP) matches with runtime threat detection and vulnerability management for workloads (VMs, containers); Secure Access Service Edge (SASE) matches with the convergence of SD-WAN networking and cloud-delivered security controls.
Each cloud security solution targets a distinct architectural operational boundary: CASB protects application-level usage and data flows; CSPM monitors infrastructure control plane compliance and configuration hygiene; CWPP secures individual compute workload runtimes; and SASE converges network transport infrastructure with edge-delivered security controls.

Adım Adım Çözüm

1
Identify the primary scope of Cloud Access Security Broker (CASB).
CASB secures user interaction with cloud applications (SaaS/PaaS) by enforcing governance, authentication, and Data Loss Prevention (DLP).
CASB acts as an intermediary policy enforcement point between endpoints and cloud service providers.
2
Identify the primary scope of Cloud Security Posture Management (CSPM).
CSPM audits cloud management planes for misconfigurations and regulatory compliance drift.
CSPM continuously inspects environment settings against baseline security standards.
3
Identify the primary scope of Cloud Workload Protection Platform (CWPP).
CWPP secures compute resources (VMs, containers, serverless instances) at runtime.
CWPP provides workload-centric security features such as process monitoring and container image scanning.
4
Identify the primary scope of Secure Access Service Edge (SASE).
SASE combines wide-area network routing (SD-WAN) with cloud-delivered security services like ZTNA and SWG.
SASE integrates network routing with cloud-native security enforcement at the edge.

Anahtar Kavram

Cloud Security Architecture and Monitoring Solutions
Soru 567Soru

A United States software vendor hosts a cloud-based clinical trial management platform that collects personal data from research subjects located across European Union member states. All trial telemetry processed in the US data center is encrypted at rest using AES-256. However, the organization relies solely on standard commercial service agreements for cross-border data movement. Which of the following mechanisms is required under the General Data Protection Regulation (GDPR) to lawfully authorize this ongoing transfer of personal data to a third country lacking an adequacy decision?

Cevabı ve açıklamayı göster

Cevap: Executing Standard Contractual Clauses alongside a Transfer Impact Assessment to evaluate local surveillance law protections

Cevap

Executing Standard Contractual Clauses (SCCs) alongside a Transfer Impact Assessment (TIA) to evaluate local surveillance law protections
Under GDPR Chapter V, when personal data of EU data subjects is transferred to a country that lacks an official adequacy decision, organizations must implement approved safeguards. Executing Standard Contractual Clauses (SCCs) combined with conducting a Transfer Impact Assessment (TIA) ensures that valid legal commitments are in place and that supplementary measures are evaluated to protect data against third-country surveillance laws.

Adım Adım Çözüm

1
Analyze the regulatory requirement for cross-border data transfers
Identified that transferring EU personal data to a non-adequate third country (such as the US without specific frameworks) requires approved transfer mechanisms under GDPR Chapter V.
GDPR restricts transfers of personal data outside the European Economic Area (EEA) unless appropriate safeguards or adequacy decisions exist.
2
Evaluate appropriate legal safeguards and supplemental assessments
Determined that Standard Contractual Clauses (SCCs) reinforced by a Transfer Impact Assessment (TIA) satisfy the requirement for legal transfer safeguards.
Following legal precedents, controllers must execute SCCs and perform a TIA to confirm that destination country laws do not undermine GDPR-equivalent protections.
3
Differentiate technical frameworks and domestic laws from international transfer requirements
Ruled out ISO certifications, HIPAA BAAs, and liability transfers as non-compliant mechanisms for EU international privacy obligations.
Security certifications and domestic laws like HIPAA do not establish legal adequacy, nor can data controllers divest statutory liability to cloud hosts.

Anahtar Kavram

GDPR International Data Transfer Safeguards and Mechanisms
Soru 568Soru

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

An industrial manufacturing company needs to isolate its operational technology (OT) network controlling factory machinery from the corporate IT network. The security policy mandates complete physical separation with no logical network connections, wireless links, or shared switching hardware between the two environments. Which network design technique fulfills this requirement?

Cevabı ve açıklamayı göster

Cevap: Air-gapping

Cevap

Air-gapping is the technique that establishes total physical isolation with zero shared network hardware or logical connections.
Air-gapping physically isolates a critical network from all other networks by ensuring there are no network cables, wireless connections, or shared network hardware linking them.

Adım Adım Çözüm

1
Identify the key requirement in the scenario.
The requirement demands complete physical separation without shared hardware or logical connectivity.
The organization requires zero exposure of OT machinery to corporate network paths.
2
Evaluate network isolation techniques against physical separation constraints.
Techniques like VLANs, DMZs, and microsegmentation rely on shared hardware or routed paths, whereas air-gapping physically disconnects the target systems.
Air-gapping eliminates all physical interfaces, wireless links, and shared switching equipment.

Anahtar Kavram

Air-gapping and Network Isolation
Soru 570Soru

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

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

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

An online gaming enterprise is transitioning its matchmaking service to a cloud provider's Function-as-a-Service (FaaS) event-driven architecture integrated with a managed API Gateway. As part of establishing the enterprise cloud security baseline, the lead architect must define operational boundaries under the shared responsibility model. Which of the following tasks remain the sole responsibility of the enterprise customer? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Auditing and remediation of application source code vulnerabilities and third-party software dependencies; Configuring least-privilege Identity and Access Management (IAM) execution roles and API Gateway authorization policies

Cevap

The enterprise customer is responsible for auditing application source code and third-party dependencies, as well as configuring least-privilege IAM execution roles and API Gateway authorization policies.
In Function-as-a-Service (FaaS) models, the cloud provider abstracts away servers, operating systems, and physical infrastructure. However, the enterprise customer remains strictly responsible for everything inside their code (such as vulnerability scanning, fixing code bugs, and auditing third-party libraries) and for identity controls (such as defining granular IAM execution roles for functions and configuring access rules at the API Gateway).

Adım Adım Çözüm

1
Analyze the cloud service model presented in the scenario.
The scenario uses a Function-as-a-Service (FaaS / Serverless) deployment model combined with a managed API Gateway.
Service models dictate how operational responsibilities are allocated between the Cloud Service Provider (CSP) and the customer.
2
Differentiate CSP-managed infrastructure components from customer-managed configuration and data components in FaaS.
The CSP manages physical hardware, hypervisors, runtime engines, and host OS patching. The customer retains control over application code, data, and access configurations.
Serverless abstracts away server administration, removing host OS maintenance and hardware security from the customer's purview.
3
Evaluate each option against the customer's responsibilities.
Remediating application code flaws and defining IAM/API access policies are customer tasks. OS kernel patching and data center physical controls are CSP tasks.
Security in the cloud requires customers to secure their data, code logic, and access permissions, regardless of abstraction level.

Anahtar Kavram

Cloud Shared Responsibility Model in Serverless (FaaS) Architectures
Soru 574Soru

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

Match each network segmentation concept on the left with its defining implementation characteristics on the right. Which pairings correctly connect each segmentation technique to its primary description?

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

Öğeler

Air Gap
Demilitarized Zone (DMZ)
VLAN (Virtual LAN)
Microsegmentation

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Air Gap matches physical isolation with zero electronic connectivity. Demilitarized Zone (DMZ) matches a perimeter network hosting public services. VLAN matches Layer 2 switch broadcast domain separation. Microsegmentation matches granular workload isolation controlling East-West traffic.
The concepts correctly align with their respective architectural boundaries: Air Gap provides absolute physical disconnection, DMZ insulates internal networks from public service exposure, VLAN separates Layer 2 switch traffic, and Microsegmentation limits lateral movement between virtual workloads.

Adım Adım Çözüm

1
Identify the physical versus logical nature of each network segmentation technique.
Air gap is entirely physical, DMZ is perimeter-focused, VLAN operates at Layer 2, and microsegmentation enforces workload-level policies.
Different network architecture goals require distinct physical or logical boundary boundaries.
2
Pair physical separation and perimeter protection terms.
Air Gap connects to complete physical isolation. DMZ connects to the subnetwork hosting public-facing services.
Air gaps ensure no physical or electronic link exists, whereas DMZs allow controlled external access.
3
Pair switch-level and workload-level logical controls.
VLAN connects to Layer 2 broadcast domain partitioning. Microsegmentation connects to granular workload isolation for East-West traffic.
VLANs segment network hardware at the data link layer, while microsegmentation controls traffic flow between virtualized application instances.

Anahtar Kavram

Network Segmentation and Boundary Controls
Soru 576Soru

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

A healthcare organization is updating its network architecture to secure legacy medical imaging endpoints (DICOM equipment) that cannot accept local security agents or operating system patches. The operational design requires these endpoints to stream telemetry outbound to an off-site analytics platform while allowing internal system administrators to perform maintenance. Which of the following network architecture and segmentation controls should the security team implement to isolate the legacy endpoints while satisfying operational requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Deploy a physical or virtual data diode at the network perimeter of the legacy medical segment to enforce unidirectional outbound traffic streaming.; Place legacy medical devices into an isolated VLAN protected by microsegmentation and restrict administrative access strictly through a dedicated jump box with session logging.

Cevap

The organization should deploy a data diode to enforce unidirectional outbound streaming and place the legacy devices in an isolated VLAN accessible only via a dedicated jump box with microsegmentation controls.
The combination of a data diode and microsegmentation with a jump box ensures complete isolation for unpatchable endpoints. The data diode strictly guarantees one-way outbound data transmission for analytics telemetry without allowing inbound network connections. Microsegmentation isolates the legacy endpoints from general user subnets, while the jump box mandates secure, monitored entry for administrative access.

Adım Adım Çözüm

1
Analyze endpoint vulnerability and traffic requirements
Identified legacy medical equipment that cannot host agents/patches but needs outbound analytics streaming and controlled administrative access.
Unpatchable devices present high risk for lateral infection and require strict boundary defense.
2
Evaluate unidirectional control for outbound telemetry
A data diode hardware/software control guarantees outbound flow while blocking inbound network entry vectors.
Prevents command-and-control (C2) or inbound attack vectors from entering the legacy segment.
3
Select isolation and administrative transit controls
Combining VLAN microsegmentation with a jump box restricts East-West movement and enforces authenticated, audited access.
Protects legacy endpoints from compromised workstation subnets while enabling legitimate maintenance.

Anahtar Kavram

Legacy system network isolation using microsegmentation, jump boxes, and data diodes
Tahmini Süre:2m 0s
Soru 578Soru

An enterprise security architect is evaluating system hardening controls to address findings from a comprehensive technical vulnerability audit. Match each enterprise hardening practice on the left to its corresponding primary risk mitigation objective on the right.

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

Öğeler

Implementation of eBPF (Extended Berkeley Packet Filter) runtime hooks
Automated deployment of ephemeral short-lived access credentials
Configuration of DNS RPZ (Response Policy Zone) sinkholing
Enforcement of ASLR (Address Space Layout Randomization) paired with DEP/NX flags

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

eBPF runtime hooks match kernel-level system call monitoring and container breakout detection. Automated ephemeral credentials match reducing the exposure window of stolen service tokens. DNS RPZ sinkholing matches blocking outbound C2 domain resolution. ASLR with DEP/NX flags matches neutralizing buffer overflow and code injection exploits.
Each listed hardening control addresses a distinct technical attack vector: eBPF monitors kernel system calls to stop privilege escalation and container escapes; ephemeral access tokens limit credential abuse duration; DNS RPZ intercepts malicious outbound domain queries; and ASLR paired with DEP prevents buffer overflow code execution.

Adım Adım Çözüm

1
Analyze the technical operation of eBPF instrumentation.
Determined that eBPF runs sandboxed programs directly within the Linux kernel to trace system calls and enforce container security limits.
Kernel-level visibility directly addresses host and container runtime hardening.
2
Evaluate the risk reduction mechanism of short-lived ephemeral credentials.
Identified that enforcing short validity periods limits credential reuse opportunities during token leakage incidents.
Identity hardening focuses on minimizing threat actor persistence windows.
3
Determine the functional role of DNS Response Policy Zones (RPZ).
Recognized that RPZ filters and redirects DNS lookups for known malicious domains before outbound network connections complete.
Network egress hardening prevents malware C2 callback channels.
4
Examine memory protection controls ASLR and DEP/NX.
Confirmed that memory address randomization combined with non-executable stack/heap flags thwarts exploit payloads relying on static memory offsets.
OS memory hardening prevents binary corruption exploits.

Anahtar Kavram

Enterprise mitigation techniques across kernel runtime security, identity lifecycle management, network egress filtering, and OS memory protection.
Soru 579Soru

A security technician is tasked with implementing host-level hardening controls on enterprise web servers. Which of the following technical mitigation practices directly reduce the host's attack surface? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Disabling unneeded background services and unused network daemons; Enforcing application allowlisting to restrict unauthorized binary execution

Cevap

Disabling unneeded background services and network daemons, as well as enforcing application allowlisting, directly reduce the host's attack surface.
Disabling unneeded services removes active software components and open ports that attackers could target, directly shrinking the attack surface. Enforcing application allowlisting ensures that unapproved or malicious software cannot execute on the host even if uploaded, providing effective endpoint defense.

Adım Adım Çözüm

1
Identify the primary objective of host attack surface reduction.
Recognize that minimizing exposure involves removing unnecessary entry points and blocking unauthorized executable code on the server.
Hardening a host requires reducing active listening ports/services and enforcing strict software execution policies.
2
Evaluate host-level technical mitigation techniques.
Select disabling unnecessary services/daemons and implementing application allowlisting as valid host-level hardening controls.
These controls directly mitigate risk on the host system itself.
3
Distinguish host hardening controls from perimeter defenses and deception mechanisms.
Reject options that misapply perimeter firewalls for patching or treat honeypots as inline filtering devices.
Firewalls do not fix code flaws, and honeypots collect threat intelligence rather than blocking inline traffic.

Anahtar Kavram

Host Hardening and Attack Surface Reduction
Soru 580Soru

A healthcare software provider hosts its primary electronic health record (EHR) database within an on-premises data center while leveraging a public cloud Infrastructure as a Service (IaaS) environment for high-throughput batch analytics. The environments are linked via a dedicated direct network connection. During a security baseline review of the public cloud IaaS infrastructure, the security architect must clarify operational duties under the cloud shared responsibility model. Which of the following security controls remains the sole responsibility of the healthcare software provider within the public cloud IaaS segment?

Cevabı ve açıklamayı göster

Cevap: Applying security patches to guest operating systems and configuring virtual instance firewall rules.

Cevap

Applying security patches to guest operating systems and configuring virtual instance firewall rules is the sole responsibility of the cloud customer in an IaaS environment.
In Infrastructure as a Service (IaaS), the cloud provider guarantees the availability and security of the physical infrastructure, facility, storage hardware, and hypervisor virtualization layer. The customer maintains full operational control—and security obligation—over the guest operating systems, installed applications, data classification, identity management, and virtual networking rules (such as instance firewalls and security groups).

Adım Adım Çözüm

1
Identify the cloud deployment and service model described in the scenario.
The architecture uses a hybrid deployment model integrating on-premises facilities with public cloud Infrastructure as a Service (IaaS).
The shared responsibility matrix differs significantly depending on whether the service model is IaaS, PaaS, or SaaS.
2
Analyze the distribution of duties between the Cloud Service Provider (CSP) and the customer under IaaS.
The CSP manages physical security, hardware infrastructure, storage facilities, and hypervisor virtualization layers. The customer manages guest operating systems, application stacks, data protection, access controls, and network configurations.
IaaS provides raw compute resources, placing OS maintenance and logical network boundaries under customer ownership.
3
Evaluate the options against the customer responsibility boundary.
Guest OS patching and virtual firewall configurations sit squarely on the customer side of the responsibility line.
The CSP does not have administrative access inside customer virtual machine operating systems.

Anahtar Kavram

Cloud Shared Responsibility Model in Infrastructure as a Service (IaaS)
ÖncekiSayfa 29 / 112Sonraki
Tüm alıştırma soruları — CompTIA Security+ | Examkin