Courseiva

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

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

Page 1

Page 2 of 3

Page 3
76
MCQhard

When evaluating a system's resilience to 'Supply Chain Attacks', what is the most important engineering practice to implement?

A.Implementing a Software Bill of Materials (SBOM)
B.Limiting the number of developers
C.Enforcing password complexity
D.Using only open-source software
AnswerA

SBOMs are critical for identifying vulnerable upstream dependencies.

Why this answer

Software Bill of Materials (SBOM) allows organizations to track and manage the components in their software, facilitating the identification of vulnerable third-party dependencies.

77
MCQeasy

You are verifying the implementation of disk encryption on a Windows server. Which command is used to confirm that BitLocker is active on the C: drive?

A.manage-bde -status C:
B.cipher /e
C.bitlocker-check
D.diskpart /info
AnswerA

The -status flag displays the encryption state of the specified volume.

Why this answer

manage-bde is the CLI tool for BitLocker administration.

78
Multi-Selectmedium

Which TWO of the following are essential components of a robust threat modeling process for an engineered system?

Select 2 answers
A.A detailed legal review of all contracts.
B.Creation of data flow diagrams (DFDs).
C.A complete inventory of all organizational personnel.
D.A list of all software vendors used by the organization.
E.The use of an established framework like STRIDE or PASTA.
AnswersB, E

DFDs are necessary to identify entry points and data paths.

Why this answer

Threat modeling requires understanding the system architecture (data flow diagrams) and identifying potential threats using established methodologies like STRIDE to systematically address risks.

79
Multi-Selecthard

An ISSEP is evaluating the security of an OT/ICS environment. Which THREE of the following are considered high-priority mitigation strategies to protect against common ICS cyber threats?

Select 3 answers
A.Implementing unidirectional gateways (data diodes) to isolate the control network.
B.Enforcing strict access control and MFA for all remote access to the ICS environment.
C.Replacing all legacy controllers with cloud-based instances.
D.Deploying standard IT-based patch management tools directly on all PLCs.
E.Disabling all unused physical ports and services on ICS controllers.
AnswersA, B, E

This ensures that traffic can only leave the control network, not enter it.

Why this answer

ICS security focuses on availability and integrity, requiring physical segmentation, secure remote access, and protecting the PLC/DCS controllers themselves from direct interference.

80
MCQhard

You are verifying the implementation of a FIPS 140-2 validated module in an on-premises Linux server. Which command correctly verifies that the cryptographic module is operating in the intended FIPS mode?

A.Inspect '/etc/fips.conf' for the FIPS_ENABLED=true directive.
B.Run 'cat /proc/sys/crypto/fips_enabled' and confirm the output is 1.
C.Check the status using 'systemctl status crypto-policy'.
D.Execute 'openssl verify -CApath /etc/ssl/certs' to validate certificate chains.
AnswerB

This kernel parameter directly indicates if the system cryptographic module is currently in FIPS mode.

Why this answer

The fips-mode-setup command or checking the kernel parameter is the standard way to verify the module state on RHEL-based systems.

81
MCQeasy

When considering 'System Availability', what is the primary advantage of a 'Load Balancer' in a security engineering context?

A.It provides redundancy and DoS mitigation
B.It caches all static content
C.It replaces the need for a firewall
D.It encrypts all traffic
AnswerA

Load balancers protect against overloading and improve availability.

Why this answer

Load balancers distribute traffic, preventing any single instance from being overwhelmed (a form of DoS mitigation) and allowing for maintenance without downtime.

82
MCQhard

You are designing a secure data enclave for highly sensitive research data. What is the most robust method to enforce physical and logical separation?

A.Shared storage with ACLs.
B.Physical air-gapping and hardware-level encryption with HSMs.
C.VLAN tagging and firewall rules.
D.Container isolation with restricted network access.
AnswerB

This provides both physical and cryptographic assurance.

Why this answer

Air-gapping (physical) combined with Hardware Security Modules (logical) provides the highest level of isolation for sensitive data.

83
Multi-Selecthard

When designing a system for 'High Integrity' (using the Biba model), which THREE rules must be enforced?

Select 3 answers
A.Simple Integrity Axiom (No Read Down)
B.Integrity Star (*) Axiom (No Write Up)
C.No Write Down
D.Invocation Property
E.No Read Up
AnswersA, B, D

This prevents reading less-trusted information.

Why this answer

Biba is the dual of Bell-LaPadula: No Read Down (integrity) and No Write Up (integrity).

84
Multi-Selecteasy

Which THREE factors must be evaluated when determining if a system component is 'security-critical'?

Select 3 answers
A.Its role in processing sensitive information
B.Its location in the physical facility
C.Its cost of procurement
D.Its capability to provide security services like auditing
E.Its ability to enforce access control policies
AnswersA, D, E

Components handling sensitive info require higher security assurance.

Why this answer

Security-critical components are those that enforce policy, handle sensitive data, or provide security functions.

85
Multi-Selecthard

Which THREE activities are essential when conducting a 'Security Impact Analysis' for a proposed system change?

