Tüm alıştırma soruları

2232 soru

Soru 341Soru

A security engineering team is designing a vulnerability assessment and security testing strategy for a cloud-native microservices application processing sensitive payment data. To comply with enterprise governance, the testing pipeline must evaluate software components early in the development lifecycle without causing service instability, and inspect containerized workloads for known software vulnerabilities before deployment. Which of the following security assessment methods and testing controls should the team implement to fulfill these requirements? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Integrate Static Application Security Testing (SAST) into the source code repository pipeline to analyze uncompiled code for security flaws prior to build execution.; Perform authenticated vulnerability scanning against container images stored in the container registry prior to production deployment.

Cevap

The correct testing controls are integrating Static Application Security Testing (SAST) into the source code pipeline and performing authenticated vulnerability scanning on container images in the registry.
Integrating Static Application Security Testing (SAST) allows developers to analyze uncompiled source code for security vulnerabilities early in the development lifecycle (shift-left approach). Additionally, authenticated vulnerability scanning of container images within a container registry ensures that underlying operating system packages, embedded libraries, and application dependencies are thoroughly checked for known vulnerabilities prior to deployment into production microservices clusters.

Adım Adım Çözüm

1
Identify early lifecycle testing requirements for source code analysis.
Static Application Security Testing (SAST) evaluates source code without executing the application, identifying vulnerabilities before build artifacts are created.
Meets the requirement for shifting security left in the CI/CD pipeline.
2
Determine container workload assessment methods prior to runtime.
Authenticated container registry scanning audits image layers, OS packages, and dependencies for known CVEs before deployment.
Ensures unpatched or vulnerable container images are barred from entering production microservices clusters.
3
Evaluate and discard disruptive or misconfigured control methods.
Active production fuzzing, inline honeypot payload filtering, and perimeter firewalls fail to meet non-disruptive software vulnerability assessment requirements.
Eliminates improper tool deployment and disruptive testing techniques in production environments.

Anahtar Kavram

Vulnerability Assessment and Security Testing Methods Across CI/CD and Container Pipelines
Soru 342Soru

An enterprise organization is migrating a monolithic legacy application to a cloud-native microservices architecture. To maintain security governance during continuous integration and continuous deployment (CI/CD) updates, the Security Advisory Board is revising the organization's change control procedures. Which of the following technical and procedural requirements must be integrated into the change management workflow to evaluate and mitigate security impacts effectively? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Embedding automated static and dynamic security testing gates into the build pipeline to evaluate code changes before deployment approval; Establishing immutable baseline configuration repositories paired with automated drift detection to identify unauthorized system modifications

Cevap

The correct requirements are embedding automated static and dynamic security testing gates into the build pipeline and establishing immutable baseline configuration repositories paired with automated drift detection.
Integrating automated security testing gates directly into deployment pipelines ensures code changes undergo rigorous vulnerability evaluation prior to deployment, while maintaining immutable configuration baselines with automated drift detection guarantees that any unauthorized operational changes are identified and remediated promptly.

Adım Adım Çözüm

1
Evaluate pre-implementation change validation controls for modern CI/CD software pipelines.
Integrating automated static (SAST) and dynamic (DAST) testing into pipeline build stages enforces mandatory security impact analysis prior to production promotion.
Pre-deployment automated testing prevents vulnerable or non-compliant code from reaching live environments without proper security assessment.
2
Evaluate post-implementation integrity controls and baseline maintenance requirements.
Configuring baseline repositories with automated drift detection continuously cross-checks active infrastructure state against approved change records.
Drift detection ensures all systems remain within authorized security postures and alerts administrators to out-of-band or malicious modifications.
3
Analyze incorrect procedural and technical shortcuts against change management principles.
Emergency changes still require retrospective Change Advisory Board (CAB) validation, and perimeter firewall rules cannot replace proper application patch and change testing.
Governance frameworks mandate full documentation of emergency workflows, while control selection must address root causes rather than applying external workarounds.

Anahtar Kavram

Change Management and Security Impacts
Soru 343Soru

An Endpoint Detection and Response (EDR) agent alerts security personnel that files across a shared network drive are rapidly being encrypted and appended with a custom `.locked` file extension. In addition, a text file demanding payment in exchange for a decryption key has been placed in each affected directory. Which of the following malware types is most likely responsible for this activity?

