Courseiva

(ISC)2 Information Systems Security Engineering Professional (CISSP-ISSEP, Aug 2025 blueprint) (ISC) (ISC) — Questions 151209

209 questions total · 3pages · All types, answers revealed

Page 2

Page 3 of 3

151
MCQeasy

What is the primary benefit of modularity in secure systems design?

A.Reduces the total number of lines of code
B.Eliminates the need for API gateways
C.Guarantees the system cannot be hacked
D.Facilitates security analysis and component isolation
AnswerD

Smaller, independent parts are easier to audit and secure.

Why this answer

Modularity allows for fault isolation and easier security verification of individual components.

152
MCQmedium

When designing for high availability and security, what is the best use of a Load Balancer (LB) from a security perspective?

A.Automatically patch all backend servers.
B.Remove the need for host-based firewalls.
C.Encrypt all backend data at rest.
D.Act as a centralized TLS termination and traffic inspection point.
AnswerD

Centralized inspection is a standard security design pattern.

Why this answer

A Load Balancer can serve as an SSL termination point, allowing the security team to inspect traffic for malware at a single, centralized ingress point.

153
Multi-Selectmedium

Which TWO of the following statements are true regarding the relationship between the System Security Plan (SSP) and the Plan of Action and Milestones (POA&M)?

Select 2 answers
A.The SSP identifies the controls to be implemented.
B.The SSP and POA&M are the same document.
C.The POA&M tracks the remediation of security gaps identified during the assessment.
D.The POA&M replaces the need for an SSP.
E.The SSP only needs to be updated when the system is decommissioned.
AnswersA, C

The SSP is the baseline requirement document.

Why this answer

The SSP defines the target security posture, while the POA&M tracks the remediation of items that fall short of that target (gaps). They work together to represent the security status of the system.

154
MCQmedium

An ISSEP is reviewing the security architecture for a system that handles PII. The system uses a centralized database for PII storage. What is the primary risk associated with this design pattern?

A.Incompatibility with cloud-based storage.
B.Increased latency for data retrieval.
C.Difficulty in performing data backups.
D.Increased risk of data exposure through a single point of compromise.
AnswerD

Centralization inherently increases the impact of a successful breach.

Why this answer

A centralized database creates a 'single point of failure' (or 'single point of compromise'), where an attacker gaining access to the database potentially compromises all stored PII at once.

155
MCQeasy

What is the primary objective of a 'Security Design Review' early in the lifecycle?

A.To finalize the user interface layout
B.To conduct penetration testing
C.To verify the system's performance metrics
D.To catch design-level security flaws early
AnswerD

Early detection reduces development costs and risk.

Why this answer

A design review aims to identify security flaws before they are implemented, as it is much cheaper to fix them in the design phase than during production.

156
MCQeasy

What is the primary risk of a 'Privileged User' who lacks proper oversight?

A.They will slow down system performance
B.They cannot do their job
C.They will always be hackers
D.They can bypass security controls and abuse access
AnswerD

High access levels require checks and balances.

Why this answer

Privileged users have significant access, so without oversight (separation of duties/auditing), they can perform malicious actions or make catastrophic errors.

157
MCQmedium

You are decommissioning an AWS EBS volume containing sensitive data. To comply with NIST SP 800-88, which action is required after logical deletion?

A.Perform a bit-level wipe using dd
B.Schedule the deletion of the associated KMS CMK
C.Run an Amazon Inspector scan
D.Reformat the filesystem using mkfs
AnswerB

Deleting the KMS key renders the data cryptographically shredded and unrecoverable.

Why this answer

AWS performs physical destruction of the underlying storage media when a volume is deleted; however, the cryptographic erasure via AWS KMS key deletion is the standard for secure disposal in the cloud.

158
Multi-Selectmedium

Which TWO of the following are common pitfalls when tailoring security controls in an RMF implementation?

Select 2 answers
A.Tailoring controls without documenting the security justification.
B.Over-tailoring controls to the point of compromising the system's baseline security.
C.Using the NIST 800-53 catalog to select controls.
D.Consulting with the System Owner during the tailoring process.
E.Including too many controls, which is always acceptable.
AnswersA, B

Documentation is a mandatory RMF requirement for tailoring.

Why this answer

Tailoring must be justified and documented. Pitfalls include excessive tailoring (reducing security too much) or lack of justification, which both undermine the compliance posture.

159
MCQmedium