Select 3 answers
A.Replacing all hardware in the data center
B.Reviewing existing security controls for degradation
C.Updating the system security plan
D.Renaming the system server hostname
E.Re-evaluating the risk to the system
AnswersB, C, E

Changes can inadvertently weaken security controls.

Why this answer

Impact analysis evaluates how changes affect existing controls, risk profiles, and system integrity.

86
MCQhard

During the design of a PKI hierarchy for a highly classified system, the ISSEP needs to ensure that the Root CA is kept offline. What is the most appropriate way to sign the Subordinate CA request?

A.Expose the Root CA via a restricted management port in the firewall.
B.Configure a secure VPN tunnel between the Subordinate CA and the Root CA to exchange the CSR.
C.Use an HSM to automatically sign the request from the Subordinate CA.
D.Transfer the CSR via air-gapped media to the offline Root CA, sign, and return the certificate.
AnswerD

This preserves the integrity of the Root CA by keeping it air-gapped.

Why this answer

To maintain an offline Root CA, the CSR from the Subordinate CA must be transferred via secure, out-of-band medium to the offline environment, signed, and the resulting certificate returned.

87
MCQeasy

Which document is used to track and manage vulnerabilities identified during the assessment phase of the RMF?

A.Risk Management Framework (RMF) Guide.
B.System Security Plan (SSP).
C.Security Assessment Report (SAR).
D.POA&M (Plan of Action and Milestones).
AnswerD

The POA&M is the standard NIST artifact for tracking remediation.

Why this answer

The POA&M (Plan of Action and Milestones) is the document used to track security weaknesses and the progress of remediation efforts.

88
Multi-Selecthard

Which TWO architectural patterns are considered best practices for securing cloud-native applications?

Select 2 answers
A.Hardcoded credentials in application code
B.Zero-trust network architecture
C.Public access to all S3 buckets
D.Monolithic application architecture
E.Infrastructure as Code (IaC) with security scanning
AnswersB, E

Zero-trust assumes no network is inherently safe.

Why this answer

Cloud security relies on zero-trust and defense-in-depth principles implemented through infrastructure-as-code and micro-segmentation.

89
MCQmedium

You are auditing the implementation of an API Gateway. How do you verify that rate limiting is effectively preventing a DoS attack?

A.Use a vulnerability scanner to check for OWASP API vulnerabilities.
B.Review the API Gateway configuration files for the 'rate_limit' keyword.
C.Monitor the CPU usage of the backend server.
D.Send a flood of requests exceeding the defined rate limit and verify that the API returns a 429 Too Many Requests status code.
AnswerD

429 is the standard response for rate limiting, confirming the policy is active and functional.

Why this answer

Testing rate limiting involves exceeding the defined threshold to see if the gateway returns the correct error code.

90
MCQmedium

You are performing a 'Sanitization' of a drive according to NIST 800-88. If the drive is 'Clear' status, what does this imply?

A.Hardware degaussing
B.Cryptographic erasure
C.Logical sanitization
D.Physical destruction
AnswerC

Clear is a logical sanitization process for user-addressable locations.

Why this answer

The 'Clear' method uses logical techniques (like overwriting) to sanitize data in user-addressable storage locations, ensuring it cannot be recovered through simple file recovery tools.

91
MCQmedium

An ISSEP is reviewing the 'Maintain' phase of the RMF for a system that has undergone a significant software update. What is the most critical activity to ensure that the system's security posture remains intact?

A.Conduct a Security Impact Analysis (SIA) to determine the extent of the changes.
B.Perform a full system penetration test.
C.Notify the system users of the update.
D.Update the system backup schedule.
AnswerA

The SIA is the formal RMF process for evaluating the impact of changes on the existing security controls.

Why this answer

Following a significant change, a re-assessment (or targeted assessment) is required to ensure that the security controls remain effective and that new vulnerabilities have not been introduced.

92
MCQhard

An ISSEP is designing a secure CI/CD pipeline. Which technique is most effective for preventing secrets (e.g., API keys) from being committed to the source code repository?

A.Rotate all secrets after every deployment.
B.Use environment variables for all configuration.
C.Delete the repository history periodically.
D.Implement pre-commit hooks to scan for patterns of secrets.
AnswerD

This prevents secrets from entering the repository at the source.

Why this answer

Pre-commit hooks and automated secret scanning tools (e.g., git-secrets or GitHub Advanced Security) are the most effective preventive controls.

93
Multi-Selecthard

Which THREE components are necessary to define a complete 'Security Policy' for an enterprise system?

Select 3 answers
A.Standards and procedures
B.Office cleaning schedule
C.Guidelines (best practices)
D.High-level policy statements
E.Employee salary structure
AnswersA, C, D

These define the mandatory and consistent actions.

Why this answer

Policies must define the 'what' (High-level), the 'how' (Standards/Procedures), and the 'how-to' (Guidelines).

94
MCQhard

When configuring AWS Security Groups for a multi-tier application architecture, an engineer must ensure that the web tier only communicates with the application tier on port 8080. Which configuration best adheres to the principle of Defense in Depth?