Cevabı ve açıklamayı göster

Cevap: Ransomware

Cevap

Ransomware is the malware type responsible for encrypting files and placing ransom notes.
The correct answer is Ransomware because the defining characteristics of ransomware include unauthorized encryption of user or system files followed by extortion demands (such as ransom text files) detailing payment instructions to retrieve decryption capabilities.

Adım Adım Çözüm

1
Analyze the technical indicators presented in the security alert.
Identified file encryption (addition of `.locked` extensions) and the presence of text files containing payment instructions for a decryption key.
These indicators directly align with data extortion tactics.
2
Correlate identified indicators of compromise (IoCs) with standard malware classifications.
Confirmed that malicious file encryption combined with financial extortion is the defining behavior of ransomware.
Other malware categories like worms, Trojans, or rootkits serve different primary functions such as self-replication, covert access, or stealth.

Anahtar Kavram

Ransomware Indicators of Compromise
Soru 344Soru

A system administrator needs to perform a vulnerability assessment on a public web server to determine what exposed services and flaws can be discovered by an unauthenticated external attacker without administrative privileges. Which of the following assessment methods should the administrator execute?

Cevabı ve açıklamayı göster

Cevap: Non-credentialed vulnerability scan

Cevap

Non-credentialed vulnerability scan
A non-credentialed vulnerability scan evaluates host endpoints and network services across network boundaries without authenticating to the operating system, accurately representing the view of an external unauthenticated attacker.

Adım Adım Çözüm

1
Identify the objective of the assessment
The goal is to evaluate exposed services and vulnerabilities from the perspective of an unauthenticated external threat actor.
Understanding the threat model determines whether privileges should be provided during testing.
2
Select the appropriate scanning methodology
A non-credentialed vulnerability scan probe endpoints across the network without system credentials.
Non-credentialed scans replicate what an outside attacker without account access can see and exploit.

Anahtar Kavram

Credentialed vs. Non-Credentialed Vulnerability Scanning
Soru 345Soru

During a routine incident investigation, a security analyst reviews web application gateway logs for a custom automated reporting microservice. The logs contain consecutive HTTP POST requests targeting the endpoint `/api/v1/generate-report` with the body payload `template_header={{7*7}}`, which returned a `200 OK` status with `49` rendered in the response preview. Subsequent log entries show the payload modified to `template_header={{self.__init__.__globals__['__builtins__']['__import__']('os').popen('id').read()}}`, which returned operating system user identity context. Which of the following vulnerabilities is present in the application, and what is the primary mitigation strategy to prevent exploitation?

Cevabı ve açıklamayı göster

Cevap: Server-Side Template Injection (SSTI); enforce strict context-aware input sanitization, separate user data from template logic, and utilize sandboxed execution environments.

Cevap

The application is vulnerable to Server-Side Template Injection (SSTI). The primary mitigation is to enforce strict input sanitization, separate user input from template logic, and execute template processing within a sandboxed environment.
The option identifying Server-Side Template Injection (SSTI) correctly diagnoses the vulnerability. SSTI occurs when an application embeds unvalidated user input directly into a server-side template string prior to rendering. The initial probe (`{{7*7}}` evaluating to `49`) proves that template syntax is being evaluated on the server, while the follow-up payload uses object reflection to invoke system commands (`os.popen`), leading to remote code execution. Safe implementation requires separating user data from template layout, sanitizing inputs, and utilizing sandboxed rendering engines.

Adım Adım Çözüm

1
Analyze the log entries for payload characteristics and application response behaviour.
The initial string `{{7*7}}` evaluated mathematically to `49` on the server side, confirming that the server processes mathematical operations within expression delimiters.
Testing simple mathematical operations within template brackets (such as double curly braces) is a standard diagnostic method to detect active template engine expression evaluation.
2
Evaluate the secondary payload `{{self.__init__.__globals__...}}` to determine the severity and scope of the exploit.
The secondary payload leveraged Python reflection mechanisms to reach the underlying `os` module, executing `id` command-line calls directly on the host operating system.
This confirms full Remote Code Execution (RCE) via Server-Side Template Injection rather than database querying or client-side script execution.
3
Identify the appropriate remediation controls for Server-Side Template Injection.
Disallow raw user input from being directly concatenated into template strings, implement logic-less templates, and run rendering engines in restricted sandboxes.
Preventing template engine access to underlying system reflection structures effectively closes the attack surface.