When validating a server's compliance with hardening guidelines, which tool provides the most efficient way to check OS configuration against the DISA STIG?

A.Wireshark
B.SCAP Compliance Checker (SCC)
C.Microsoft Baseline Security Analyzer (MBSA)
D.Nmap
AnswerB

SCC is the official tool provided by DISA for automated STIG compliance verification.

Why this answer

SCAP Compliance Checker (SCC) is designed specifically to automate the verification of STIGs.

160
MCQhard

When managing a security-sensitive change in a regulated environment, why is 'Separation of Duties' applied to the 'Build' and 'Deploy' roles?

A.To simplify the audit process
B.To prevent unauthorized code injection
C.To reduce operational costs
D.To increase server performance
AnswerB

Separation ensures no single person controls the entire lifecycle.

Why this answer

Separation of duties prevents a single individual from introducing malicious code and deploying it into production, a critical control for integrity.

161
MCQhard

An organization uses an HSM to store root CA keys. As part of the annual validation, which action must be performed to confirm the HSM's physical security posture?

A.Verify the presence and integrity of tamper-evident seals on the chassis.
B.Perform an audit of the HSM's internal log files.
C.Verify the HSM firmware version against the manufacturer's website.
D.Test the HSM's response to an incorrect PIN retry threshold.
AnswerA

Physical security validation requires checking for signs of physical tampering or unauthorized access.

Why this answer

Physical tamper evidence is a critical component of HSM security validation.

162
MCQmedium

An ISSEP is tasked with securing an internal web application. Which headers should be implemented to prevent clickjacking?

A.X-Content-Type-Options: nosniff.
B.X-Frame-Options: DENY or SAMEORIGIN.
C.Strict-Transport-Security: max-age=63072000.
D.X-XSS-Protection: 1; mode=block.
AnswerB

These headers instruct browsers to prevent the site from being framed.

Why this answer

The X-Frame-Options or Content-Security-Policy (CSP) with 'frame-ancestors' are the standard headers used to prevent clickjacking.

163
MCQeasy

What is the primary objective of the 'Assessment' phase in the NIST RMF?

A.Document the risk acceptance by the authorizing official.
B.Define the system's security impact level.
C.Deploy security software to endpoints.
D.Verify that security controls are implemented correctly and operating as intended.
AnswerD

Verification is the goal of assessment.

Why this answer

The Assessment phase is dedicated to determining if the selected security controls are correctly implemented and operating as intended.

164
MCQmedium

An ISSEP is reviewing a cloud-based application that uses a multi-factor authentication (MFA) provider. The provider experiences an outage, and the system is configured to 'fail-open'. What is the security risk?

A.The security control is bypassed, allowing unauthorized access.
B.The system's performance will decrease.
C.The MFA provider will charge extra fees.
D.The system will be inaccessible to users.
AnswerA

Fail-open is a security failure when availability is prioritized over integrity/confidentiality.

Why this answer

A 'fail-open' configuration means that when a security control (MFA) is unavailable, the system grants access anyway, effectively bypassing the security requirement and creating a critical vulnerability.

165
Multi-Selecthard

Which THREE elements are required in a high-security access control policy?

Select 3 answers
A.Authentication and authorization conditions.
B.Definition of roles and permissions.
C.Specification of protected resources.
D.Employee home addresses.
E.Office kitchen menu.
AnswersA, B, C

Defines the enforcement logic.

Why this answer

Access control policies must define roles (who), resources (what), and the conditions (how/when) under which access is granted.

166
MCQmedium

When implementing FIPS 140-2/-3 validated cryptography in a system, what is the most important factor to verify?

A.Ensure the vendor claims the product is FIPS compliant.
B.Ensure the product is open source.
C.Verify the module is on the NIST CMVP validated list.
D.Verify the algorithms are AES-256.
AnswerC

Certification by NIST is the only way to ensure the module meets FIPS standards.

Why this answer

The cryptographic module must be explicitly listed on the CMVP (Cryptographic Module Validation Program) validated list, not just 'based on' an algorithm.

167
MCQmedium

When managing decommissioning of a cloud-native application, which document must be updated to reflect the removal of security controls?

A.User access manual
B.Help desk FAQ
C.System Security Plan (SSP)
D.Network topology diagram
AnswerC

The SSP must be updated to indicate that the system and its associated controls are retired.

Why this answer

The System Security Plan (SSP) is the authoritative document describing a system's security controls; removing a system requires updating this document to reflect the change in boundary.