A.Set the application tier inbound rule to allow TCP 8080 from 0.0.0.0/0.
B.Use an IP-based rule in the application tier Security Group referencing the private IP of the web tier instances.
C.Set the application tier inbound rule to allow TCP 8080 from the specific Security Group ID of the web tier.
D.Set the application tier inbound rule to allow TCP 8080 from the CIDR block of the VPC.
AnswerC

Security Group referencing is the most secure and scalable method for inter-tier communication.

Why this answer

Referencing the Security Group ID of the web tier within the inbound rules of the application tier's Security Group ensures only traffic from authorized instances is accepted, regardless of IP changes.

95
MCQhard

When engineering a cryptographically secure system, what is the primary risk associated with custom cryptographic implementations?

A.It lacks the rigorous peer review of standard algorithms
B.It makes key management too difficult
C.It is always too slow for real-time systems
D.It requires special hardware
AnswerA

Standard algorithms are vetted by the global community; custom ones are not.

Why this answer

Custom cryptography is prone to subtle implementation errors that are difficult to detect and often break the security of the underlying algorithm.

96
MCQhard

In the context of 'Systems Engineering', what does the term 'Security-Enforcing' mean regarding a system component?

A.It can be easily bypassed by users
B.It is a component that strictly applies security policies
C.It is a component that only audits traffic
D.It is a component that is optional for performance
AnswerB

Enforcing means the system will not allow operations that violate policy.

Why this answer

A security-enforcing component is one that actively mandates security policies, such as a reference monitor or a gatekeeper.

97
Multi-Selecthard

When designing a secure system architecture, which TWO of the following are primary considerations for achieving the principle of 'Defense in Depth'?

Select 2 answers
A.Applying security controls at multiple architectural layers
B.Relying solely on perimeter authentication
C.Maximizing system throughput by minimizing encryption
D.Implementing a single high-availability firewall
E.Ensuring diversity in security technologies and controls
AnswersA, E

Layering is the core concept of defense in depth.

Why this answer

Defense in depth relies on layering security controls so that a single failure does not result in a total system compromise.

98
Multi-Selectmedium

Which TWO controls are recommended under NIST SP 800-53 for protecting data at rest in a high-impact system?

Select 2 answers
A.Role-Based Access Control (RBAC).
B.Storing data only in the local cache.
C.Disabling all audit logging.
D.Using cleartext storage for performance.
E.AES-256 encryption.
AnswersA, E

Ensures that only authorized users access the data.

Why this answer

Encryption (AES-256) and strong access controls (RBAC) are standard for high-impact data protection.

99
MCQmedium

An ISSEP is conducting a quantitative risk assessment for a mission-critical database. The Annualized Rate of Occurrence (ARO) is 0.5, and the Single Loss Expectancy (SLE) is $100,000. What is the Annualized Loss Expectancy (ALE)?

A.$200,000
B.$50,000
C.$500,000
D.$100,000
AnswerB

This is the correct calculation of SLE * ARO.

Why this answer

The ALE is calculated by multiplying the SLE by the ARO (100,000 * 0.5 = 50,000).

100
MCQhard

You are analyzing a proprietary SCADA system's threat landscape. The system uses a non-standard protocol that prevents the use of traditional deep packet inspection (DPI) tools. Which method provides the most effective risk reduction?

A.Enforce physical network isolation using unidirectional security gateways to separate the control network from the enterprise network.
B.Replace the proprietary protocol with OPC-UA to enable standard security monitoring.
C.Implement a host-based firewall on the SCADA master station.
D.Deploy an intrusion detection system (IDS) that uses behavioral pattern matching.
AnswerA

Data diodes physically prevent data ingress, effectively mitigating network-based threats when DPI is not an option.

Why this answer

When protocol-specific inspection is impossible, network segmentation and the implementation of unidirectional security gateways (data diodes) provide the highest assurance of protecting critical control systems from external threat vectors.

101
MCQeasy

What is the primary function of a Change Advisory Board (CAB) in an ITIL-based environment?

A.To perform technical code reviews
B.To manage hardware procurement
C.To conduct system testing
D.To authorize and prioritize changes
AnswerD

The CAB provides the governance required to authorize changes.

Why this answer

The CAB is responsible for assessing, prioritizing, and authorizing changes to prevent unauthorized or risky changes from impacting the environment.

102
Multi-Selectmedium

Which TWO of the following are acceptable ways to handle residual risk after implementing security controls in an RMF process?

Select 2 answers
A.Replace the entire system to eliminate the risk.
B.Transfer the risk via insurance or contractual arrangements.
C.Ignore the risk if it is below a certain threshold.
D.Accept the risk after documenting the decision and the potential impact.
E.Automate the assessment of the risk indefinitely.
AnswersB, D

Risk transfer is a valid risk management strategy.

Why this answer

Residual risk must be formally addressed by either the risk owner accepting it (based on analysis) or transferring it (e.g., insurance), as controls rarely eliminate all risk.

103
MCQmedium

An ISSEP is performing a supply chain risk assessment for an IOT-based sensor array. Which finding poses the highest systemic risk to the overall system integrity?

A.The sensor housing is not tamper-evident.
B.The sensors use an older version of Bluetooth.
C.The sensor firmware is not signed.
D.The vendor does not provide a Service Level Agreement (SLA).
AnswerC