Anahtar Kavram

Server-Side Template Injection (SSTI)
Soru 346Soru

During an incident response investigation, a SOC analyst examines endpoint detection telemetry from a workstation alerting on suspected fileless malware execution involving process injection. Which of the following technical indicators of compromise (IoCs) specifically indicate that memory-only process injection using legitimate system binaries has occurred? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: A legitimate system process such as powershell.exe executing with base64-encoded command-line arguments to reflectively load payload code into RAM; An injected native host process such as lsass.exe establishing unexpected outbound network connections on non-standard remote ports

Cevap

The correct indicators are encoded PowerShell commands used to load payloads reflectively in RAM and native system processes (such as LSASS) initiating abnormal outbound network connections.
Fileless malware resides in volatile system memory and utilizes built-in tools (living-off-the-land) to avoid disk detection. Encoded PowerShell command lines executing reflective memory injection and trusted system processes initiating abnormal outbound network traffic are classic indicators of fileless process injection.

Adım Adım Çözüm

1
Analyze process execution parameters and command-line arguments.
Identify base64-encoded PowerShell execution designed to bypass disk-based scanning by loading payloads directly into memory.
Fileless malware relies on living-off-the-land binaries (LotLBins) like PowerShell to execute code without creating new executable files on disk.
2
Evaluate network behavior relative to expected process baselines.
Detect abnormal outbound connections originating from injected legitimate processes.
Process injection targets trusted system binaries (such as LSASS or Explorer); when injected, the process inherits network privileges and generates anomalous network telemetry.

Anahtar Kavram

Fileless Malware and Process Injection Indicators of Compromise
Soru 347Soru

An enterprise security architecture team is deploying a deception and disruption strategy within an operational technology (OT) network to detect unauthorized lateral movement and internal service discovery. The environment includes legacy industrial control systems, programmable logic controllers (PLCs), and human-machine interfaces (HMIs). Which of the following implementation practices should the team select to achieve high-fidelity threat detection while preventing operational disruption to production systems? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Deploying low-interaction honeypots on isolated subnets that emulate industrial control protocols to generate alerts upon any inbound connection attempt.; Placing decoy credentials and fake network path references into administrative host memory to serve as breadcrumbs leading attackers toward decoy systems.

Cevap

The correct practices are deploying low-interaction honeypots on isolated subnets that emulate industrial control protocols and placing decoy credentials or network references in administrative host memory as breadcrumbs.
Deploying low-interaction honeypots on isolated subnets that emulate industrial protocols provides a safe, non-intrusive method for capturing unauthorized network discovery in OT environments without placing real hardware at risk. Furthermore, placing decoy credentials and fake path references in host memory acts as breadcrumbs that steer adversaries away from production assets and into monitored deception traps during lateral movement.

Adım Adım Çözüm

1
Analyze the operational constraints and deception objectives in an industrial control environment.
Identified the need for non-disruptive detection mechanisms capable of capturing adversary reconnaissance and lateral movement without impacting production PLCs.
Legacy OT systems are highly sensitive to network traffic anomalies and cannot support intrusive inline controls.
2
Evaluate the low-interaction honeypot deployment strategy.
Isolated low-interaction honeypots simulating industrial protocols safely trap unauthorized connection attempts and yield high-fidelity alerts since legitimate traffic should never contact these decoy nodes.
Low-interaction honeypots reduce resource usage and eliminate operational risk to real physical equipment.
3
Evaluate host-based deception techniques using breadcrumbs.
Planting decoy credentials and fake network paths on host systems acts as breadcrumbs that direct attackers performing memory scraping or configuration enumeration toward deception traps.
Breadcrumbs manipulate adversary decision-making during post-exploitation reconnaissance.
4
Identify misconceptions regarding deception technology roles.
Rejected options that misclassify honeypots as inline filtering mechanisms or active vulnerability remediation agents.
Deception technology operates as a detective/intelligence control rather than an inline preventive firewall or active vulnerability management system.

Anahtar Kavram

Deception and Disruption Architecture in Specialized Networks
Soru 348Soru