168
MCQmedium

You are integrating security requirements into the Systems Engineering V-Model. At which stage should the Information Systems Security Engineer (ISSE) define the security functional requirements to ensure traceability to the system architecture?

A.Requirements Analysis
B.Detailed Design
C.System Integration and Testing
D.Operational Maintenance
AnswerA

Requirements analysis is the foundational stage where security constraints and functional needs are mapped to system goals.

Why this answer

Security requirements must be defined during the Requirements Analysis phase to ensure they are baked into the system design rather than added as an afterthought.

169
Multi-Selecthard

An ISSEP professional is reviewing an architecture for compliance with NIST SP 800-160, Systems Security Engineering. Which THREE of the following activities are core to the 'Trustworthiness' objective for an engineered system?

Select 3 answers
A.Hardware-based root of trust integration.
B.Prioritizing feature release speed over security patches.
C.Iterative vulnerability assessment and remediation.
D.Continuous verification of security property enforcement.
E.Outsourcing all security monitoring to third-party providers.
AnswersA, C, D

Establishing a foundational level of trust within the hardware layer.

Why this answer

Trustworthiness is built through robust design, consistent verification, and proactive mitigation of vulnerabilities throughout the lifecycle.

170
MCQeasy

Which of the following is an example of an 'Administrative' security control?

A.Incident Response Plan
B.Security guard
C.Biometric scanner
D.Firewall rules
AnswerA

Policies and plans are administrative controls.

Why this answer

Administrative controls focus on policies, procedures, and guidelines, such as an incident response plan.

171
MCQeasy

What is the primary goal of the 'Authorization' phase in the NIST RMF?

A.To patch all identified vulnerabilities.
B.To define the system's security controls.
C.For the Authorizing Official to formally accept the system's risk.
D.To set up the monitoring tools.
AnswerC

Formal risk acceptance is the key outcome of this phase.

Why this answer

The authorization phase is where the Authorizing Official (AO) reviews the security documentation and decides whether to accept the risk associated with operating the system.

172
MCQmedium

An organization is adopting ISO 27001. Which document is required to justify the inclusion or exclusion of specific controls?

A.Risk Assessment Report (RAR).
B.System Security Plan (SSP).
C.Statement of Applicability (SoA).
D.Business Impact Analysis (BIA).
AnswerC

The SoA is a core requirement for ISO 27001 certification.

Why this answer

The Statement of Applicability (SoA) is the required document in ISO 27001 that outlines which controls are applicable and provides justifications for those that are excluded.

173
MCQmedium

A system is undergoing accreditation. You need to verify that automated vulnerability scanning is occurring on a recurring basis. Which artifact provides the best evidence?

A.A series of scan reports spanning the required frequency interval.
B.A copy of the security policy document.
C.An email from the security team confirming they run scans.
D.A screenshot of the vulnerability scanner dashboard.
AnswerA

Evidence of consistent, recurring scan reports is the strongest proof of operational compliance.

Why this answer

Scheduled task logs or scan reports with time-stamped evidence are the best way to verify recurring operations.

174
Multi-Selectmedium

You are validating the security of a web application. Which TWO of the following actions verify that input validation is effective against SQL injection?