Lack of code signing at the supply chain level is a critical vulnerability that allows malicious code to be executed on the system.

Why this answer

Supply chain integrity is compromised when the provenance of hardware or software cannot be verified, as this allows for the insertion of hardware Trojans or backdoors that bypass traditional security controls.

104
MCQeasy

What is the first step when preparing a system for secure disposal?

A.Inventory the assets
B.Run a virus scan
C.Physically destroy the hardware
D.Send it to recycling
AnswerA

Accurate inventory is the foundational step for any disposal lifecycle.

Why this answer

Creating an inventory ensures that all components, including peripherals and secondary storage, are accounted for prior to sanitization.

105
MCQhard

When validating a secure boot implementation on a server, which component should be verified in the UEFI firmware settings?

A.Validate the TPM version is 2.0.
B.Check that 'Legacy Boot' is set to 'Disabled'.
C.Verify that 'Secure Boot' is set to 'Enabled' and the 'Platform Key' (PK) is installed.
D.Ensure the system clock is synchronized with a secure NTP server.
AnswerC

Secure Boot relies on the PK to establish the trust chain for the firmware and OS bootloader.

Why this answer

Secure Boot validation requires ensuring the UEFI firmware is set to enforce digital signatures on bootloaders.

106
MCQhard

When conducting a security assessment of a system's 'Trusted Computing Base' (TCB), what is the most important attribute to verify?

A.System performance metrics
B.User-friendliness of the interface
C.Verifiability of security functions
D.The versioning history of the software
AnswerC

TCB components must be small enough to be analyzed and verified for correctness.

Why this answer

The TCB is the set of all hardware, software, and firmware components that are critical to the security of the system; it must be verifiable and correct.

107
Multi-Selecthard

You are assessing an Engineered System that uses 'Hardware Security Modules' (HSM). Which THREE of the following are the most critical administrative risks to address in an HSM policy?

Select 3 answers
A.Only requiring a password for physical access to the HSM appliance.
B.Using the default vendor password for the HSM web UI.
C.Lack of audit logs for access to the HSM's administrative interface.
D.Insecure key ceremony procedures that could allow key material to be observed.
E.Lack of separation of duties for administrative tasks (e.g., one person having full access).
AnswersC, D, E

Without logs, there is no accountability for administrative actions.

Why this answer

HSM administration requires strict separation of duties, secure key ceremony procedures, and robust auditing to prevent insider threats from accessing the root keys.

108
Multi-Selectmedium

Which TWO of the following are valid methods for maintaining the integrity of system design documentation throughout the system lifecycle?

Select 2 answers
A.Version control systems (e.g., Git)
B.Formal configuration management processes
C.Relying on verbal updates from team members
D.Posting documents on a public forum
E.Periodic manual document destruction
AnswersA, B

Git tracks changes and ensures history is preserved.

Why this answer

Documentation must be version-controlled and subject to strict change management to remain accurate.

109
MCQeasy

An engineering team is designing a new cloud infrastructure. To ensure the system complies with FIPS 140-3, which action must the ISSEP verify during the design phase?

A.That the system uses TLS 1.3 for data in transit.
B.That the cloud management console uses Multi-Factor Authentication (MFA).
C.That all cryptographic modules utilized by the system are FIPS 140-3 validated.
D.That the cloud provider's storage is encrypted at rest.
AnswerC

This is the core requirement of FIPS 140-3 compliance for an engineered system.

Why this answer

FIPS 140-3 certification is specific to the cryptographic modules used within the system. The ISSEP must ensure that all cryptographic operations are handled by modules validated to this standard.

110
MCQhard

In a cloud environment, you must ensure that VM snapshots are encrypted. What is the most effective approach?

A.Run a script to encrypt snapshots after they are created.
B.Train users to check the 'encrypt' box when taking snapshots.
C.Enable the provider-level setting to enforce encryption for all new snapshots.
D.Use an external scanner to identify and delete unencrypted snapshots.
AnswerC

Policy-based enforcement is the most secure method.

Why this answer

Configuring the account-level setting to enforce encryption on all new snapshots ensures that no unencrypted snapshots can be created by users.

111
MCQmedium

During a system accreditation process, you need to verify that logs are being sent to a centralized SIEM. Which method provides the most reliable verification of log integrity?

A.Verify the use of mutual TLS (mTLS) and log hashing/signing in the syslog configuration.
B.Verify that the SIEM administrative account has read-only permissions.
C.Review the firewall logs to see if port 514 is open.
D.Check if the SIEM has received a sample log entry via 'tail -f'.
AnswerA

mTLS ensures encrypted transport, and hashing/signing ensures integrity and authenticity.

Why this answer

Log integrity is verified by ensuring the logs are digitally signed or protected from tampering during transit.

112
MCQmedium

An ISSEP needs to secure inter-process communication (IPC) on a Linux host. Which feature should be configured to prevent unauthorized processes from accessing sensitive memory space?

A.Enable and configure SELinux with restrictive policies.
B.Set file permissions to 600.
C.Use a rootkit scanner.
D.Update the host kernel.
AnswerA

SELinux enforces MAC policies that restrict IPC.

Why this answer