A security analyst investigates an Endpoint Detection and Response (EDR) alert on an enterprise application server. Volatile memory triage reveals DLL function pointer hooking in system memory without corresponding binary files on disk, alongside a WMI event subscription executing an obfuscated PowerShell payload. Which of the following malware behaviors and indicators of compromise are characteristic of this specific incident? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Fileless malware execution utilizing living-off-the-land binaries (LotL) for payload delivery; Persistence established via OS management repository storage rather than traditional file system drop locations

Cevap

The attack exhibits fileless execution utilizing living-off-the-land binaries and establishes persistence via OS management repository storage (WMI) rather than traditional file system drop locations.
The scenario describes fileless malware that resides exclusively in volatile memory (RAM) and uses built-in administrative tools like PowerShell (living-off-the-land binaries) to execute commands. Persistence is achieved through WMI event subscriptions stored directly inside the system's management repository, avoiding standard disk file creation.

Adım Adım Çözüm

1
Analyze volatile memory artifacts and process indicators
DLL function pointer hooking occurring in RAM without accompanying disk binaries indicates a fileless/memory-only injection attack using system administrative processes (PowerShell).
Fileless malware executes directly in memory, leaving minimal traditional file-system artifacts and abusing native system binaries (LotL).
2
Evaluate the persistence mechanism
A WMI event subscription executes payloads directly via repository objects, eliminating the need to write standalone binary files to disk startup folders or standard registry run keys.
WMI repository persistence allows malicious code to trigger automatically while hiding outside traditional file monitoring paths.
3
Differentiate from worm and network filtering misconceptions
Self-propagating worms rely on automated network scanning/exploitation, while host firewall filtering relates to network access control configuration rather than host memory injection.
Targeted memory injection and WMI persistence represent distinct host-level stealth techniques rather than network propagation worms or firewall configuration changes.

Anahtar Kavram

Fileless Malware and Living-off-the-Land (LotL) Persistence via WMI
Tahmini Süre:2m 0s
Soru 349Soru

A cybersecurity analyst is conducting a threat model assessment for a renewable energy infrastructure firm. The analyst needs to accurately map different threat actor categories to their characteristic attributes, motivations, and attack vectors. Which of the following statements correctly align a threat actor category with its defining attributes and attack vectors? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Hacktivist groups are driven by political or ideological motivations and typically employ attack vectors such as web defacement and distributed denial-of-service (DDoS) attacks to gain publicity.; Insider threats possess legitimate organizational credentials or physical access, allowing them to bypass traditional perimeter security controls without launching external penetration vectors.

Cevap

Hacktivist groups are driven by political or ideological motivations and typically employ attack vectors such as web defacement and distributed denial-of-service (DDoS) attacks to gain publicity. Insider threats possess legitimate organizational credentials or physical access, allowing them to bypass traditional perimeter security controls without launching external penetration vectors.
The correct choices accurately describe hacktivists (driven by ideology and public disruption tactics like DDoS) and insider threats (leveraging existing legitimate access to bypass perimeter defenses).

Adım Adım Çözüm

1
Analyze the hacktivist threat profile.
Hacktivists are characterized by political or social motivations, leveraging high-visibility attack vectors like DDoS and defacement.
Aligning intent and vector confirms that this statement correctly describes hacktivist threat attributes.
2
Evaluate the script kiddie threat profile.
The statement incorrectly attributes nation-state level sophistication (zero-day supply chain development) to script kiddies.
Script kiddies lack advanced technical skills and rely on automated scripts.
3
Analyze the insider threat profile.
The statement accurately identifies that existing internal access allows insider threats to circumvent perimeter defenses.
Insider threats exploit pre-existing permissions rather than external intrusion vectors.
4
Evaluate the Shadow IT threat profile.
The statement misclassifies Shadow IT as state-sponsored APT activity rather than employee policy non-compliance.
Shadow IT originates from benign or convenience-driven internal adoption of unauthorized technology.

Anahtar Kavram

Threat Actor Attributes, Motivations, and Attack Vectors
Soru 350Soru

During an incident response triage, a SOC analyst reviews EDR telemetry and network logs from an endpoint suspected of compromise. The logs indicate that a compromised account spawned a PowerShell process executing base64-encoded commands directly in host RAM without writing any binary payload to the local file system. Simultaneously, the endpoint initiated a high volume of outbound DNS TXT requests containing high-entropy subdomains to an unknown external domain. Which of the following technical indicators of compromise (IoCs) specifically characterize this fileless malware attack operating via Living-off-the-Land (LotL) techniques? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: In-memory execution and API memory allocations without creating physical PE binary files on the disk; Covert command-and-control (C2) communications utilizing high-entropy DNS TXT tunneling requests