Select 2 answers
A.Attempting to input common SQL injection characters (e.g., ') in application fields.
B.Verifying that the database administrator account has full system access.
C.Reviewing source code for the use of parameterized queries or prepared statements.
D.Ensuring the website uses SSL/TLS for all traffic.
E.Checking that the web server is running on the latest patch version.
AnswersA, C

Manual testing confirms if the application successfully sanitizes or rejects malicious input.

Why this answer

Using parameterized queries and reviewing input filter logic are the two most effective ways to verify SQLi defenses.

175
MCQeasy

During a system engineering project, an ISSEP discovers that a vendor-provided API lacks robust authentication. Which risk management strategy is best suited for this vulnerability when the API cannot be updated by the development team?

A.Accept the risk because the API is internal-facing.
B.Disable the API entirely.
C.Encapsulate the API behind an authenticated API gateway that enforces OAuth 2.0.
D.Monitor API logs for suspicious activity.
AnswerC

The API gateway acts as a security proxy, effectively shielding the vulnerable legacy API.

Why this answer

In engineering, when a component is inherently vulnerable, compensating controls like API gateways that perform authentication and authorization can effectively mitigate the risk without modifying the legacy component.

176
MCQeasy

When validating the security implementation of a Cisco ASA firewall, which command provides the most accurate verification of the currently applied Access Control List (ACL) to a specific interface?

A.show run interface
B.show version
C.show access-list
D.show interface status
AnswerC

This command displays the ACL entries and their hit counts, allowing you to verify traffic filtering.

Why this answer

The 'show access-list' command displays the ordered list of rules and their hit counts, which is vital for validation.

177
Multi-Selecthard

Which THREE methods can be used to ensure high availability for a database in a secure architecture?

Select 3 answers
A.Multi-region deployment.
B.Active-passive clustering.
C.Ignoring error logs.
D.Data replication to secondary instances.
E.Running the database on a single server.
AnswersA, B, D

Protects against regional service outages.

Why this answer

Active-passive failover, replication (read replicas), and multi-region deployment are the standard HA methods for databases.

178
MCQmedium

A legacy database must be decommissioned. You need to ensure the data is retrievable for 7 years for regulatory compliance. Which strategy is most secure?

A.Copy to an unencrypted thumb drive
B.Delete the database server
C.Move to WORM media
D.Store on a public cloud share
AnswerC

WORM provides integrity and satisfies long-term retention requirements.

Why this answer

Moving data to offline, immutable storage (WORM) ensures compliance with retention policies while protecting against unauthorized modification or deletion.

179
MCQmedium

When designing a system for 'Non-repudiation', which technical control is essential?

A.Digital signatures
B.Basic username/password authentication
C.Hashing only
D.Symmetric encryption
AnswerA

Signatures provide cryptographic proof of origin.

Why this answer

Digital signatures using public-key cryptography ensure that a message or transaction can be linked to a specific user and not disavowed.

180
MCQmedium

An ISSEP is conducting a risk assessment for a system that will be hosted in a multi-tenant cloud environment. Which risk is unique to the multi-tenancy model?

A.Risk of cross-tenant data leakage via side-channel attacks.
B.Risk of unauthorized access by the cloud provider's employees.
C.Difficulty in performing system backups.
D.Risk of data loss due to provider bankruptcy.
AnswerA

Side-channel attacks are a primary risk in shared resource environments.

Why this answer

The 'noisy neighbor' or cross-tenant data leakage risk is inherent to multi-tenant architectures where shared hardware/hypervisor resources could potentially be exploited to access data from another tenant.

181
MCQeasy

What is the primary purpose of a 'Sanitization' process in the context of system decommissioning?

A.To format the disk for reuse
B.To prevent data recovery after asset disposal
C.To clean the hardware of dust
D.To update the operating system
AnswerB

The primary goal is preventing unauthorized data access.

Why this answer

Sanitization is the process of removing data from storage media such that the data cannot be reconstructed by any forensic means.

182
MCQmedium

You are configuring a CI/CD pipeline in GitLab to ensure security-critical changes are verified. Which mechanism ensures that only authorized engineers can merge changes to the master branch?

A.Global Runner tags
B.Pipeline schedules for automated auditing
C.Protected Branches with Merge Request approvals
D.Webhook integration with Jira
AnswerC

This feature enforces mandatory code reviews and restricts who can merge to the protected branch.

Why this answer

GitLab protected branches allow for granular permissions to restrict who can push or merge, which is a standard security control for change management.

183
MCQmedium

An ISSE is defining the 'Security Architecture' for an enterprise network. Which concept should be prioritized to ensure that an attacker who gains access to one segment cannot easily pivot to others?

A.Unified authentication store
B.Centralized logging
C.Network segmentation
D.Flat network topology
AnswerC

Segmentation isolates traffic and limits lateral movement.

Why this answer

Network segmentation and compartmentalization are essential for preventing lateral movement.

184
MCQeasy

When validating a firewall's implementation, what does checking the 'Implicit Deny' rule verify?

A.That the firewall is blocking all outgoing traffic.
B.That the firewall can handle high traffic volumes.
C.That the firewall is correctly logging denied packets.
D.That no traffic is allowed unless explicitly permitted.
AnswerD

This is the principle of least privilege in networking; verifying this rule confirms the default-deny posture.

Why this answer

The implicit deny rule is the final catch-all rule that drops all traffic not explicitly allowed.

185
Multi-Selecthard

During a security audit of a PKI implementation, which TWO of the following must be verified to ensure the integrity of the certificate chain?

Select 2 answers
A.All server certificates have the same serial number.
B.The CA server is joined to the domain.
C.All certificates are issued with 1024-bit RSA keys.
D.The Certificate Revocation List (CRL) is updated and accessible.
E.The Root CA private key is stored in an HSM.
AnswersD, E

Revocation is critical; if the CRL is unavailable, compromised certificates cannot be invalidated.

Why this answer

Verifying the Root CA and the Certificate Revocation List (CRL) are critical for PKI trust and validation.

186
MCQhard

In a Zero Trust architecture, what is the most critical function of a Policy Decision Point (PDP)?

A.Enforce the access decision on the network resource.
B.Monitor network traffic for anomalous behavior.
C.Store user authentication credentials.
D.Evaluate access requests based on context, identity, and policy to issue a decision.
AnswerD

This is the core definition and function of a PDP in a Zero Trust framework.

Why this answer

The PDP is the central engine that evaluates requests against security policies and context to make an 'allow' or 'deny' decision.

187
MCQmedium

When integrating security into the requirements phase, what is the value of 'Misuse Cases'?

A.They automate the generation of firewall rules
B.They replace the need for unit testing
C.They track the progress of development sprints
D.They provide insights into potential system threats
AnswerD

Misuse cases simulate attacker behavior to identify defensive needs.

Why this answer

Misuse cases define what a malicious actor might try to do to the system, helping to derive security requirements.

188
MCQhard

You are configuring a secure baseline for a server migration. Which NIST SP 800-53 control category covers 'System and Services Acquisition' regarding the maintenance of security-critical configurations?

A.AU-2 Audit Events
B.SA-10 Developer Configuration Management
C.SC-8 Transmission Confidentiality
D.AC-3 Access Enforcement
AnswerB

SA-10 covers the maintenance of security-relevant configuration items.

Why this answer

NIST SP 800-53 SA controls (System and Services Acquisition) specifically cover the lifecycle management, including initial configuration and security baseline maintenance.

189
MCQhard

You are designing an embedded system for a medical device. The device needs to store encryption keys securely. The hardware does not support a dedicated HSM or TPM. What is the most robust software-based alternative to protect these keys?

A.Use a password-based derivation function (PBKDF2) to store the keys.
B.Store the keys in a hardcoded configuration file.
C.Store the keys in the system's non-volatile memory (NVM) with XOR masking.
D.Utilize a TEE (e.g., ARM TrustZone) to isolate keys and perform cryptographic operations.
AnswerD

A TEE provides a hardware-isolated environment that protects keys even if the main OS is compromised.

Why this answer

In the absence of dedicated hardware, an obfuscated key store with a Trusted Execution Environment (TEE) or encrypted key wrapping utilizing a unique hardware-derived ID is the most secure software-centric approach.

190
Multi-Selecthard

Which THREE of the following are necessary to successfully implement Zero Trust in an existing enterprise environment?

Select 3 answers
A.Identity-based authentication.
B.Network micro-segmentation.
C.Using static IP addresses for all users.
D.Trusting all traffic behind the firewall.
E.Continuous monitoring and analytics.
AnswersA, B, E

Zero Trust assumes identity is the new perimeter.

Why this answer

Strong identity verification, micro-segmentation of the network, and continuous monitoring are the three pillars of a successful Zero Trust implementation.

191
MCQmedium

During a 'Design Review', an ISSE notices that the system architecture relies on 'Security through Obscurity'. Why is this considered an engineering flaw?

A.It makes the code too complex
B.It increases hardware costs
C.It provides no actual protection against determined attackers
D.It prevents auditing
AnswerC

Once the secret design is found, the protection vanishes.

Why this answer

Obscurity is not a reliable control; if the design is discovered (which it eventually will be), the system has no remaining security.

192
Multi-Selecthard

You are assessing an Engineered System for cloud-native vulnerabilities. Which THREE of the following are common misconfigurations in containerized environments that an ISSEP should identify?

Select 3 answers
A.Enforcing non-root execution for all production images.
B.Running the container process as the 'root' user.
C.Using the default 'latest' tag for container images in production.
D.Exposing the Docker socket (/var/run/docker.sock) to the container.
E.Implementing a read-only filesystem for the container.
AnswersB, C, D

Running as root allows container escapes to compromise the host OS.

Why this answer

Common container security issues include running as root, insecure communication between containers, and exposing management interfaces unnecessarily.

193
MCQmedium

When validating the security of a database implementation, how do you verify that sensitive data at rest is encrypted using Transparent Data Encryption (TDE)?

A.Check if the database folder has the 'encrypted' flag set in Windows File Properties.
B.Attempt to open the database file in a text editor.
C.Use the 'encrypt' command in the database shell.
D.Query the sys.dm_database_encryption_keys dynamic management view.
AnswerD

This view provides the encryption state for databases that have TDE enabled.

Why this answer

Verifying the system catalog or dynamic management views is the standard way to confirm TDE status.

194
Multi-Selecthard

Which THREE items should be included in a Post-Implementation Review (PIR) for a security change?

Select 3 answers
A.The total budget spent on the project
B.Confirmation that no new vulnerabilities were introduced
C.Updated audit documentation
D.List of employees who didn't like the change
E.Validation of security control effectiveness
AnswersB, C, E

Assessing for regressions or new attack vectors.

Why this answer

A PIR ensures the change achieved its goal, did not introduce new vulnerabilities, and met compliance requirements.

195
Multi-Selectmedium

Which THREE of the following are valid 'Authentication' factors?

Select 3 answers
A.Something you are (e.g., fingerprint)
B.Where you sit in the office
C.Something you know (e.g., password)
D.Something you have (e.g., hardware token)
E.Your mood at the time of login
AnswersA, C, D

Biometric authentication is a standard factor.

Why this answer

Authentication factors fall into categories: something you know, something you have, and something you are.

196
MCQmedium

During a penetration test of a web application, you identify an insecure direct object reference (IDOR). What is the most effective way to verify that your remediation via access control checks is successful?

A.Review the source code to ensure that the developer used a random UUID instead of sequential integers.
B.Run a vulnerability scanner to check for OWASP Top 10 compliance.
C.Execute automated authorization testing using a tool like Burp Suite Intruder to verify that non-authorized users receive a 403 Forbidden response.
D.Perform a manual cross-site scripting (XSS) payload injection to confirm input sanitization.
AnswerC

Intruder can be configured to iterate through object IDs while authenticated as different users to confirm access control enforcement.

Why this answer

Regression testing ensures that the fix addresses the vulnerability without breaking functionality.

197
MCQhard

During a validation exercise, you need to confirm that an application's logging mechanism is compliant with NIST SP 800-92. Which element must be verified?

A.Ensure every log entry contains a user ID, timestamp, and event outcome.
B.Check if logs are printed to the console.
C.Confirm that the logging level is set to 'DEBUG'.
D.Verify that all logs are stored in a database.
AnswerA

These fields are essential for accountability and forensic analysis as outlined in the guidance.

Why this answer

NIST SP 800-92 emphasizes that logs must include user IDs, timestamps, and success/failure status.

198
MCQmedium

A security engineer is validating the implementation of a TLS 1.3 configuration on an Nginx server. Which configuration directive must be verified to ensure only secure ciphers are used?

A.ssl_session_cache shared:SSL:10m;
B.ssl_prefer_server_ciphers on;
C.ssl_verify_client on;
D.ssl_protocols TLSv1.3;
AnswerD

Restricting the protocol to TLSv1.3 is the primary way to ensure modern, secure communication.

Why this answer

The 'ssl_protocols' and 'ssl_ciphers' directives are critical for TLS implementation verification.

199
MCQmedium

During the 'Engineering Process Integration' phase, an ISSE identifies that the legacy system lacks support for modern TLS 1.3 encryption. What is the most appropriate engineering response?

A.Forcibly inject TLS 1.3 into the binary
B.Ignore the finding because it is a legacy system
C.Document the risk and implement compensating controls
D.Immediately shut down the system
AnswerC

Compensating controls provide necessary security when native support is missing.

Why this answer

The ISSE should perform a gap analysis to determine if a compensating control can mitigate the risk until the legacy system can be upgraded or replaced.

200
Multi-Selecthard

Which THREE technologies are acceptable for the secure disposal of solid-state drives (SSDs)?

Select 3 answers
A.Physical shredding
B.Formatting the partition
C.Degaussing
D.Cryptographic erasure (Sanitize command)
E.Incineration
AnswersA, D, E

Shredding to small particles is the most secure disposal method.

Why this answer

NIST 800-88 suggests physical destruction, degaussing (if permitted, though not for SSDs), or cryptographic erasure for SSDs, though physical destruction is most definitive.

201
MCQmedium

In the context of the 'Common Criteria', what is the role of the 'Security Target'?

A.It replaces the need for a threat model
B.It is a marketing document for end users
C.It defines the operating system kernel
D.It serves as the contract between the vendor and the evaluator
AnswerD

The ST documents what the product claims to do security-wise.

Why this answer

The Security Target (ST) defines the security requirements and claims for a specific IT product, which are then evaluated against a Protection Profile.

202
Multi-Selectmedium

You are validating the security of a containerized environment (e.g., Docker). Which THREE of the following configurations should be checked for security compliance?

Select 3 answers
A.Check that all containers have unlimited CPU and memory allocation.
B.Ensure the host OS is Windows 98.
C.Ensure the container processes do not run as the root user.
D.Verify that containers are not running in privileged mode.
E.Confirm that all container images are pulled from a trusted registry.
AnswersC, D, E

Running as a non-privileged user limits the impact of a container escape.

Why this answer

Container security verification requires checking privilege levels, root usage, and image source trust.

203
MCQmedium

An ISSEP is performing a threat assessment for a mobile application. What is the biggest risk when using hardcoded API keys for third-party services within the app code?

A.Increased latency for API calls.
B.Easy extraction of keys through reverse engineering the binary.
C.The keys will expire too quickly.
D.The app will crash when the API is unavailable.
AnswerB

This is a classic vulnerability in mobile app development.

Why this answer

Hardcoded keys are easily extractable via reverse engineering the app binary, leading to unauthorized use of the third-party services and potential compromise of the developer's account.

204
MCQmedium

When configuring a 'Logging and Auditing' system, what is the most important consideration for 'Log Integrity'?

A.Including as much noise as possible
B.Storing logs only on the local server
C.Storing logs in plain text
D.Hashing and off-loading logs to a secure, write-only destination
AnswerD

Hashing detects changes; secure storage prevents deletion.

Why this answer

Logs must be protected from tampering; hashing and secure remote storage are standard methods to ensure they remain trustworthy.

205
MCQmedium

When applying the principle of Least Privilege, which technical implementation is most effective in a microservices architecture?

A.Role-Based Access Control (RBAC)
B.Attribute-Based Access Control (ABAC)
C.Discretionary Access Control (DAC)
D.Mandatory Access Control (MAC)
AnswerB

ABAC allows for fine-grained policy definition required for Least Privilege.

Why this answer

Attribute-Based Access Control (ABAC) provides granular control based on user, environment, and resource attributes, ideal for complex microservice environments.

206
MCQmedium

You are assessing a system for compliance with FIPS 140-3. You need to ensure that the cryptographic module being used for TLS termination on a load balancer meets specific physical security requirements. Where should you look for the validation status of the cryptographic module?

A.NIST CMVP Module Registry
B.Common Criteria Portal
C.CVE Database
D.ISO 27001 Annex A controls list
AnswerA

This registry is the definitive source for verifying if a specific cryptographic module is FIPS-validated.

Why this answer

The NIST Cryptographic Module Validation Program (CMVP) maintains the official registry of all FIPS-validated modules.

207
Multi-Selectmedium

Which TWO aspects of a system's lifecycle must be documented in the decommission plan?

Select 2 answers
A.The original purchase price of the equipment
B.The name of the vendor's CEO
C.Data sanitization method applied
D.The color of the server casing
E.Removal from the hardware and software inventory
AnswersC, E

Provides evidence that data was handled securely.

Why this answer

A decommissioning plan must ensure data is properly handled and that the asset is removed from all relevant inventories for regulatory compliance.

208
MCQhard

When disposing of SSDs that contain PII, why is traditional degaussing ineffective?

A.SSDs are not magnetic media
B.SSDs have internal encryption
C.SSDs are too thin
D.SSDs have wear leveling algorithms
AnswerA

SSDs use flash memory cells that do not rely on magnetic domains.

Why this answer

SSDs store data using floating gate transistors (NAND flash), which are not susceptible to magnetic fields, unlike traditional spinning disks.

209
MCQeasy

In the context of the NIST Risk Management Framework (RMF), which step involves the initial identification of security controls based on the system's impact level?

A.Implement
B.Select
C.Assess
D.Categorize
AnswerB

The Select step involves choosing the appropriate security controls for the information system.

Why this answer

Step 2 of the RMF is 'Select', where security controls are selected based on the categorization performed in Step 1.

Page 2

Page 3 of 3

All pages