SELinux (Security-Enhanced Linux) provides Mandatory Access Control (MAC) that limits process access to system resources, including memory.

113
MCQmedium

An ISSEP is reviewing the risk of data residency for a system. Why is data residency a significant factor in a cloud-based risk assessment?

A.Cloud storage is inherently slower in some regions.
B.Cloud providers do not allow the choice of storage location.
C.Legal and regulatory frameworks may mandate that sensitive data be stored within specific jurisdictions.
D.Data residency is only applicable to on-premises systems.
AnswerC

Compliance with regional laws is a critical business and risk management requirement.

Why this answer

Data residency requirements often dictate that data must remain within specific geographic boundaries to comply with legal/regulatory obligations (e.g., GDPR, local laws), making it a significant compliance risk.

114
MCQmedium

An ISSEP is configuring a WAF to mitigate OWASP Top 10 risks. Which configuration best addresses the 'Injection' category?

A.Enable 'SQL Injection' and 'Cross-Site Scripting' inspection in the WAF policy.
B.Enable 'TLS Termination' to offload encryption.
C.Enable 'Geo-blocking' to restrict access to local users only.
D.Enable 'Rate Limiting' on all incoming traffic.
AnswerA

These rules directly inspect for common injection attack vectors.

Why this answer

Configuring specific SQL Injection (SQLi) and Cross-Site Scripting (XSS) rules that inspect request bodies and query parameters is the primary method for blocking injection attacks at the WAF.

115
MCQmedium

Which of the following is the most important document for an ISSEP to review when starting a risk assessment for a new system to ensure that all security requirements are captured?

A.The vendor's marketing materials.
B.The project budget.
C.The System Security Plan (SSP).
D.The organizational chart.
AnswerC

The SSP is the master document detailing the controls and requirements for the system.

Why this answer

The System Requirements Specification (SRS) or the System Security Plan (SSP) (if in progress) captures the functional and non-functional requirements, including those for security, providing the foundation for the assessment.

116
MCQeasy

During the RMF process, which document serves as the primary record for the security controls selected and their implementation status?

A.The System Security Plan (SSP).
B.The Plan of Action and Milestones (POA&M).
C.The Authorization to Operate (ATO) letter.
D.The Risk Assessment Report (RAR).
E.The Security Assessment Plan (SAP).
AnswerA

The SSP is the authoritative document for control implementation and status.

Why this answer

The System Security Plan (SSP) is the core document that details the security control selection, tailoring, and implementation status for a system under the RMF.

117
MCQhard

You are assessing a system that uses machine learning for fraud detection. The system is experiencing 'concept drift'. What is the risk, and how should it be managed?

A.The risk is model poisoning; manage by sanitizing the training data.
B.The risk is model inversion; manage by adding differential privacy.
C.The risk is model inaccuracy; manage by monitoring performance metrics and retraining.
D.The risk is a data breach; manage by encrypting the dataset.
AnswerC

Drift degrades effectiveness, requiring ongoing maintenance and retraining.

Why this answer

Concept drift occurs when the statistical properties of the target variable change over time, rendering the model inaccurate. It must be managed through continuous monitoring and periodic model retraining.

118
MCQmedium

When selecting controls for a system in a high-compliance environment, what is the best practice for tailoring?

A.Adjust the baseline controls to address the specific system environment and mission.
B.Select all controls from the highest security baseline.
C.Exclude all controls that are difficult to implement.
D.Only apply controls that are mandated by law.
AnswerA

Tailoring ensures controls are relevant and effective.

Why this answer

Tailoring involves selecting, adapting, and supplementing controls to fit the specific mission and environment, rather than applying a blanket baseline.

119
MCQhard

You are verifying the security configuration of an Amazon S3 bucket. Which S3 feature must be enabled to ensure that object deletions are reversible in case of accidental or malicious data loss?

A.S3 Object Lock
B.S3 Block Public Access
C.S3 Versioning
D.S3 Lifecycle Policies
AnswerC

Versioning preserves previous states of objects, effectively acting as a safeguard against data loss.

Why this answer

S3 Versioning allows for the retrieval of previous versions of an object, even after deletion.

120
Multi-Selectmedium

When conducting a security validation of a cloud-based infrastructure, which TWO of the following tasks are essential for verification?

Select 2 answers
A.Verifying that security group ingress rules are restrictive.
B.Reviewing IAM role definitions for the principle of least privilege.
C.Ensuring the billing account is audited for cost anomalies.
D.Checking the physical server hardware for tamper evidence.
E.Validating the OS patch level of the underlying host.
AnswersA, B

Restricting ingress traffic is the primary network defense in cloud environments.

Why this answer

Verifying IAM roles and network security groups are critical, foundational steps in cloud security validation.

121
MCQmedium

You are reviewing a Change Management plan for an ICS (Industrial Control System). What is the most critical risk during the 'Implement' phase?

A.Operational system disruption
B.Data leakage
C.Loss of audit logs
D.Unauthorized access
AnswerA

Changes to ICS can trigger safety shutdowns or loss of process control.

Why this answer

In ICS/SCADA environments, system availability is paramount; uncoordinated changes can cause catastrophic operational failure.

122
Multi-Selecthard