Cevap

The correct indicators are in-memory execution without physical file creation on disk and covert command-and-control communications via DNS TXT tunneling requests.
Fileless malware leverages legitimate system tools like PowerShell to execute malicious logic in memory without writing files to disk, avoiding file system detection. Concurrently, attackers use DNS TXT tunneling as a covert channel to bypass standard perimeter security by embedding C2 traffic within standard DNS lookups.

Adım Adım Çözüm

1
Analyze host-level EDR telemetry to identify process execution characteristics.
Confirm that PowerShell running encoded commands directly in RAM without dropping binary artifacts to disk indicates fileless Living-off-the-Land (LotL) execution.
Fileless techniques evade traditional disk signature scanners by operating entirely within process memory space.
2
Analyze network telemetry for data exfiltration and C2 beaconing patterns.
Identify high-volume DNS TXT queries with high entropy as DNS tunneling protocol misuse.
Threat actors encode data and commands inside subdomains of DNS requests to pass through firewalls that permit outbound port 53 traffic.
3
Evaluate and rule out non-applicable distractor mechanisms.
Differentiate memory-only fileless mechanisms from physical disk-backed worms/Trojans and misapplied network controls.
Disk file creation contradicts fileless attack definitions, and inbound firewall filtering cannot stop local process injection.

Anahtar Kavram

Fileless Malware and Indicators of Compromise (IoCs)
Tahmini Süre:2m 0s
Soru 351Soru

An IT administrator at a manufacturing company discovers that an employee installed an unauthorized third-party cloud storage application on a corporate desktop to transfer large file packages, bypassing corporate security policy. Which threat vector or security risk category best describes this situation?

Cevabı ve açıklamayı göster

Cevap: Shadow IT

Cevap

Shadow IT
Shadow IT encompasses any IT resources, cloud applications, or hardware introduced into an enterprise infrastructure without official security authorization. The employee's installation of unvetted cloud software to circumvent file transfer restrictions is a classic example of Shadow IT.

Adım Adım Çözüm

1
Analyze the activity described in the scenario.
An internal employee installed unvetted third-party cloud software on a corporate workstation to work around storage limitations.
Understanding who performed the action and whether it was authorized helps categorize the threat vector.
2
Map the observed behavior to standard threat actor and vector definitions.
The unauthorized adoption of technology services by internal personnel is defined as Shadow IT.
Shadow IT creates unmonitored security risks and data exposure vectors because the applications lack security team oversight and compliance checks.

Anahtar Kavram

Shadow IT as an Internal Threat Vector
Soru 352Soru

A company adopts a cloud solution where the cloud service provider maintains the underlying hardware, network infrastructure, operating systems, and runtime execution environments. The company's developers are only responsible for uploading and configuring their application code and data. Which cloud service model is described in this scenario?

Cevabı ve açıklamayı göster

Cevap: Platform as a Service (PaaS)

Cevap

Platform as a Service (PaaS)
Platform as a Service (PaaS) delivers underlying hardware, operating systems, and application execution runtimes managed by the cloud provider. The customer retains operational responsibility solely for application source code deployment and data configuration.

Adım Adım Çözüm

1
Identify the responsibilities assigned to the cloud service provider vs. the customer in the scenario.
The provider handles hardware, networking, operating systems, and runtime environments. The customer handles application code and data.
Evaluating the division of management tasks establishes the operational boundary.
2
Map the management boundary to the standard cloud service models.
Abstractions where the vendor supplies pre-configured runtime environments and OS maintenance while developers supply code correspond to Platform as a Service (PaaS).
PaaS abstracts lower-level OS and hardware administration so development teams can focus exclusively on application logic and data.

Anahtar Kavram

Cloud Service Models and Shared Responsibility Boundaries
Soru 353Soru

A security analyst is establishing a vulnerability management process for an enterprise network containing multiple isolated cloud VPCs and container worker nodes. The primary requirement is to continuously audit host operating system patch levels and missing security updates without generating network probe traffic or managing remote SSH/WinRM authentication credentials across network boundaries. Which of the following vulnerability assessment techniques best fulfills these requirements?

Cevabı ve açıklamayı göster

Cevap: Agent-based vulnerability scanning