Which THREE items are required to verify the integrity of a downloaded software package?

Select 3 answers
A.The cryptographically signed hash (e.g., .asc or .sig file).
B.The original source code repository URL.
C.The software binary file.
D.The author's public key.
E.The developer's password.
AnswersA, C, D

Used to verify the integrity and origin of the hash.

Why this answer

To verify integrity, you need the original package, the cryptographic hash of the package, and the signature or public key to verify that the hash was generated by the legitimate author.

123
MCQmedium

A security engineer is validating an AWS environment using AWS Config. Which action should be taken to ensure continuous compliance monitoring against a custom security policy?

A.Configure Amazon GuardDuty to alert on unauthorized resource modifications.
B.Deploy an AWS Config custom rule using an AWS Lambda function to evaluate resource configurations.
C.Use AWS Trusted Advisor to scan for unencrypted S3 buckets.
D.Enable AWS CloudTrail to log all API calls and review the logs for policy violations.
AnswerB

Custom rules in AWS Config require a Lambda function to execute the logic for evaluating resource compliance.

Why this answer

AWS Config rules allow for the definition of custom policies that trigger evaluations based on resource configuration changes.

124
MCQhard

In the systems engineering V-model, how does 'Verification' differ from 'Validation'?

A.Verification is for security; Validation is for performance
B.Verification is done by vendors, Validation by end-users
C.Verification confirms the system meets specifications; Validation confirms it meets mission goals
D.Verification is for software, Validation is for hardware
AnswerC

Verification checks the 'build-to' specs, validation checks the 'fit-for-purpose' aspect.

Why this answer

Verification ensures the system is built correctly (conformance to requirements), while validation ensures the correct system is built (meeting user needs).

125
MCQhard

You are assessing a system that uses hardware security modules (HSM) for signing code. An attacker is attempting a 'side-channel' attack on the HSM. Which mitigation strategy should be implemented to protect the signing keys?

A.Implement a dual-factor authentication requirement for HSM access.
B.Implement constant-time cryptographic algorithms to eliminate timing signatures.
C.Increase the length of the RSA keys.
D.Use a larger number of HSMs in a cluster.
AnswerB

Constant-time algorithms remove the variability that attackers use for side-channel analysis.

Why this answer

Side-channel attacks often rely on power consumption or timing differences during cryptographic operations. Implementing constant-time algorithms and power-smoothing circuits within the HSM environment helps mask these signals.

126
Multi-Selecthard

An ISSEP is assessing the risk of a system that uses 'Secrets Management' services (e.g., HashiCorp Vault). Which THREE of the following are best practices for securing the secrets themselves?

Select 3 answers
A.Enforcing short-lived, dynamically generated credentials.
B.Enforcing the principle of least privilege for secret access.
C.Implementing robust auditing of all secret access attempts.
D.Using a single, static password for all administrative access.
E.Hardcoding the master recovery key in the application source code.
AnswersA, B, C

Dynamic secrets expire, limiting the impact of a potential breach.

Why this answer

Secrets management relies on strong access control, secure delivery, and the ability to rotate credentials to limit the window of opportunity for attackers.

127
MCQeasy

An administrator needs to wipe a decommissioned laptop hard drive. Which method meets the NIST 800-88 'Purge' standard for magnetic media?

A.Deleting partitions
B.OS reinstallation
C.Degaussing
D.File system encryption
AnswerC

Degaussing removes magnetic domains, effectively purging the data.

Why this answer

Degaussing is the only method listed that specifically aligns with the Purge standard for magnetic media by exposing the drive to a strong magnetic field.

128
Multi-Selectmedium

Which TWO factors must be assessed when determining if a change is 'Emergency' versus 'Standard'?

Select 2 answers
A.Pre-authorization status of the change procedure
B.Level of risk to the production environment
C.The cost of the hardware
D.The number of users affected
E.The vendor of the software
AnswersA, B

Standard changes are pre-authorized; emergency changes are not.

Why this answer

Emergency changes are driven by urgent threats or failures, while standard changes follow a pre-approved, well-understood process.

129
MCQhard

You are designing a secure microservices architecture. To meet the 'Data at Rest' security requirements, you decide to use envelope encryption. Which sequence correctly describes the flow of managing the Data Encryption Key (DEK)?

A.Encrypt data with KEK, encrypt KEK with DEK, store KEK in HSM.
B.Encrypt data with HSM-stored master key, store master key in memory.
C.Generate new DEK for every block, store all DEKs in a database.
D.Encrypt data with DEK, encrypt DEK with KEK, store encrypted DEK with data.
AnswerD

This is the standard definition of envelope encryption used in KMS architectures.

Why this answer

Envelope encryption involves encrypting data with a DEK, then encrypting the DEK with a Key Encryption Key (KEK), storing the encrypted DEK alongside the data.

130
MCQeasy

Which of the following is a primary objective of a 'System-Level Risk Assessment'?

A.To conduct a full penetration test of the entire enterprise.
B.To determine the risk level and prioritize the implementation of security controls.
C.To replace all security controls with newer technology.
D.To eliminate all risks to the system.
AnswerB

This is the core purpose of a risk assessment.

Why this answer

The primary objective is to identify and document the risks to a specific system, helping stakeholders make informed decisions about risk acceptance and mitigation.

131
MCQeasy

A security engineer is validating that an application server is not vulnerable to common web attacks. What is the first step in the validation process?

A.Enable all logging mechanisms.
B.Patch the operating system.
C.Identify the assets and the relevant security requirements.
D.Run a full-scale penetration test.
AnswerC

You cannot validate security without knowing what the security objectives and requirements are.

Why this answer

Inventory and understanding the threat landscape are prerequisites for any validation effort.

132
MCQeasy

An organization is migrating to a Zero Trust architecture as defined in NIST SP 800-207. Which component is responsible for evaluating the context of a request, such as device health and location, before granting access?

A.Policy Enforcement Point (PEP)
B.Security Information and Event Management (SIEM)
C.Policy Decision Point (PDP)
D.Identity Provider (IdP)
AnswerC

The PDP is the brain of the Zero Trust architecture that makes access decisions.

Why this answer

The Policy Decision Point (PDP) is the architectural component that evaluates requests against security policies and context.

133
Multi-Selectmedium

Which THREE factors are critical for an effective 'Continuous Monitoring' (ConMon) program?

Select 3 answers
A.Real-time incident detection
B.Quarterly hardware refresh
C.Manual annual log review
D.Established incident response procedures
E.Automated security control status monitoring
AnswersA, D, E

Immediate detection minimizes the blast radius.

Why this answer

Continuous monitoring relies on real-time data, automated alerting, and periodic reporting to maintain a security posture.

134
MCQhard

When engineering a 'Secure Boot' sequence, what is the primary security objective?

A.To allow for easy BIOS updates
B.To ensure only trusted, signed code is executed
C.To bypass the need for an OS
D.To speed up the boot process
AnswerB

This prevents untrusted or malicious software from starting.

Why this answer

Secure Boot ensures that every piece of software loaded during the boot process is digitally signed by a trusted entity, preventing rootkits from loading early.

135
MCQhard

You are verifying the implementation of a microsegmentation policy in a software-defined network (SDN). Which approach is most effective for validating that isolation is enforced?

A.Inspect the physical switch port configuration.
B.Review the cloud provider's SLA.
C.Perform ping tests between VMs in different security zones.
D.Check the DNS records for the servers.
AnswerC

Successful ping blocking between isolated zones is the most direct way to verify segmentation enforcement.

Why this answer

Validating microsegmentation requires testing lateral movement between segments that should be isolated.

136
MCQhard

A system is being designed to process PII. The requirement is to maintain data sovereignty while utilizing a hybrid cloud model. What architectural strategy best achieves this?

A.Implement a full database mirror in the cloud without encryption.
B.Migrate all data to the cloud and rely on the Cloud Service Provider's encryption-at-rest.
C.Use Cloud HSM to store keys and keep raw PII in an on-premises database.
D.Use public cloud object storage and rely on IP whitelisting.
AnswerC

Keeping the data locally and using cloud keys for processing ensures sovereignty.

Why this answer

Data at rest is kept on-premises in a sovereign zone, while ephemeral processing is performed in the cloud, utilizing encryption with customer-managed keys (CMK) stored on-premises to ensure control.

137
MCQeasy

When designing an information system architecture, what is the primary role of a System Security Plan (SSP)?

A.Document the system boundaries, security controls, and implementation details.
B.Record the results of security control assessments.
C.List the vulnerabilities found during a scan.
D.Define the business strategy for the organization.
AnswerA

This is the primary purpose of the SSP in NIST RMF.

Why this answer

The SSP is the foundational document that describes the system boundaries, security controls, and how they are implemented to satisfy requirements.

138
MCQmedium

You are verifying the security of a Linux server's SSH configuration. Which directive should be set to 'no' to prevent unauthorized remote root login?

A.PermitRootLogin
B.PubkeyAuthentication
C.X11Forwarding
D.PasswordAuthentication
AnswerA

Setting this to 'no' forces administrators to log in as a standard user and escalate privileges.

Why this answer

PermitRootLogin no is a standard hardening requirement for SSH.

139
MCQhard

You are managing the lifecycle of an enterprise-level cryptographic key. What is the most critical step prior to key decommissioning?

A.Sending a notification email
B.Archiving the key
C.Updating the firewall rules
D.Overwriting the key in RAM
AnswerB

Archiving is essential for potential decryption of legacy data.

Why this answer

Archiving the key is necessary to decrypt legacy data that was encrypted with the old key, otherwise, that data becomes permanently inaccessible.

140
MCQmedium

An ISSEP must secure a server-to-server connection that currently uses plaintext LDAP. What is the recommended secure alternative?

A.Use LDAP with Kerberos binding only.
B.Use IPsec to encrypt traffic between servers.
C.Migrate to LDAPS (LDAP over TLS) on port 636.
D.Use a VPN tunnel.
AnswerC

LDAPS provides encryption for LDAP traffic.

Why this answer

LDAPS (LDAP over TLS/SSL) on port 636 is the industry-standard way to encrypt LDAP traffic.

141
MCQeasy