Cevap

Agent-based vulnerability scanning is the correct choice as it evaluates host configurations locally without network probing or remote network authentication management.
Agent-based vulnerability scanning places a small software agent directly on the host machine. The agent performs local assessment of missing patches, system configurations, and installed software, reporting findings directly back to a management console. This eliminates the need for active network probing and avoids managing remote access credentials across network boundaries.

Adım Adım Çözüm

1
Analyze the scenario constraints: zero network scanning traffic, automated OS patch auditing, and no remote administrative network credential management across isolated networks.
Identified that network-centric probing and remote credentialed network logins are eliminated by the constraints.
Vulnerability scanning techniques vary in how they collect asset data—either over the network or locally on the endpoint.
2
Evaluate agent-based vulnerability scanning against the requirements.
Agent-based scanners reside on the host, execute inventory checks locally, and report results to a central console without needing network scan probes or remote network login credentials.
Agent-based architectures eliminate network probe overhead and cross-segment network authentication dependencies.

Anahtar Kavram

Agent-based vs. Network-based Vulnerability Assessment
Soru 354Soru

During a baseline security audit of an enterprise network infrastructure, a systems administrator discovers an operational network switch that is still functioning with factory-assigned administrative username and password credentials. Which of the following best classifies this host and infrastructure security weakness?

Cevabı ve açıklamayı göster

Cevap: Default configuration vulnerability

Cevap

Default configuration vulnerability
The correct answer highlights a default configuration vulnerability. Manufacturers ship networking equipment with standard, publicly documented credentials to allow initial setup. Failing to change these default settings during system hardening exposes the host or infrastructure device to trivial exploitation by attackers.

Adım Adım Çözüm

1
Identify the system state described in the scenario
The network switch is actively operating using factory-set administrative username and password credentials.
Security hardening baselines require changing factory defaults prior to deploying equipment into production.
2
Classify the security flaw using standard host and infrastructure vulnerability definitions
Leaving manufacturer settings, default accounts, or default passwords active constitutes a default configuration vulnerability.
Attackers frequently attempt well-known default credentials to gain unauthorized administrative access to network hardware.

Anahtar Kavram

Default Configurations in Host and Infrastructure Hardening
Soru 355Soru

During a comprehensive enterprise security architecture assessment of a cloud-native platform, an auditor identified several critical cryptographic and security control deficiencies across different operational subsystems. Match each identified security deficiency on the left with its corresponding root cause vulnerability or architectural flaw on the right.

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

Öğeler

A legacy API gateway accepting incoming TLS 1.0 connections using 3DES in cipher block chaining (CBC) mode with SHA-1 signatures.
An internal identity provider accepting JWT authentication tokens signed with asymmetric public keys evaluated under symmetric HMAC algorithms.
A microservices application cluster relying exclusively on corporate IP subnet filtering for service-to-service access without end-to-end identity checks.
An enterprise certificate authority storing root private keys directly on a standard server OS filesystem protected only by local DACLs.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The 3DES TLS gateway matches the Sweet32 collision weakness; the identity provider key mismatch matches the algorithm confusion vulnerability; the IP subnet microservices restriction matches the implicit perimeter reliance defect; and the Root CA key on filesystem matches the insecure key management lacking HSM protection.
Each security weakness is mapped to its underlying technical vulnerability: 3DES CBC and SHA-1 suffer from collision flaws (Sweet32); JWT public key verification under HMAC leads to algorithm confusion forgery; IP-based microservice boundaries suffer from perimeter-reliance defects; and software filesystem storage of Root CA keys represents weak key management lacking HSM protection.

Adım Adım Çözüm

1
Analyze the cryptographic cipher flaws in the legacy TLS configuration.
Identify that 3DES uses 64-bit blocks vulnerable to Sweet32 collision attacks and SHA-1 is cryptographically broken.
64-bit block ciphers in CBC mode expose session keys to collision attacks after approximately 32 GB of data.
2
Evaluate the authentication token key misconfiguration.
Recognize key confusion where public keys are treated as symmetric secrets to forge signatures.
In algorithm confusion attacks (e.g., RS256 swapped to HS256), the receiver verifies an HMAC using the public key, enabling signature forgery.
3
Examine the network segment access control strategy for microservices.
Identify perimeter reliance and failure to enforce Zero Trust microsegmentation and mutual TLS (mTLS).
Subnet IP checks create implicit trust zones susceptible to IP spoofing and lateral movement.
4
Review the PKI root private key storage mechanism.
Classify software-based private key storage without hardware isolation as inadequate key protection.
Root CA private keys require specialized cryptographic hardware (HSMs) to prevent unauthorized exfiltration.