In the context of the System Development Life Cycle (SDLC), what is the primary purpose of a security control baseline?

A.To replace the need for a risk assessment
B.To define the minimum security requirements for a system category
C.To audit employee performance
D.To automate the deployment of security patches
AnswerB

Baselines are standardized sets of controls for specific system types.

Why this answer

A baseline establishes the minimum set of security controls required to protect the system based on its impact level.

142
MCQhard

A system uses a hardware-based root of trust (RoT) for verifying code execution. An attacker has managed to perform a 'fault injection' attack to bypass the verification. What is the most effective hardware-level defense?

A.Improve the software verification logic.
B.Increase the frequency of the RoT verification checks.
C.Add environmental sensors and hardened circuitry to detect and respond to fault injection attempts.
D.Implement a stronger hash algorithm for code signing.
AnswerC

Physical hardening is the correct defense against physical fault injection attacks.

Why this answer

Fault injection (like voltage or clock glitching) targets the physical hardware during verification. Hardening the hardware against these physical disturbances (e.g., adding sensors to detect voltage spikes) is the appropriate defense.

143
Multi-Selectmedium

Which TWO methods are effective for managing cryptographic keys in a cloud architecture?

Select 2 answers
A.Deploy a dedicated Hardware Security Module (HSM).
B.Hardcode keys in the application source code.
C.Use a cloud-native Key Management Service (KMS).
D.Save keys as plain text files on the VM.
E.Store keys in environment variables.
AnswersA, C

HSMs provide the highest level of physical and logical security for keys.

Why this answer

Using a managed Key Management Service (KMS) or a Hardware Security Module (HSM) are the industry standard approaches for secure key management.

144
MCQeasy

Which security model is specifically designed to prevent the unauthorized flow of information from high-security levels to low-security levels (no read up, no write down)?

A.Clark-Wilson model
B.Bell-LaPadula model
C.Biba model
D.Brewer-Nash model
AnswerB

Bell-LaPadula enforces confidentiality rules.

Why this answer

The Bell-LaPadula model focuses on confidentiality by enforcing the 'no read up, no write down' rules.

145
MCQmedium

An ISSEP is designing a secure architecture for a cloud environment using NIST SP 800-160. Which architectural pattern should the engineer prioritize to ensure the principle of Least Privilege is enforced at the service-to-service communication layer within a Kubernetes cluster?

A.Implement Istio with mTLS and AuthorizationPolicies.
B.Use the default ClusterRoleBinding for all pods.
C.Deploy all microservices into a single flat network segment.
D.Enable Kubernetes NetworkPolicies only at the namespace level.
AnswerA

Istio provides identity-based security and fine-grained access control at the application layer.

Why this answer

Using a service mesh like Istio enables mTLS and granular authorization policies (RBAC) between microservices, which is the standard implementation for least privilege in containerized environments.

146
MCQmedium

What is the primary function of an 'API Gateway' in a microservices security architecture?

A.To compile the source code
B.To store the application database
C.To act as a physical firewall
D.To provide centralized authentication and rate limiting
AnswerD

These are key security and management functions of an API gateway.

Why this answer

An API Gateway acts as a single entry point that handles authentication, rate limiting, and request routing for microservices.

147
MCQmedium

You are validating the security of a web service using OAuth 2.0. Which specific verification step ensures that the authorization code is not leaked?

A.Check the HTTP header for 'X-Frame-Options'.
B.Verify that the redirect_uri is strictly validated against a whitelist on the authorization server.
C.Verify that the client secret is stored in the database.
D.Ensure the application uses HTTPS.
AnswerB

Validating the redirect URI prevents authorization codes from being sent to malicious endpoints.

Why this answer

Validation of OAuth requires ensuring that the redirect URI and other parameters are strictly handled.

148
MCQmedium

An ISSEP is architecting a secure API environment. Which strategy is most effective for throttling and preventing resource exhaustion?

A.Require an API key for every request.
B.Load balance the API across more servers.
C.Use a custom header to validate the request source.
D.Configure API Gateway rate limiting policies per user or per IP.
AnswerD

Rate limiting is the standard defense against resource exhaustion in APIs.

Why this answer

Implementing API rate limiting at the API Gateway level prevents single clients from overwhelming the backend services.

149
MCQeasy

Which type of change is typically excluded from a formal Change Advisory Board review process?

A.Emergency changes
B.Security patches
C.Significant changes
D.Standard changes
AnswerD

Standard changes follow a pre-approved procedure and don't require individual CAB review.

Why this answer

Standard changes are pre-authorized, low-risk, and routine, allowing them to bypass the full CAB review for efficiency.

150
MCQeasy

A security professional is verifying the implementation of MFA on an administrative account. What is the most reliable way to confirm the MFA configuration is working correctly?

A.Verify that the account has a 'mobile' field populated.
B.Attempt to log in with valid credentials and verify that the system prompts for the secondary token.
C.Review the MFA server logs for daily activity.
D.Check the user account settings in the Active Directory console.
AnswerB

Real-world testing of the authentication flow is the definitive method to verify MFA.

Why this answer

Successful authentication with a second factor is the ultimate proof of correct implementation.

Page 1

Page 2 of 3

Page 3

All pages