Anahtar Kavram

Cryptographic and Security Control Weaknesses
Soru 356Soru

An enterprise hires a third-party security firm to audit its internal payment processing system. To maximize vulnerability discovery within a short two-week assessment window, the organization provides the auditors with complete network topology maps, source code repositories, and system configuration files prior to initiating testing. Which security testing methodology is being employed in this scenario?

Cevabı ve açıklamayı göster

Cevap: White-box testing

Cevap

White-box testing is being employed because the assessment team has been granted complete internal knowledge, including source code, system configuration files, and network diagrams.
White-box testing (also known as clear-box or structural testing) grants the assessment team complete knowledge of the system, including source code, internal design documentation, and configuration files. This enables deep vulnerability analysis and comprehensive code coverage within a restricted timeframe.

Adım Adım Çözüm

1
Analyze the information provided to the security assessment team
The team was given full architectural diagrams, source code access, host configurations, and network schematics.
Determining the level of internal knowledge granted defines the test methodology.
2
Map the level of visibility to standard security testing methodologies
Full internal visibility corresponds to white-box testing.
White-box testing allows complete structural transparency to assess vulnerabilities thoroughly within limited timelines.

Anahtar Kavram

Security Testing Methodologies (White-box vs. Gray-box vs. Black-box)
Soru 357Soru

During a post-incident security review of a critical enterprise server, system logs indicate that disk-based malware scanners and host integrity checks reported zero altered binaries or suspicious files on the file system. However, memory analysis reveals unauthorized code executing during early system initialization, hijacking the Volume Boot Record (VBR) execution path before the core operating system kernel load and security controls initialize. Which malware classification is directly indicated by this persistence and execution behavior?

Cevabı ve açıklamayı göster

Cevap: Bootkit

Cevap

Bootkit
A bootkit targets the early boot sequence (such as the MBR, VBR, or UEFI execution flow), granting execution control before the OS kernel and host security scanners load.

Adım Adım Çözüm

1
Analyze host telemetry and file system scan results
Discovered that all disk binaries are intact and verified clean, ruling out standard user-mode file-based malware.
Host security controls report clean signatures across file system paths.
2
Examine memory triage and early boot logs
Identified unauthorized execution occurring at the VBR level prior to OS kernel initialization.
The payload gains control before operating system security mechanisms are active.
3
Map execution artifacts to malware taxonomy
Malware targeting the MBR/VBR/UEFI boot chain to achieve pre-boot persistence is defined as a Bootkit.
Bootkits specifically target pre-kernel startup procedures to bypass OS-level integrity checks.

Anahtar Kavram

Bootkit Malware and Pre-Boot Indicators of Compromise
Soru 358Soru

During a threat analysis following an intrusion at an international maritime logistics company, security analysts discover that an adversary gained stealthy, persistent access to port scheduling control systems using custom zero-day exploits. Forensic evidence indicates the campaign was conducted over several months without causing immediate operational disruption, backed by extensive financial resources and targeted toward strategic intelligence gathering. Which threat actor type and attribute profile is most likely responsible for this attack?

Cevabı ve açıklamayı göster

Cevap: A nation-state threat actor possessing high sophistication, significant funding, and long-term strategic intent

Cevap

A nation-state threat actor possessing high sophistication, significant funding, and long-term strategic intent is responsible for this attack.
The correct answer identifies a nation-state threat actor. Nation-state adversaries possess high technical sophistication, significant funding, and long-term strategic goals, allowing them to acquire or craft custom zero-day vulnerabilities and maintain low-and-slow persistence without triggering immediate alarms.

Adım Adım Çözüm

1
Analyze the threat actor tactics, techniques, and procedures (TTPs) described in the scenario
Identified advanced capabilities including custom zero-day exploits, long-term stealth/persistence, and targeted intelligence gathering.
Determining the technical capability and operational method narrows down the actor's sophistication level.
2
Evaluate the resource level and motivation profile of potential threat actors
The presence of custom zero-days and multi-month covert operations indicates substantial financial backing and strategic intelligence motives.
Resource constraints and primary objectives differentiate nation-state APTs from hacktivists, insiders, or script kiddies.
3
Correlate TTPs and attributes to standard threat actor classifications
High sophistication, extensive resources, custom zero-day development, and stealthy strategic persistence align specifically with nation-state (APT) threat actors.
Nation-state actors are uniquely defined by these high-end attributes and long-term strategic focus.

Anahtar Kavram

Threat Actor Types, Attributes, and Motivations
Soru 359Soru

An enterprise network engineering team is preparing to deploy an automated microsegmentation policy across multi-tenant cloud virtual networks during a scheduled maintenance window. The submitted change request includes implementation timelines, interface configuration backups, and automated rollback scripts triggered by network latency thresholds. During the Change Advisory Board (CAB) security impact review, a security analyst notes that the backout plan restores default port settings but does not restore tenant isolation access control lists (ACLs) or cryptographic session states. Which of the following security risks is most likely to occur if this rollback plan is executed as written?

Cevabı ve açıklamayı göster

Cevap: The network environment could be left in an inconsistent configuration state with residual permissive access, exposing tenant workloads to unauthorized lateral movement.

Cevap

Executing a backout plan that fails to restore tenant access control lists and isolation rules leaves residual permissive configurations, introducing severe lateral movement risks.
A comprehensive security impact assessment during change management requires verifying that backout and rollback plans restore all security controls—including access control lists and tenant isolation rules—to a verified baseline state. Restoring network interface hardware settings without restoring security policy dependencies leaves the network in a permissive, insecure state, exposing systems to lateral movement.

Adım Adım Çözüm

1
Analyze the change management proposal and proposed backout procedure
Identified that the rollback script restores interface defaults but omits tenant ACL state restoration
Change management security impact assessments must evaluate backout scenarios as thoroughly as primary deployment steps
2
Evaluate the security impact of an incomplete rollback plan
Discovered that uncoordinated interface resets leave microsegmentation boundaries open or improperly defined
Security dependencies (such as ACL integrity and isolation boundaries) must be preserved during backout execution to maintain baseline protection
3
Determine the primary risk exposure resulting from CAB approval without remediation
Residual permissive rules create unauthorized network paths between isolated tenant workloads
Inconsistent state rollbacks compromise confidentiality and integrity by exposing assets to potential lateral movement

Anahtar Kavram

Security Impact Assessment of Rollback and Backout Plans in Change Control
Soru 360Soru

An enterprise facility relies on a legacy industrial control host running an End-of-Life (EoL) operating system that cannot receive vendor software patches. A vulnerability assessment reveals that this host communicates via unauthenticated embedded management protocols and resides on the same broad broadcast domain as employee workstations. Which of the following architectural strategies is the BEST mitigation to reduce threat exposure while ensuring continued operational functionality?

Cevabı ve açıklamayı göster

Cevap: Place the legacy system into an isolated network segment configured with microsegmentation and strict firewall access control lists (ACLs).

Cevap

The best mitigation is to place the legacy host into an isolated network segment with microsegmentation and strict access control lists.
Placing an End-of-Life (EoL) host into an isolated network segment using microsegmentation and strict firewall access control lists (ACLs) is the most effective compensating control. Because software patches are unavailable for EoL systems, network-level isolation prevents unauthorized endpoints on the corporate network from accessing exposed management services while permitting required operational traffic.

Adım Adım Çözüm

1
Analyze the constraint of End-of-Life (EoL) software.
Recognize that patch management is not viable because vendor patches do not exist.
Vulnerabilities in EoL host systems cannot be remediated directly at the operating system level.
2
Evaluate the architectural risk caused by flat network exposure.
Identify that positioning an vulnerable EoL host on the general corporate subnet exposes it to internal lateral movement.
Zero Trust principles mandate continuous verification and network containment regardless of internal positioning.
3
Select the appropriate compensating security control.
Implement network segmentation/microsegmentation and strict ACLs to isolate the host.
Isolating legacy architecture limits network access solely to authorized management endpoints, mitigating exposure without interrupting operations.

Anahtar Kavram

Host Isolation and Microsegmentation for Legacy Architecture Vulnerabilities
Tahmini Süre:2m 0s
ÖncekiSayfa 18 / 112Sonraki
Tüm alıştırma soruları — CompTIA Security+ | Examkin