Courseiva

Systems Security Certified Practitioner SSCP (SSCP) — Questions 151225

920 questions total · 13pages · All types, answers revealed

Page 2

Page 3 of 13

Page 4
151
MCQmedium

A security administrator is configuring a VPN between two branch offices. The requirement is to encrypt the entire original IP packet and add a new IP header for routing over the internet. Which IPsec mode should be used?

A.Aggressive mode
B.Transport mode
C.Main mode
D.Tunnel mode
AnswerD

Tunnel mode encrypts the entire IP packet and adds a new header.

Why this answer

In tunnel mode, the entire original IP packet is encapsulated and encrypted, with a new IP header added, suitable for site-to-site VPNs.

152
MCQmedium

A company deploys a new web application and wants to ensure that session tokens are not vulnerable to session hijacking. Which of the following controls is most effective?

A.Bind the session token to the user's IP address.
B.Set a short session timeout (e.g., 5 minutes).
C.Encrypt the session token using AES.
D.Regenerate the session ID after every request.
E.Set the Secure and HttpOnly flags on session cookies.
AnswerE

Secure flag forces HTTPS; HttpOnly prevents script access, mitigating XSS-based theft.

Why this answer

Setting the Secure and HttpOnly flags ensures cookies are only sent over HTTPS and not accessible via JavaScript, preventing interception and XSS-based theft. Option A (bind to IP) can cause issues with mobility; Option B (short timeout) helps reduce exposure but does not prevent hijacking; Option C (encrypt token) is redundant if HTTPS is used; Option D (regenerate after each request) is impractical and not necessary.

153
MCQhard

You are a security consultant for a hospital that is deploying a new IoT medical device system. The devices wirelessly transmit patient vital signs to a central server. The hospital is subject to HIPAA. The devices were developed by a startup and are not widely field-tested. The IT department wants to connect the devices to the existing network for real-time monitoring. The risk management team has identified potential threats including data interception, device tampering, and denial of service. They have no prior experience with IoT security. Which of the following risk treatment strategies is MOST appropriate given the high uncertainty?

A.Accept the risk because the devices improve patient care
B.Transfer the risk by purchasing cyber insurance
C.Avoid the risk by delaying deployment until a thorough risk assessment and independent security testing are completed
D.Mitigate the risk by segmenting the devices on a separate VLAN and encrypting all communications
AnswerC

Avoidance is justified when risks are not well understood and potential impact is high.

Why this answer

The high uncertainty surrounding the startup's untested IoT devices, combined with the criticality of patient safety and HIPAA compliance, makes avoidance the most prudent strategy. Delaying deployment allows for a thorough risk assessment and independent security testing to identify vulnerabilities before exposing the hospital network to potential data interception, device tampering, or denial-of-service attacks. This approach directly addresses the risk management team's lack of IoT security experience by preventing exposure until the threat landscape is better understood.

Exam trap

The trap here is that candidates often choose mitigation (Option D) because it seems proactive and technically sound, but they overlook the principle that mitigation is only appropriate when the risk is well-understood and the controls are proven effective—neither of which applies to untested IoT devices with unknown vulnerabilities.

How to eliminate wrong answers

Option A is wrong because accepting risk without understanding the specific vulnerabilities of untested IoT devices could lead to HIPAA violations and patient harm, as the devices transmit protected health information (PHI) over wireless links susceptible to interception. Option B is wrong because cyber insurance transfers financial risk but does not reduce the likelihood or impact of a security incident; it also does not address the immediate technical threats like device tampering or denial of service that could disrupt patient monitoring. Option D is wrong because while VLAN segmentation and encryption (e.g., using TLS 1.3 or IPsec) are valid mitigation techniques, they are insufficient when the devices themselves may have undisclosed backdoors, weak cryptographic implementations, or unpatched firmware flaws that could be exploited despite network controls.

154
Multi-Selecteasy

Which TWO of the following are considered key components of a disaster recovery plan?

Select 2 answers
A.SLA (Service Level Agreement)
B.RPO (Recovery Point Objective)
C.RTO (Recovery Time Objective)
D.BCP (Business Continuity Plan)
E.MTBF (Mean Time Between Failures)
AnswersB, C

RPO defines the maximum acceptable data loss in terms of time.

Why this answer

RPO and RTO are fundamental metrics in a disaster recovery plan. RPO defines the maximum acceptable data loss measured in time, dictating the frequency of backups. RTO defines the maximum acceptable downtime after a disaster, setting the target for system restoration.

Both directly drive the technical design of replication, backup schedules, and failover procedures.

Exam trap

ISC2 often tests the distinction between DR plan components (RPO/RTO) and broader business continuity concepts (BCP) or contractual metrics (SLA), leading candidates to confuse SLA with RTO or think BCP is part of the DR plan itself.

155
MCQhard

An analyst detects outbound traffic from a workstation to a known malicious IP address. The workstation is a developer machine with local admin rights. Which containment action should be taken first?

A.Block the malicious IP on the firewall
B.Isolate the workstation from the network
C.Shut down the workstation immediately
D.Disable the user's domain account
AnswerB

Stops all malicious outbound traffic and lateral movement.

Why this answer

The first step is to isolate the workstation from the network (Option B) to prevent further communication with the malicious IP and lateral movement. Blocking only the IP (Option A) is insufficient because the malware may use other IPs. Shutting down (Option C) may lose volatile evidence.

Disabling the user's account (Option D) does not stop network traffic from the workstation.

156
Multi-Selectmedium

Which TWO factors are most critical when selecting a cryptographic algorithm for a government application?

Select 2 answers
A.Speed of encryption/decryption
B.Key length
C.Algorithm popularity
D.Regulatory compliance (e.g., FIPS 140-2)
E.Ease of implementation
AnswersB, D

Key length directly affects security strength.

Why this answer

For government applications, regulatory compliance (e.g., FIPS 140-2) is critical because it mandates that cryptographic modules meet specific security standards for protecting sensitive data. Key length is equally critical because it directly determines the algorithm's resistance to brute-force attacks; insufficient key length can render encryption ineffective regardless of other factors.

Exam trap

ISC2 often tests the misconception that speed or popularity are primary selection criteria, when in fact government applications are driven by regulatory mandates and cryptographic strength (key length) as defined by standards like FIPS.

157
MCQhard

A security engineer is designing a system to store passwords securely. Which of the following is the most robust approach for password storage?

A.Hash passwords with SHA-256
B.Encode passwords with Base64
C.Encrypt passwords using AES-256 and store the key separately
D.Use bcrypt with a high cost factor
AnswerD

bcrypt is slow and includes a salt, making it resistant to brute-force and rainbow tables.

Why this answer

Bcrypt is the most robust option because it incorporates a salt to defend against rainbow table attacks and uses a configurable cost factor to deliberately slow down the hashing process, making brute-force attacks computationally expensive. Unlike general-purpose hashes like SHA-256, bcrypt is designed specifically for password storage and resists GPU-accelerated attacks by requiring significant memory and time per attempt.

Exam trap

ISC2 often tests the misconception that encryption (AES) is equivalent to hashing for password storage, but the trap is that encryption is reversible and introduces key management risks, whereas a proper password storage mechanism must be one-way and computationally expensive.

How to eliminate wrong answers

Option A is wrong because SHA-256 is a fast, general-purpose cryptographic hash that lacks a built-in salt and is vulnerable to rainbow table and brute-force attacks when used alone for password storage. Option B is wrong because Base64 is an encoding scheme, not a cryptographic operation; it provides no security and can be trivially reversed to recover the original password. Option C is wrong because encrypting passwords with AES-256 introduces key management complexity, and if the encryption key is compromised, all stored passwords can be decrypted; encryption is reversible by design, whereas password storage requires a one-way, irreversible function.

158
Multi-Selecteasy

A security engineer is designing a DMZ to host public-facing services. Which two security best practices should be applied? (Choose two.)

Select 2 answers
A.Use the same firewall rule set for DMZ and internal network
B.Place web servers on the internal network
C.Enable full mesh connectivity between DMZ hosts
D.Use a screened subnet with two firewalls
E.Allow inbound traffic from internet to DMZ on required ports only
AnswersD, E

A screened subnet (DMZ) between two firewalls provides defense in depth for public services.

Why this answer

A screened subnet with two firewalls creates a buffer zone, and allowing inbound traffic only on required ports minimizes exposure. Placing web servers on the internal network would expose them, sharing rules with the internal network increases risk, and full mesh connectivity between DMZ hosts facilitates lateral movement.

159
MCQhard

A security analyst notices that a user's account was used to access sensitive files after the user had left the company. Which access control principle was most likely violated?

A.Identification
B.Least privilege
C.Accountability
D.Separation of duties
AnswerC

Accountability requires that activities can be traced to individuals; an active account of a former employee undermines this.

Why this answer

Accountability requires that actions be traced to individuals. If an account is not disabled promptly, actions cannot be reliably attributed.

160
MCQhard

During a physical security audit, it is discovered that employees often prop open the mantrap door to allow easier access. What is the BEST control to address this?

A.Implement a clean desk policy
B.Add a time-delay alarm that triggers if the door is open too long
C.Install a CCTV camera to monitor the mantrap
D.Use biometric readers on both doors
AnswerB

Correct. This discourages propping and alerts security.

Why this answer

A time-delay alarm is the best control because it directly addresses the root cause—employees propping the door open—by alerting security or triggering a response if the door remains open beyond a preset interval (e.g., 10–30 seconds). This maintains the integrity of the mantrap, which is designed to prevent tailgating and unauthorized access by ensuring only one person enters at a time. Unlike passive measures, the alarm provides immediate feedback and deterrence against the unsafe behavior.

Exam trap

In SSCP, candidates often confuse detective controls (like CCTV) with preventive/deterrent controls (like time-delay alarms). CCTV monitors but does not actively prevent the unsafe behavior of propping the door open; an alarm provides immediate feedback and deters the action.

How to eliminate wrong answers

Option A is wrong because a clean desk policy addresses information security (e.g., preventing sensitive documents from being left out), not physical access control or the mantrap door being propped open. Option C is wrong because installing a CCTV camera only provides passive monitoring and retrospective evidence; it does not actively prevent or deter employees from propping the door open in real time. Option D is wrong because biometric readers on both doors enhance authentication but do not solve the behavioral issue of holding the door open; the mantrap's function still fails if a door is physically propped.

161
MCQeasy

A system administrator needs to securely transfer log files from a Linux server to a central log collector. Which protocol should be used to ensure confidentiality and integrity?

A.SSH
B.SMTP
C.NFS
D.FTP
AnswerA

SSH provides secure encrypted file transfer via SCP or SFTP.

Why this answer

SSH (Secure Shell) provides encrypted tunnels for data transfer, ensuring both confidentiality and integrity of log files in transit. It uses strong cryptographic algorithms (e.g., AES, ChaCha20) and HMAC-based integrity checks, making it the correct choice for secure file transfer over untrusted networks.

Exam trap

The trap here is that candidates often choose FTP or NFS because they are familiar file transfer protocols, overlooking that neither provides native encryption or integrity, while SSH is the only option that guarantees both through its secure channel.

How to eliminate wrong answers

Option B (SMTP) is wrong because SMTP is a mail transfer protocol that does not natively encrypt payloads or provide integrity verification; it relies on optional STARTTLS extensions for confidentiality, which are not always enforced. Option C (NFS) is wrong because NFS is a network file system protocol designed for shared access, not secure transfer; it lacks built-in encryption and integrity guarantees (unless using NFSv4 with Kerberos, which is not the default). Option D (FTP) is wrong because FTP transmits data and credentials in cleartext, offering no confidentiality or integrity; even FTPS (FTP over SSL/TLS) is not the standard FTP protocol referenced here.

162
MCQeasy

A small business needs basic protection against malware. Which solution is MOST cost-effective and provides real-time protection?

A.Schedule weekly antivirus scans
B.Deploy an endpoint protection platform (EPP)
C.Install a host-based firewall on each computer
D.Use email encryption for all communications
AnswerB

Provides real-time protection and includes multiple security layers.

Why this answer

An endpoint protection platform (EPP) provides real-time antivirus, anti-malware, and often additional features like firewall and web protection, offering continuous protection against malware. Option A is wrong because scheduling weekly scans leaves gaps where new threats can infect the system before the next scan. Option C is wrong because a host-based firewall controls network traffic but does not detect or remove malware.

Option D is wrong because email encryption only protects the confidentiality of email content and does not prevent malware from being delivered via other vectors such as web downloads or USB drives.

163
Multi-Selectmedium

Which TWO of the following are best practices for securing an application programming interface (API)?

Select 2 answers
A.Implement rate limiting to control the number of requests.
B.Validate and sanitize all input to the API.
C.Return detailed error messages to help clients debug.
D.Disable encryption to improve performance.
E.Use HTTP Basic Authentication without HTTPS.
AnswersA, B

Rate limiting mitigates brute-force and DoS attacks.

Why this answer

Options A and B are correct. Rate limiting prevents abuse and denial-of-service attacks, while input validation and sanitization prevent injection attacks. Option C (returning detailed error messages) can leak sensitive information to attackers.

Option D (disabling encryption) exposes data in transit. Option E (using HTTP Basic Authentication without HTTPS) transmits credentials in plaintext.

164
MCQmedium

A system administrator is configuring a Linux server to ensure that only authorized users can execute commands with superuser privileges. Which file should be edited to control sudo access?

A./etc/shadow
B./etc/passwd
C./etc/group
D./etc/sudoers
AnswerD

Controls sudo permissions.

Why this answer

The /etc/sudoers file defines which users can run commands with elevated privileges.

165
MCQeasy

A user reports they cannot access the internet. The network administrator verifies that the user's workstation has an IP address of 192.168.1.100/24 and a default gateway of 192.168.1.1. The administrator can ping the default gateway but cannot ping 8.8.8.8. What is the most likely cause?

A.Firewall is blocking outbound traffic to port 53
B.DNS server is down
C.The default gateway has no route to the internet
D.The workstation's subnet mask is incorrect
E.The network cable is faulty
AnswerC

Local connectivity works, external fails, indicating routing issue.

Why this answer

The administrator can ping the default gateway (192.168.1.1) but cannot ping 8.8.8.8. This indicates that Layer 2 and Layer 3 connectivity within the local subnet is working, but traffic cannot reach the internet. The most likely cause is that the default gateway does not have a route to the internet, meaning it cannot forward packets beyond its local interface to an upstream router or ISP.

Exam trap

The trap here is that candidates often confuse 'can ping the gateway' with 'gateway has internet connectivity,' but the gateway may be reachable locally while lacking an upstream route or having a misconfigured NAT policy.

How to eliminate wrong answers

Option A is wrong because port 53 is used for DNS, not for ICMP ping traffic; a firewall blocking outbound port 53 would not prevent a ping to 8.8.8.8. Option B is wrong because DNS resolution is not required to ping an IP address directly; the issue is with IP connectivity, not name resolution. Option D is wrong because the workstation's subnet mask of /24 (255.255.255.0) is correct for the 192.168.1.0/24 network, and an incorrect mask would typically cause local connectivity issues, not prevent internet access while still reaching the gateway.

Option E is wrong because a faulty network cable would prevent the workstation from communicating with the default gateway, but the administrator can successfully ping the gateway.

166
MCQhard

A company uses a Cloud Workload Protection Platform (CWPP) to secure IaaS workloads. They discover that a virtual machine (VM) is communicating with a known command-and-control server. What is the FIRST action the security team should take?

A.Immediately isolate the VM by removing it from the network
B.Run an antivirus scan on the VM to remove the malware
C.Terminate the VM and create a new one from a clean image
D.Analyze the traffic logs to determine the scope of the compromise
AnswerA

Containment is the first priority to stop active threat.

Why this answer

The first priority is to stop the malicious communication and prevent lateral movement. Isolating the VM immediately contains the threat. Option B (run antivirus) is not the first action because the infection is already active; scanning can be done after isolation.

Option C (terminate VM) is too aggressive and may cause data loss without forensic investigation. Option D (analyze logs) is important but should follow containment.

167
MCQeasy

A company is deploying a new mobile application that handles sensitive customer data. Which practice BEST ensures data confidentiality on the device?

A.Require a strong screen lock passcode.
B.Disable cloud backups for the app.
C.Encrypt all sensitive data stored on the device using a key derived from the user's passcode.
D.Use app sandboxing to isolate app data from other apps.
AnswerC

Encryption at rest ensures data is unreadable without the key.

Why this answer

Encrypting sensitive data with a key derived from the user's passcode ensures that even if the device is lost or stolen, the data remains unreadable without the passcode. This approach leverages the user's secret to protect confidentiality at rest, which is a fundamental principle of mobile data protection. Technologies like iOS Data Protection and Android File-Based Encryption use similar key derivation from the lock screen credential to encrypt app-specific data.

Exam trap

ISC2 often tests the distinction between access control (screen lock) and data protection (encryption), leading candidates to choose a strong passcode as the best practice for confidentiality, when encryption with a derived key is the actual requirement.

How to eliminate wrong answers

Option A is wrong because a strong screen lock passcode only prevents unauthorized access to the device interface but does not protect data if the device is compromised via other means (e.g., forensic extraction or jailbreak). Option B is wrong because disabling cloud backups prevents data from being stored off-device but does not address confidentiality of data already on the device; backups themselves can be encrypted separately. Option D is wrong because app sandboxing isolates app data from other apps to prevent unauthorized inter-app access, but it does not protect against physical device access or OS-level attacks that bypass sandboxing.

168
MCQmedium

A system administrator is hardening a Linux server. After installing the OS, which of the following steps should be taken to ensure that only authorized users can execute commands with elevated privileges?

A.Edit the /etc/sudoers file to restrict sudo access
B.Enable auditd to log all commands
C.Configure PAM to enforce password complexity
D.Set the setuid bit on critical binaries
AnswerA

Restricting sudo access ensures only authorized users can elevate privileges.

Why this answer

The /etc/sudoers file controls which users can run commands as root via sudo. Proper configuration is essential for privilege escalation control.

169
MCQmedium

A Linux server is being hardened. The security team wants to enforce mandatory access control policies that confine processes to limited access to files and resources. Which technology should be implemented?

A.SELinux
B.PAM
C.iptables
D.auditd
AnswerA

SELinux provides mandatory access control.

Why this answer

SELinux enforces mandatory access control (MAC) policies, confining processes.

170
MCQhard

A change request to update a critical database server has been approved by the Change Advisory Board (CAB). During testing, a major compatibility issue is discovered. What is the best course of action?

A.Report the issue to the CAB and request a revised change
B.Reject the change request and close it permanently
C.Implement the change but have a rollback plan ready
D.Proceed with the change and resolve the issue after implementation
AnswerA

Proper change management requires CAB approval for revised changes.

Why this answer

The change should be halted and the CAB reconvened to reassess the change given the new information.

171
MCQeasy

Which UDP port is used by the Domain Name System (DNS) for name resolution queries?

A.UDP 161
B.UDP 67
C.UDP 53
D.UDP 123
AnswerC

DNS uses UDP 53.

Why this answer

DNS uses UDP port 53 for queries by default.

172
MCQmedium

Refer to the exhibit. A security administrator is troubleshooting connectivity to a web server. Users report they can access the website via HTTP and HTTPS, but cannot establish new SSH connections. Which of the following best explains this issue?

A.The firewall is dropping SSH connections only when they are new, but established sessions may still be allowed.
B.The firewall policy is set to ACCEPT on the INPUT chain, so SSH should work.
C.The firewall is blocking all incoming traffic on port 22.
D.The firewall is configured to drop new SSH connections, which prevents users from initiating new SSH sessions.
AnswerD

The DROP rule for tcp dpt:22 with state NEW explicitly drops new SSH connection attempts, explaining the inability to SSH.

Why this answer

The firewall drops all new TCP connections to port 22 (SSH) using the state NEW module, which prevents users from establishing new SSH sessions. Option D correctly identifies this configuration. Option A describes the rule's behavior but includes the irrelevant point about established sessions, making it less direct.

Option B is incorrect because the INPUT chain policy being ACCEPT does not override the specific drop rule for new SSH traffic. Option C is incorrect because the rule does not block all traffic on port 22, only new connections.

173
MCQmedium

During a qualitative risk analysis, an organization assesses a threat of a data breach due to weak encryption. The likelihood is rated as 'Medium' and the impact as 'High'. According to a standard 3x3 risk matrix, what is the overall risk rating?

A.Medium
B.High
C.Low
D.Critical
AnswerB

Medium likelihood and High impact typically map to High risk.

Why this answer

In a typical 3x3 risk matrix, a combination of Medium likelihood and High impact results in a High risk rating.

174
MCQmedium

An organization implements RBAC to enforce separation of duties. Which of the following is a key benefit of using role-based access control in this context?

A.Users can share accounts to simplify management
B.It prevents users from having conflicting roles that could lead to fraud
C.It allows users to define their own permissions
D.It uses system-wide labels to control access
AnswerB

Correct. RBAC helps enforce separation of duties.

Why this answer

RBAC naturally supports separation of duties by assigning permissions to roles and ensuring that conflicting roles (e.g., approving and executing payments) are not assigned to the same user. This reduces fraud risk.

175
MCQmedium

A military system uses mandatory access control with classifications Unclassified, Confidential, Secret, and Top Secret. A user with Secret clearance attempts to read a file labeled Top Secret. What will occur?

A.Access is denied because the subject's clearance is lower than the object's classification
B.Access is granted because the user has write permission
C.Access is granted if the user is the owner of the file
D.Access is granted because the user has a need-to-know
AnswerA

MAC enforces that a subject can only read objects with a classification equal to or lower than their clearance (no read up).

Why this answer

In a mandatory access control (MAC) system, access decisions are based on comparing the subject's clearance level with the object's classification label. Since the user has a Secret clearance and the file is classified Top Secret, the subject's clearance is lower than the object's classification, so read access is denied per the Bell-LaPadula model's Simple Security Property (no read up).

Exam trap

The trap here is that candidates often confuse mandatory access control with discretionary access control, assuming that ownership or need-to-know can override classification labels, but in MAC, clearance level is the primary and non-negotiable gate for read access.

How to eliminate wrong answers

Option B is wrong because write permission is irrelevant in a MAC read operation; the Bell-LaPadula model enforces the *-property (no write down) for write, but read access is governed solely by clearance vs. classification. Option C is wrong because MAC overrides discretionary ownership; even if the user owns the file, the system enforces the classification label, so ownership does not grant read access when clearance is insufficient. Option D is wrong because need-to-know is a separate discretionary control (e.g., via compartments or roles) and does not override the mandatory clearance requirement; without the proper clearance level, need-to-know cannot grant access.

176
MCQhard

An organization uses mandatory access control (MAC) with the Bell-LaPadula model. A subject has a clearance of 'Secret' and an object has a classification of 'Top Secret'. What is the result if the subject attempts to read the object?

A.Write denied
B.Write allowed
C.Read denied
D.Read allowed
AnswerC

The subject's clearance is lower than the object's classification, so read is denied under the simple security property.

Why this answer

In the Bell-LaPadula model, the Simple Security Property (no read up) prohibits a subject from reading an object with a higher classification. Since the subject has a clearance of 'Secret' and the object is classified as 'Top Secret', the read attempt is denied. This enforces mandatory access control (MAC) by preventing information flow from higher to lower security levels.

Exam trap

The trap here is that candidates often confuse the Bell-LaPadula model with the Biba model (which focuses on integrity) or misapply the *-property to read operations, leading them to incorrectly select 'Read allowed' or 'Write allowed' when the actual rule is 'no read up'.

How to eliminate wrong answers

Option A is wrong because the operation in question is a read, not a write, and the Bell-LaPadula model's *-property (no write down) applies to write operations, not reads. Option B is wrong because write operations are not being attempted, and even if they were, a write from a Secret subject to a Top Secret object would be allowed under the *-property (write up), but the question asks about a read. Option D is wrong because the Simple Security Property explicitly forbids reading an object with a higher classification (Top Secret) than the subject's clearance (Secret), so read allowed is incorrect.

177
MCQmedium

An organization is required to maintain audit logs for at least one year for compliance purposes. Which log management practice best ensures the integrity of these logs?

A.Encrypting logs during transmission only
B.Compressing logs to save space
C.Storing logs on a standard file server with restricted permissions
D.Using write-once storage and digitally signing each log entry
AnswerD

This prevents tampering and ensures non-repudiation.

Why this answer

Write-once storage (e.g., WORM media or append-only filesystems) prevents any modification or deletion of log entries after they are written. Digitally signing each log entry ensures that any tampering can be detected by verifying the signature against the log data. Together, these provide non-repudiation and integrity, meeting compliance requirements for immutable audit logs.

Exam trap

The trap here is that candidates often choose restricted permissions (Option C) thinking access control is sufficient, but the SSCP exam emphasizes that integrity requires cryptographic proof and immutability, not just authorization.

How to eliminate wrong answers

Option A is wrong because encrypting logs only during transmission protects confidentiality in transit but does nothing to prevent alteration or deletion once the logs are stored. Option B is wrong because compressing logs reduces storage space but provides no integrity protection; compressed logs can still be modified or deleted. Option C is wrong because storing logs on a standard file server with restricted permissions relies on access controls, which can be bypassed by compromised accounts or insider threats, and does not guarantee immutability or detect tampering.

178
MCQmedium

An organization uses OAuth 2.0 for delegated access to a cloud storage API. A third-party application requests an access token to read user files. What is the primary purpose of the access token in OAuth?

A.To encrypt the user's data in transit
B.To store the user's credentials in the client application
C.To authorize the client to access the resource server on behalf of the user
D.To authenticate the user to the authorization server
AnswerC

Correct. The access token conveys authorization.

Why this answer

The access token represents the authorized scope of access granted by the resource owner (user). It is used by the client to access the protected resource (e.g., API) without exposing user credentials.

179
MCQeasy

An organization's security policy prohibits employees from sharing passwords. What type of policy is this?

A.Data Handling Policy
B.Password Policy
C.Remote Access Policy
D.Acceptable Use Policy (AUP)
AnswerD

Correct. AUP defines acceptable and unacceptable use of organizational resources, including password sharing.

Why this answer

The Acceptable Use Policy (AUP) defines the rules and guidelines for using an organization's IT resources, including prohibited behaviors like password sharing. This policy sets the overall acceptable behavior framework, whereas a Password Policy specifically governs password creation, complexity, and rotation rules, not the act of sharing. Therefore, a prohibition on sharing passwords falls under the AUP because it addresses user conduct rather than technical password parameters.

Exam trap

This exam often tests the distinction between a Password Policy (technical rules for password creation) and an Acceptable Use Policy (behavioral rules for password usage), leading candidates to mistakenly choose Password Policy when the question focuses on prohibited conduct rather than technical specifications.

How to eliminate wrong answers

Option A is wrong because a Data Handling Policy governs how data is classified, stored, transmitted, and disposed of, not user authentication behaviors like password sharing. Option B is wrong because a Password Policy specifies technical requirements such as minimum length, complexity, and expiration intervals (e.g., NIST SP 800-63B guidelines), but does not typically address the behavioral prohibition of sharing passwords. Option C is wrong because a Remote Access Policy controls the methods and conditions for connecting to the network from external locations (e.g., VPN protocols, multi-factor authentication), not the internal conduct of password sharing.

180
MCQmedium

An IT auditor reports that firewall logs are not being reviewed regularly. Which control should be implemented to address this finding?

A.Archive logs to a read-only medium
B.Disable logging for low-priority events
C.Increase the log retention period to 12 months
D.Deploy a Security Information and Event Management (SIEM) system
AnswerD

SIEM automates log monitoring and alerting.

Why this answer

A SIEM system automates log collection, correlation, and alerting, ensuring that firewall logs are monitored and reviewed in a timely manner. Option A is incorrect; archiving logs to read-only medium preserves logs but does not enforce review. Option B is incorrect; disabling low-priority logging reduces data but does not address the lack of review.

Option C is incorrect; increasing retention extends storage but still requires manual review, which is the root problem.

181
MCQhard

A vulnerability scan identifies a critical vulnerability on a web server with a CVSS score of 9.8. The server hosts a public-facing application. However, the patch would require a reboot that would cause downtime during business hours. What should the security administrator do FIRST?

A.Assess the risk and implement compensating controls if possible
B.Schedule the patch for the next maintenance window without further analysis
C.Apply the patch immediately during business hours
D.Document the exception and ignore the vulnerability
AnswerA

Perform risk assessment to determine if the vulnerability can be mitigated via other controls (e.g., WAF) or if downtime is necessary.

Why this answer

The first step is to assess the risk and prioritise based on exploitability and asset criticality. A CVSS 9.8 vulnerability is critical, so immediate action is needed, but the administrator should evaluate compensating controls before applying the patch.

182
Multi-Selecthard

A forensic investigator is collecting evidence from a compromised Windows server. According to the order of volatility, which THREE pieces of evidence should be collected FIRST? (Select THREE)

Select 3 answers
A.System event logs
B.Hard drive image
C.Network connections and open ports
D.Contents of RAM (memory dump)
E.List of running processes
AnswersC, D, E

Current network state is volatile and can change rapidly.

Why this answer

Network connections and open ports (C) are highly volatile because they can change rapidly and are lost when the system is disconnected from the network. Capturing this data first preserves evidence of active remote connections, which is critical for identifying the attacker's point of entry and ongoing malicious activity. Tools like netstat -anob or CurrPorts can be used to collect this information before any other forensic steps.

Exam trap

ISC2 SSCP often tests the misconception that event logs are volatile because they are 'system state' data, but logs are written to disk and persist; the trap is confusing 'important' with 'volatile'.

183
MCQmedium

Refer to the exhibit. The security analyst sees this event from a user workstation. What is the most likely conclusion?

A.A malware is spreading
B.A legitimate administrator added a user
C.A user is trying to escalate privileges
D.A failed login attempt
AnswerC

The net localgroup command is often used for privilege escalation.

Why this answer

The event shows a user account (likely a standard user) attempting to add itself to a privileged group such as the local Administrators group. This action requires administrative rights, and the attempt by a non-admin user to modify group membership is a classic privilege escalation technique. The security analyst should recognize this as an unauthorized attempt to gain higher access, not a normal administrative action.

Exam trap

ISC2 often tests the distinction between a legitimate administrative action and a privilege escalation attempt by hiding the user context — the trap here is assuming that any group addition is benign, when the key detail is that the action was performed from a non-privileged account.

How to eliminate wrong answers

Option A is wrong because the event describes a single user account modification, not the lateral movement or file propagation characteristic of malware spreading. Option B is wrong because a legitimate administrator would typically use a dedicated admin account or a tool like 'net localgroup Administrators /add' with proper elevation, not from a standard user workstation without evidence of administrative context. Option D is wrong because the event shows a successful addition of a user to a group, not a failed authentication attempt (which would generate Event ID 4625, not 4732 or similar group membership events).

184
Multi-Selectmedium

A company wants to implement multi-factor authentication (MFA) for remote access. Which THREE of the following are examples of different authentication factors? (Choose THREE.)

Select 3 answers
A.Hardware token and fingerprint
B.Retina scan and iris scan
C.Smart card and PIN
D.Password and security question
E.Password and one-time passcode from a token
AnswersA, C, E

This combines a hardware token (possession) and a fingerprint (inherence) - two different factors, so it is correct.

Why this answer

Multi-factor authentication requires two or more distinct factors from different categories: knowledge, possession, and inherence. Option A combines a hardware token (possession) and a fingerprint (inherence) - two different factors. Option C combines a smart card (possession) and a PIN (knowledge) - two different factors.

Option E combines a password (knowledge) and a one-time passcode from a token (possession) - also two different factors. Options B and D each use factors from the same category: B uses two inherence factors, and D uses two knowledge factors. Therefore, the three correct answers are A, C, and E.

185
MCQeasy

An employee reports that they cannot access a shared folder on the network. The security administrator checks the permission and finds that the user is in the correct group, but the 'Deny' entry for a different group is blocking access. What is the MOST likely cause?

A.The folder is encrypted with EFS.
B.A Deny ACE is explicitly applied to the user's group.
C.The folder has inherited permissions from the parent.
D.The user is not a member of the correct group.
AnswerB

Deny takes precedence over Allow in NTFS permissions.

Why this answer

In Windows NTFS permissions, a Deny Access Control Entry (ACE) explicitly overrides any Allow ACE, regardless of group membership order. Since the user is in the correct group but a Deny entry on a different group blocks access, the most likely cause is that a Deny ACE is explicitly applied to the user's group (or a group the user belongs to), which takes precedence over Allow permissions. This is a core principle of the Windows discretionary access control model.

Exam trap

ISC2 often tests the misconception that group membership order or inheritance determines permission precedence, when in fact an explicit Deny ACE always overrides any Allow ACE, regardless of the group hierarchy.

How to eliminate wrong answers

Option A is wrong because EFS encryption affects file content access at the file system level, not network share permissions; it does not cause a Deny ACE to block access. Option C is wrong because inherited permissions from the parent folder would not introduce a Deny ACE that overrides the user's explicit Allow unless the Deny is also inherited, but the scenario states the Deny is for a different group, not a conflict of inheritance. Option D is wrong because the user is already confirmed to be in the correct group; the issue is a conflicting Deny ACE, not group membership.

186
MCQeasy

Which protocol and port combination is commonly used for secure remote administration of a server?

A.HTTPS on TCP 443
B.Telnet on TCP 23
C.RDP on TCP 3389
D.SSH on TCP 22
AnswerD

SSH is the standard secure remote administration protocol.

Why this answer

SSH operates on TCP port 22 and provides encrypted remote administration, while Telnet (port 23) is unencrypted. HTTPS (443) is for web traffic, and RDP (3389) is for remote desktop but not primarily for command-line administration.

187
MCQmedium

An organization uses AWS IAM to manage access. Which best practice ensures least privilege?

A.Use a single shared admin account
B.Use root account for administrative tasks
C.Create individual users and assign only necessary permissions
D.Grant all users full access to S3 buckets
AnswerC

Individual users with minimal permissions enforce least privilege.

Why this answer

Creating individual users with only necessary permissions enforces least privilege. Using root account is dangerous. Shared accounts violate accountability.

Granting full S3 access is excessive.

188
MCQeasy

A network administrator is configuring a firewall rule to allow inbound HTTPS traffic to a web server. Which protocol and port should be allowed?

A.UDP port 80
B.UDP port 443
C.TCP port 443
D.TCP port 80
AnswerC

HTTPS uses TCP port 443 by default.

Why this answer

HTTPS (HTTP over TLS) uses TCP as its transport protocol because it requires reliable, connection-oriented delivery for secure web traffic. The default port for HTTPS is 443, as defined in RFC 2818. Therefore, allowing TCP port 443 is the correct firewall rule.

Exam trap

The trap here is that candidates often confuse HTTP (TCP 80) with HTTPS (TCP 443) or mistakenly think HTTPS can use UDP, but the SSCP exam expects you to know that standard HTTPS uses TCP port 443.

How to eliminate wrong answers

Option A is wrong because UDP port 80 is used for HTTP (not HTTPS) and UDP is not the transport protocol for standard web traffic; HTTP uses TCP. Option B is wrong because UDP port 443 is not a standard protocol; HTTPS uses TCP, not UDP, for reliable delivery. Option D is wrong because TCP port 80 is used for unencrypted HTTP traffic, not HTTPS.

189
MCQmedium

During a security audit, it is found that several employees have written their passwords on sticky notes attached to their monitors. Which policy is being violated?

A.Social Media Policy
B.Clean Desk Policy
C.Data Handling Policy
D.Password Policy
AnswerB

Requires clearing desks of sensitive items.

Why this answer

A clean desk policy requires that sensitive information, including passwords, be secured and not left visible.

190
MCQeasy

A university IT department manages a lab of 50 computers running Windows 10 that are used by students for coursework. The computers are joined to a domain and have Group Policy applied to restrict administrative access. Recently, several students were able to install unauthorized software by using the built-in Administrator account, which had the same password on all lab computers. The IT department wants to prevent this without affecting the students' ability to run required academic software. Which of the following is the most effective solution?

A.Configure the computers to only allow standard user accounts.
B.Disable the local Administrator account on all lab computers.
C.Use a tool to assign a unique, random password to the local Administrator account on each computer.
D.Implement Software Restriction Policies to block unauthorized executables.
AnswerC

Assigning a unique, random password to the local Administrator account on each computer prevents students from using a common password to gain administrative access, thereby stopping unauthorized software installations.

Why this answer

Assigning a unique, random password to the local Administrator account on each computer prevents unauthorized use of that account without impacting normal user operations. Option A is incorrect because configuring computers to only allow standard user accounts would prevent students from installing unauthorized software, but it might also block required academic software that needs administrative privileges, and it does not address the vulnerability of the shared Administrator account. Option B is incorrect because disabling the local Administrator account could break legitimate administrative tasks or require alternative methods, and it does not prevent students from using other accounts with admin privileges.

Option D is incorrect because Software Restriction Policies can block unauthorized executables, but they do not prevent students from directly using the Administrator account to bypass restrictions.

191
MCQeasy

A security administrator is tasked with ensuring that only authorized software can run on company workstations. Which security control should be implemented?

A.Antivirus software
B.Patch management
C.Host-based firewall
D.Application whitelisting
AnswerD

Whitelisting ensures only approved software can run, directly meeting the requirement.

Why this answer

Application whitelisting is the correct control because it explicitly defines a list of approved software that is allowed to execute on workstations. This prevents unauthorized or malicious software from running, even if it bypasses other defenses, by enforcing a default-deny policy at the operating system level (e.g., via Windows AppLocker or Software Restriction Policies). Unlike antivirus, which relies on signatures to detect known threats, whitelisting blocks unknown or unapproved executables by default.

Exam trap

The trap here is that candidates often confuse 'preventing unauthorized software' with 'detecting malware,' leading them to choose antivirus software, but the question specifically asks for a control that ensures only authorized software can run, which requires a default-deny approach like application whitelisting rather than a detection-based tool.

How to eliminate wrong answers

Option A is wrong because antivirus software uses signature-based or heuristic detection to identify known malware, but it cannot prevent execution of unauthorized or custom-coded software that is not yet in its database. Option B is wrong because patch management ensures software is up-to-date with security fixes, but it does not control which applications are allowed to run; it only addresses vulnerabilities in already-installed software. Option C is wrong because a host-based firewall controls network traffic to and from the workstation based on ports and protocols, but it does not restrict which applications can execute locally on the system.

192
MCQmedium

A company detects ransomware on a file server. The ransomware is currently encrypting files. Which containment strategy should be implemented FIRST?

A.Run antivirus to remove the ransomware
B.Notify all users to change passwords
C.Disconnect the server from the network
D.Restore files from backup
AnswerC

Network isolation prevents lateral movement and further encryption.

Why this answer

The immediate priority in ransomware containment is to isolate the compromised server from the network to prevent the encryption process from spreading to other systems. Disconnecting the network cable or disabling the network interface stops the ransomware from communicating with command-and-control servers and blocks lateral movement via SMB or other protocols. This containment step must occur before any remediation like antivirus scans or file restoration.

Exam trap

The trap here is that candidates often choose to run antivirus first, thinking removal stops the attack, but the SSCP exam emphasizes that containment (stopping the spread) must precede eradication (removing the malware).

How to eliminate wrong answers

Option A is wrong because running antivirus on an actively encrypting server may trigger the ransomware to accelerate encryption or delete files, and removal does not stop the ongoing encryption process. Option B is wrong because notifying users to change passwords is a post-containment or post-incident step; it does not halt the active encryption or network propagation of the ransomware. Option D is wrong because restoring files from backup should only be performed after the ransomware is fully contained and removed; attempting restoration while the ransomware is active will result in immediate re-encryption of restored files.

193
MCQmedium

A company deploys a web application and wants to protect against SQL injection and XSS attacks. Which security control is specifically designed to inspect HTTP traffic and block such attacks?

A.Intrusion Detection System (IDS)
B.Network segmentation
C.Web Application Firewall (WAF)
D.Host-based firewall
AnswerC

WAF inspects application-layer traffic and blocks malicious requests.

Why this answer

A Web Application Firewall (WAF) filters and monitors HTTP traffic between a web application and the Internet, commonly used to block OWASP Top 10 attacks like SQL injection and XSS.

194
MCQhard

Based on the exhibit, what is the most appropriate immediate action?

A.Schedule patching during the next change window in 30 days
B.Apply the vendor patch to the host as soon as possible
C.Run another vulnerability scan to confirm the finding
D.Ignore the vulnerability because it's a false positive
AnswerB

Immediate action needed to mitigate critical RCE vulnerability on critical system.

Why this answer

The exhibit shows a critical remote code execution vulnerability with a CVSS score of 9.8, which poses an immediate threat to the host. Applying the vendor patch as soon as possible is the most appropriate action because it directly eliminates the risk without delay, aligning with the principle of timely remediation for high-severity vulnerabilities.

Exam trap

The trap here is that candidates may choose to rescan or delay patching due to change management policies, failing to recognize that critical remote code execution vulnerabilities require immediate out-of-cycle patching to prevent imminent compromise.

How to eliminate wrong answers

Option A is wrong because scheduling patching in 30 days for a critical remote code execution vulnerability (CVSS 9.8) leaves the host exposed to active exploitation, which violates the immediate response required for such high-risk findings. Option C is wrong because running another vulnerability scan would only reconfirm the already validated finding, wasting time that could be used for remediation; the scan result is assumed accurate based on the exhibit. Option D is wrong because ignoring the vulnerability as a false positive is dangerous given the critical severity and known exploitability of the CVE; false positives are rare for such well-documented remote code execution vulnerabilities.

195
MCQeasy

Refer to the exhibit. An AWS S3 bucket policy is defined as shown. Which statement about this policy is TRUE?

A.The company-public bucket objects are completely private
B.The Deny statement prevents all access to both buckets
C.Any user can read objects in the company-public bucket
D.The policy applies to all buckets in the account
AnswerC

Principal '*' and Action 's3:GetObject' allows public read access.

Why this answer

The policy includes an Allow statement that grants the s3:GetObject action to principal "*" on the company-public bucket, making objects publicly readable. The Deny statement only applies to the company-private bucket, not to company-public. Therefore, any user can read objects in company-public.

Option A is incorrect because the policy does make the company-public bucket objects publicly accessible. Option B is incorrect because the Deny statement only denies access to company-private, not all access to both buckets. Option D is incorrect because the policy specifies resource ARNs for particular buckets, not all buckets.

196
MCQhard

A company has a policy requiring segregation of duties (SoD) for financial transactions. Which scenario represents a violation of this principle?

A.The system administrator performs backups, and the security officer reviews audit logs
B.The finance officer approves invoices and also reconciles the bank statements
C.Two managers must each approve any expenditure over $10,000
D.The purchasing manager creates purchase orders, and the accounts payable clerk processes payments
AnswerB

This combines authorization with verification, a SoD violation.

Why this answer

It violates segregation of duties: the same person both approves invoices (authorization) and reconciles bank statements (review/monitoring), combining incompatible duties that could allow fraud or error to go undetected. Option A is not a violation because backup and audit log review are separate functions typically performed by different roles. Option C is not a violation; requiring two approvals for large expenditures is a control to enforce dual authorization, not a violation of SoD.

Option D maintains separation because the purchasing manager creates orders (initiation) and the accounts payable clerk processes payments (execution), with oversight.

197
MCQhard

An organization uses a SIEM to correlate events. The SIEM receives Windows Security Event ID 4625 (failed login) and 4776 (credential validation). An analyst wants to detect a brute-force attack against a service account. Which correlation rule is most effective?

A.Alert on more than 10 failed logins from a single IP in 5 minutes
B.Alert on successful logins after multiple failures
C.Alert on multiple failed logins for the same account from different source IPs in 10 minutes
D.Alert on any Event ID 4625 or 4776 with severity high
AnswerC

Detects distributed brute force against a single account.

Why this answer

A brute-force attack against a service account typically involves multiple failed login attempts from different source IPs, as attackers often distribute their attempts to evade IP-based blocking. Correlating Event ID 4625 (failed login) and 4776 (credential validation) across multiple source IPs for the same account within a short time window (e.g., 10 minutes) directly identifies this distributed brute-force pattern, which a single-IP threshold would miss.

Exam trap

The trap here is that candidates often fixate on a single IP threshold (Option A) because it seems intuitive, but the SSCP exam tests the understanding that modern brute-force attacks distribute across many IPs, making account-based correlation across source IPs the correct detection method.

How to eliminate wrong answers

Option A is wrong because alerting on more than 10 failed logins from a single IP in 5 minutes is too narrow; attackers can easily rotate IPs (e.g., using a botnet or proxy chain) to stay under the threshold, missing distributed brute-force attacks. Option B is wrong because alerting on successful logins after multiple failures is a post-compromise indicator, not a detection of the brute-force attempt itself; it may also generate false positives from legitimate password resets or user errors. Option D is wrong because setting severity high on every Event ID 4625 or 4776 would overwhelm analysts with noise from routine failed logins (e.g., mistyped passwords, expired credentials) and lacks the correlation needed to distinguish a brute-force attack from normal activity.

198
MCQmedium

A change request to update a firewall rule has been submitted. After impact assessment, the change is approved by the Change Advisory Board (CAB). What is the NEXT step in the change management process?

A.Perform post-implementation review
B.Develop a rollback plan
C.Implement the change in production
D.Test the change in a staging environment
AnswerD

Testing in a non-production environment helps identify issues before deployment.

Why this answer

After CAB approval, the next step is to test the change in a staging environment that mirrors production. This validates the firewall rule change does not introduce security gaps or performance issues before deployment. Testing in staging ensures the rule syntax, order, and interaction with existing rules are correct, preventing unintended access or denial of service.

Exam trap

The trap here is that candidates confuse the order of steps, thinking CAB approval immediately leads to production implementation, but the correct sequence requires testing in a staging environment first to validate the change.

How to eliminate wrong answers

Option A is wrong because a post-implementation review occurs after the change is deployed, not before implementation. Option B is wrong because developing a rollback plan is part of the planning phase, typically done before CAB approval, not after. Option C is wrong because implementing directly in production without prior testing in a staging environment violates change management best practices and could cause network outages or security breaches.

199
Matchingmedium

Match each vulnerability assessment tool to its use.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Network scanning and port discovery

Vulnerability scanning

Exploitation framework

Packet analysis

Why these pairings

Correct matches: Nmap for network mapping, Nessus for vulnerability scanning, Wireshark for packet analysis, Metasploit for exploitation testing. Common confusions include swapping Nmap with Nessus or confusing packet analysis with vulnerability scanning.

200
MCQmedium

A company wants to deploy a network IDS that can analyze traffic patterns and detect anomalies. Where should the IDS sensor be placed to monitor all traffic on a network segment without introducing latency?

A.Inline between the router and the switch
B.At the core switch as a transparent bridge
C.On the same segment as the router
D.Connected to a switch SPAN port
AnswerD

SPAN port copies traffic for monitoring without affecting flow.

Why this answer

A passive tap or SPAN port allows the IDS to monitor traffic without being inline, avoiding latency.

201
MCQhard

Which of the following best describes the difference between HMAC and a simple hash function like SHA-256 when used for message authentication?

A.HMAC is faster than SHA-256
B.SHA-256 produces a larger digest than HMAC
C.HMAC provides integrity and authentication; SHA-256 provides only integrity
D.HMAC is used for encryption, not hashing
AnswerC

Correct: HMAC uses a key for authentication.

Why this answer

HMAC incorporates a secret key into the hash process, providing authentication that a simple hash cannot.

202
Multi-Selecthard

During a post-incident review, the incident response team identifies several areas for improvement. According to NIST SP 800-61, which THREE activities are typically part of the post-incident activity phase?

Select 3 answers
A.Patch all systems in the organization as a precaution
B.Update the incident response plan based on findings
C.Replace all affected hardware immediately
D.Conduct a lessons learned meeting
E.Track metrics such as MTTD and MTTR
AnswersB, D, E

The plan should be updated to incorporate lessons learned.

Why this answer

NIST SP 800-61 explicitly states that the post-incident activity phase includes updating the incident response plan based on lessons learned and findings from the incident. This ensures the plan evolves to address gaps and improve future response effectiveness.

Exam trap

The trap here is confusing operational recovery actions (like patching or hardware replacement) with the analytical and improvement-focused activities that define the post-incident phase per NIST SP 800-61.

203
MCQhard

An organization experiences a ransomware attack that encrypts file servers. The annualized loss expectancy (ALE) for this risk is calculated as $150,000. The single loss expectancy (SLE) is $30,000. What is the annualized rate of occurrence (ARO)?

A.0.2
B.4.5
C.0.5
D.5
AnswerD

ARO = ALE / SLE = 150,000 / 30,000 = 5.

Why this answer

The annualized rate of occurrence (ARO) is calculated by dividing the annualized loss expectancy (ALE) by the single loss expectancy (SLE): ARO = ALE / SLE = $150,000 / $30,000 = 5. This means the ransomware attack is expected to occur five times per year, which is a key metric in quantitative risk analysis for prioritizing security controls.

Exam trap

The trap here is that candidates often confuse the formula and divide SLE by ALE instead of ALE by SLE, leading to the incorrect fractional answer (0.2) rather than the correct integer (5).

How to eliminate wrong answers

Option A (0.2) is wrong because it incorrectly inverts the formula, dividing SLE by ALE (30,000 / 150,000 = 0.2), which would imply the event occurs once every five years, not five times per year. Option B (4.5) is wrong because it likely results from a miscalculation, such as subtracting or misplacing a decimal, and does not correspond to any correct risk formula. Option C (0.5) is wrong because it represents half an occurrence per year, which would require an ALE of $15,000 (SLE × 0.5), not the given $150,000.

204
MCQmedium

An attacker sends a gratuitous ARP reply associating the attacker's MAC address with the default gateway's IP address. Which attack is being performed, and what is the primary risk?

A.DNS poisoning; risk is traffic redirection to malicious sites.
B.DHCP starvation; risk is denial of service.
C.SYN flood; risk is resource exhaustion.
D.ARP spoofing; risk is man-in-the-middle traffic interception.
AnswerD

The attacker positions themselves between the victim and gateway.

Why this answer

ARP spoofing allows the attacker to intercept traffic meant for the gateway, performing a man-in-the-middle attack.

205
MCQhard

An organization deploys a firewall that examines the entire packet, including application-layer data, and can block specific commands or content. Which type of firewall is this?

A.Stateful firewall
B.Application proxy firewall
C.Next-generation firewall
D.Stateless packet filter
AnswerB

Application proxy firewalls terminate and inspect application-layer protocols, allowing granular control.

Why this answer

An application proxy firewall (also known as an application-layer gateway) performs deep inspection of application traffic and can filter based on application content.

206
MCQhard

During a risk assessment, a team identifies that the annualized loss expectancy (ALE) for a critical asset is $50,000. A proposed control costs $15,000 per year and will reduce the annualized rate of occurrence (ARO) from 5 to 1. The single loss expectancy (SLE) is unchanged at $10,000. What is the net benefit of implementing the control?

A.$40,000
B.$10,000
C.$35,000
D.$25,000
AnswerD

ALE reduction minus control cost equals net benefit.

Why this answer

The current ALE is $50,000 (ARO of 5 × SLE of $10,000). With the control, ARO drops to 1, so the new ALE is $10,000 (1 × $10,000). The reduction in ALE is $40,000.

Subtracting the annual control cost of $15,000 gives a net benefit of $25,000. This aligns with the formula: Net Benefit = (Old ALE – New ALE) – Annual Control Cost.

Exam trap

The trap here is that candidates often forget to subtract the annual control cost from the risk reduction (ALE reduction), mistakenly selecting the risk reduction amount ($40,000) as the net benefit.

How to eliminate wrong answers

Option A is wrong because $40,000 is the reduction in ALE (the risk reduction), not the net benefit after subtracting the $15,000 annual control cost. Option B is wrong because $10,000 is the new ALE after the control, not the net benefit. Option C is wrong because $35,000 would result from incorrectly subtracting the control cost from the old ALE ($50,000 – $15,000) without accounting for the reduced ALE.

207
MCQmedium

A company's log management solution is overwhelmed by high-volume logs from network devices, causing storage and analysis delays. Which strategy would best improve the efficiency of the log management process?

A.Increase the storage capacity of the log server
B.Increase the frequency of log analysis cycles
C.Implement log filtering and prioritization rules
D.Reduce the number of devices sending logs
AnswerC

Filtering reduces volume and focuses on important events.

Why this answer

Implementing log filtering and prioritization rules (Option C) directly addresses the root cause of the problem by reducing the volume of irrelevant or low-priority logs before they are stored or analyzed. This improves both storage efficiency and analysis speed, as the log management system processes only meaningful events, such as those matching security or performance thresholds, rather than being overwhelmed by high-frequency noise like repeated informational syslog messages.

Exam trap

ISC2 often tests the misconception that adding more resources (storage or processing frequency) is the solution to data overload, when in fact the correct approach is to reduce the data volume through intelligent filtering and prioritization.

How to eliminate wrong answers

Option A is wrong because simply increasing storage capacity does not solve the analysis delay; it only postpones the storage issue while the system continues to process and store the same high volume of logs, potentially worsening performance. Option B is wrong because increasing the frequency of log analysis cycles would further strain the already overwhelmed system, leading to greater delays and resource contention, not efficiency. Option D is wrong because reducing the number of devices sending logs is a drastic measure that compromises network visibility and security monitoring, and it does not address the underlying problem of inefficient log handling from the remaining devices.

208
MCQeasy

A company wants to ensure that employees understand the proper use of corporate email and internet. Which policy should they implement?

A.Data Handling Policy
B.Remote Access Policy
C.Acceptable Use Policy
D.Password Policy
AnswerC

Defines acceptable use of IT resources.

Why this answer

An Acceptable Use Policy (AUP) defines the rules and guidelines for using corporate IT resources, including email and internet. It specifies permitted and prohibited activities, such as personal browsing, sending sensitive data, or accessing inappropriate content, ensuring employees understand their responsibilities. This policy directly addresses the company's goal of educating employees on proper usage, unlike other policies that focus on data classification, remote connectivity, or authentication.

Exam trap

The SSCP exam often tests the distinction between policies that are broad (like AUP) versus those that are narrowly focused on specific technical controls (like password or remote access), leading candidates to confuse a general usage guideline with a security control policy.

How to eliminate wrong answers

Option A is wrong because a Data Handling Policy governs how data is classified, stored, transmitted, and disposed of, not the general use of email and internet by employees. Option B is wrong because a Remote Access Policy specifies requirements for connecting to the corporate network from external locations (e.g., VPN protocols, multi-factor authentication), not day-to-day email and internet usage. Option D is wrong because a Password Policy defines password complexity, rotation, and management rules, not acceptable behaviors for email and internet use.

209
Multi-Selecthard

A security engineer is designing a federated identity solution for cross-domain authentication. Which THREE of the following technologies are commonly used?

Select 3 answers
A.Kerberos
B.Lightweight Directory Access Protocol (LDAP)
C.OpenID Connect (OIDC)
D.Security Assertion Markup Language (SAML)
E.Active Directory forest trusts
AnswersC, D, E

OIDC is an authentication layer on top of OAuth 2.0 for federated identity.

Why this answer

Federated identity relies on standards like SAML, OAuth/OIDC, and Active Directory forest trusts to enable authentication across domains.

210
MCQeasy

What is the primary purpose of a baseline configuration in configuration management?

A.To provide a consistent, secure starting point for systems
B.To store configuration items in the CMDB
C.To detect malware infections
D.To track software licenses
AnswerA

Correct. Baselines ensure systems are hardened and consistent.

Why this answer

A baseline configuration in configuration management defines a known, secure, and consistent state for a system at a specific point in time. This baseline serves as the foundation for all subsequent changes, ensuring that systems are deployed with hardened settings and that any deviations can be detected and remediated. It directly supports security operations by enforcing minimum security standards and simplifying compliance auditing.

Exam trap

ISC2 often tests the distinction between a baseline configuration (the desired secure state) and the CMDB (the database that stores configuration items), so candidates mistakenly select the CMDB option because they confuse the repository with the purpose of the baseline itself.

How to eliminate wrong answers

Option B is wrong because storing configuration items in the CMDB is a function of the Configuration Management Database, not the purpose of a baseline configuration; a baseline is a snapshot of configuration items, not the storage repository itself. Option C is wrong because detecting malware infections is the role of antivirus or endpoint detection and response (EDR) tools, not a baseline configuration; while a baseline can help identify unauthorized changes that may indicate malware, its primary purpose is not detection. Option D is wrong because tracking software licenses is a function of license management or asset management tools, not the primary purpose of a baseline configuration; baselines focus on system settings and security posture, not license compliance.

211
MCQeasy

Which of the following is the primary purpose of a chain of custody form in digital forensics?

A.To track the possession and handling of evidence from collection to presentation
B.To document the steps taken to contain an incident
C.To record the hash values of forensic images
D.To provide a list of approved forensic tools
AnswerA

Correct. Chain of custody ensures evidence integrity and admissibility.

Why this answer

Chain of custody documents who handled the evidence, when, and why, ensuring it remains admissible in court.

212
MCQmedium

A company wants to deploy a firewall that can track the state of active connections and make decisions based on the context of traffic flows. Which firewall type should they choose?

A.Stateless packet filter
B.Stateful firewall
C.Application proxy firewall
D.Next-generation firewall
AnswerB

Stateful firewalls track connection state for context-aware filtering.

Why this answer

Stateful firewalls maintain a state table and track the state of connections, allowing them to make more intelligent filtering decisions compared to stateless packet filters.

213
MCQmedium

A security administrator is configuring a system to enforce separation of duties. In which access control model is this principle most directly implemented?

A.RBAC
B.MAC
C.ABAC
D.DAC
AnswerA

RBAC enforces separation of duties through role constraints.

Why this answer

RBAC commonly enforces separation of duties by ensuring that conflicting roles are not assigned to the same user.

214
MCQeasy

A small business wants to protect its data from ransomware. Which backup strategy provides the BEST protection against an attack where the backup files are also encrypted?

A.Daily backups to a network attached storage (NAS) device
B.Daily cloud backups with versioning
C.Weekly backups to an external hard drive connected via USB
D.Weekly backups to tape stored in a fireproof safe offline
AnswerD

Offline tapes are physically disconnected and cannot be encrypted by ransomware.

Why this answer

An offline (air-gapped) backup is not accessible from the network, preventing ransomware from encrypting it. Option A is wrong because a NAS device is network-attached, so ransomware can encrypt it if the network is compromised. Option B is wrong because cloud backups are also accessible from the network and can be encrypted by ransomware if credentials are compromised.

Option C is wrong because an external hard drive connected via USB, when attached to the system, is accessible to ransomware and can be encrypted.

215
MCQhard

During a post-incident review, the incident response team identifies that the mean time to detect (MTTD) was 14 days. Which improvement would most directly reduce MTTD?

A.Implementing stricter access control policies
B.Conducting more frequent tabletop exercises
C.Deploying additional endpoint detection and response (EDR) sensors with automated alerting
D.Increasing the frequency of full system backups
AnswerC

Correct. Enhanced detection tools reduce MTTD.

Why this answer

Deploying additional EDR sensors with automated alerting directly reduces the time between an incident's occurrence and its detection by providing continuous monitoring and immediate notification of suspicious activities. This shortens the MTTD because automated alerts eliminate the delay inherent in manual log review or periodic checks, enabling the incident response team to react within minutes rather than days.

Exam trap

The trap here is that candidates often confuse detection speed (MTTD) with prevention or recovery metrics, mistakenly thinking that improving backups (Option D) or access controls (Option A) will help detect incidents faster, when in fact they address different phases of the incident response lifecycle.

How to eliminate wrong answers

Option A is wrong because stricter access control policies primarily reduce the likelihood of an incident (prevention) or limit the blast radius, but they do not improve detection speed; MTTD is a detection metric, not a prevention or containment metric. Option B is wrong because tabletop exercises improve team preparedness and response procedures, but they do not directly affect the speed of detecting real incidents; they focus on reaction and coordination after detection, not on reducing detection latency. Option D is wrong because increasing the frequency of full system backups improves data recovery capabilities and reduces recovery time objectives (RTO), but backups do not provide real-time visibility into ongoing malicious activity and thus have no direct impact on MTTD.

216
MCQeasy

Refer to the exhibit. A network administrator implements this ACL on a border router. What is the effect?

A.SSH to 192.168.1.100 is permitted from any source
B.SSH is completely blocked
C.All traffic to 192.168.1.100 is permitted
D.Only SSH from external networks is blocked
AnswerA

The permit rule applies to any source destined to that host on port 22.

Why this answer

The ACL explicitly permits TCP traffic sourced from any IP address destined to 192.168.1.100 on port 22, which is the default port for SSH. Since the ACL is applied inbound on the border router's external interface, it allows SSH connections from any external source to reach the internal host 192.168.1.100, while implicitly denying all other traffic.

Exam trap

ISC2 often tests the implicit deny all at the end of an ACL, leading candidates to mistakenly think that only explicitly denied traffic is blocked, when in fact all traffic not explicitly permitted is denied.

How to eliminate wrong answers

Option B is wrong because the ACL does not block SSH; it explicitly permits SSH to 192.168.1.100, so SSH is not completely blocked. Option C is wrong because the ACL only permits TCP port 22 (SSH) to 192.168.1.100; all other traffic to that IP is implicitly denied by the implicit deny all at the end of the ACL. Option D is wrong because the ACL permits SSH from any source, including external networks, so SSH from external networks is not blocked; it is allowed.

217
MCQmedium

An attacker sends a flood of DHCP request packets with spoofed MAC addresses to exhaust the DHCP server's IP address pool, preventing legitimate clients from obtaining IP addresses. This attack is known as:

A.ARP poisoning
B.MAC flooding
C.DHCP starvation
D.DHCP spoofing
AnswerC

Correct description of the attack.

Why this answer

DHCP starvation exhausts the IP pool by sending many fake DHCP requests, leading to denial of service.

218
MCQmedium

Which wireless security standard introduced the Simultaneous Authentication of Equals (SAE) handshake to replace the pre-shared key (PSK) method?

A.802.11i
B.WEP
C.WPA3
D.WPA2
AnswerC

WPA3 introduces SAE (a variant of Dragonfly) for secure key exchange.

Why this answer

WPA3 replaced WPA2's PSK with SAE, which provides forward secrecy and is resistant to offline dictionary attacks.

219
Multi-Selecthard

Which THREE of the following are best practices for securely managing cryptographic keys in an enterprise environment?

Select 3 answers
A.Use the same key for encryption and decryption (symmetric) and also for signing.
B.Share keys via email encrypted with the recipient's public key.
C.Implement key escrow to allow recovery of encrypted data.
D.Rotate keys on a regular schedule or upon compromise.
E.Store keys in a hardware security module (HSM).
AnswersC, D, E

Key escrow ensures that encrypted data can be recovered if keys are lost or unavailable.

Why this answer

The correct answers are C, D, and E. Option C: Key escrow enables recovery of encrypted data when keys are lost, which is a best practice for enterprise environments. Option D: Regular key rotation limits the impact of a key compromise and is a fundamental security practice.

Option E: Storing keys in an HSM provides tamper-resistant hardware protection. Option A is incorrect because using the same key for both encryption and signing violates key separation principles. Option B is incorrect because email is not a secure channel for sharing keys; encrypted email is still vulnerable to interception or misconfiguration.

220
MCQmedium

A Linux administrator needs to configure access controls so that a specific user can run certain commands with root privileges without entering a password. Which configuration file should be modified?

A./etc/shadow
B./etc/passwd
C./etc/sudoers
D./etc/security/limits.conf
AnswerC

sudoers defines sudo permissions.

Why this answer

The /etc/sudoers file controls sudo permissions. By adding an appropriate entry, the administrator can grant passwordless sudo access to specific commands.

221
MCQeasy

An organization wants to prevent unauthorized persons from entering a secure server room. Which control is the MOST effective?

A.Install a CCTV camera at the entrance
B.Require biometric authentication (fingerprint or retina scan) to unlock the door
C.Post a security guard at the entrance during business hours
D.Use a keypad with a unique code for each employee
AnswerB

Biometrics provide strong authentication specific to the individual.

Why this answer

Biometric authentication (fingerprint or retina scan) is the most effective control because it verifies the unique physiological characteristics of an individual, making it extremely difficult to bypass, share, or forge. Unlike knowledge-based (keypad code) or possession-based (key card) factors, biometrics provide strong, non-repudiable proof of identity, which is critical for high-security areas like a server room.

Exam trap

The trap here is that candidates often choose a keypad with a unique code (Option D) thinking it is 'unique per employee' and therefore secure, but they overlook that codes can be easily shared or stolen via shoulder surfing, whereas biometrics are inherently tied to the individual and cannot be transferred.

How to eliminate wrong answers

Option A is wrong because a CCTV camera is a detective control that only records events; it does not prevent unauthorized entry, as it cannot stop a person from walking through the door. Option C is wrong because a security guard is a physical control that can be effective but is limited to business hours, leaving the server room vulnerable during off-hours, and guards can be distracted or bypassed. Option D is wrong because a keypad with a unique code relies on a knowledge factor that can be shared, observed (shoulder surfing), or guessed, and codes can be forgotten or written down, compromising security.

222
MCQhard

An analyst reviews a Windows security log. Given the event, what is the MOST likely cause of the lockout?

A.The user's password was changed and they are using the old password
B.The user's cached credentials are expired
C.A remote attacker is attempting to brute-force the user's password via RDP
D.The user entered the wrong password at the physical console
AnswerC

Logon Type 10 (RemoteInteractive) is RDP, and a lockout indicates multiple failed attempts.

Why this answer

A Remote Desktop (RDP) session using Logon Type 10 with multiple failed attempts from the same source is indicative of a brute-force attack, which commonly causes account lockouts. Option A is incorrect because using an old password after a password change would typically result in a single failure, not a lockout. Option B is incorrect because expired cached credentials would not trigger a lockout; they would simply prevent authentication.

Option D is incorrect because a single wrong password entry at the physical console would not cause a lockout unless the account lockout threshold is set to 1, which is uncommon; moreover, the logon type for physical console is Logon Type 2, not the RemoteInteractive type mentioned in the scenario.

223
MCQeasy

An organization wants to ensure that only authorized devices can connect to its internal network. Which of the following should be implemented?

A.Intrusion detection system
B.Port security on switches
C.Network access control (NAC)
D.Virtual private network
AnswerC

NAC authenticates devices before network access.

Why this answer

Network Access Control (NAC) is the correct choice because it enforces security policy by evaluating the identity, posture, and compliance of devices before granting network access. NAC solutions (e.g., Cisco ISE, Aruba ClearPass) can authenticate devices via 802.1X, check for antivirus updates or patch levels, and quarantine non-compliant endpoints, ensuring only authorized and healthy devices connect to the internal network.

Exam trap

The trap here is that candidates often confuse Port Security (a Layer 2 MAC-based control) with NAC, but Port Security lacks the authentication, posture assessment, and dynamic policy enforcement that NAC provides, making it insufficient for ensuring only authorized devices connect.

How to eliminate wrong answers

Option A is wrong because an Intrusion Detection System (IDS) monitors network traffic for malicious activity but does not control which devices can connect; it only alerts on threats after they appear. Option B is wrong because Port Security on switches limits MAC addresses per port but is a Layer 2 control that can be bypassed by MAC spoofing and does not authenticate device identity or check compliance. Option D is wrong because a Virtual Private Network (VPN) encrypts traffic between remote users and the network but does not restrict which devices can connect to the internal LAN; it assumes the device is already authorized or uses separate authentication.

224
MCQmedium

An organization is experiencing VM sprawl, with many unmanaged virtual machines running in the environment. Which of the following is the most significant security risk associated with VM sprawl?

A.Unpatched and misconfigured VMs
B.License compliance violations
C.Increased power consumption and cooling costs
D.VM escape attacks from older hypervisors
AnswerA

Unmanaged VMs are often forgotten, leading to security gaps.

Why this answer

Unmanaged VMs often lack proper patching and configuration management, leading to unpatched vulnerabilities that can be exploited.

225
MCQeasy

An e-commerce company runs its web application on a Windows Server 2019 with IIS 10. The security team runs a vulnerability scan and discovers that the server supports TLS 1.0 and several CBC-mode cipher suites, which are prohibited by the company's security policy. The policy requires disabling all versions of TLS below 1.2 and all cipher suites that do not use GCM mode. The administrator needs to implement the required changes without affecting the application's functionality, as it still needs to support a small number of legacy clients that require TLS 1.2 but not CBC. Which action should the administrator take?

A.Upgrade the server to Windows Server 2022, which automatically disables TLS 1.0.
B.Implement a reverse proxy with strong TLS configuration and route all traffic through it.
C.Disable TLS 1.0 via the registry and configure the cipher suite order in IIS to prefer GCM-based ciphers.
D.Apply a hotfix from Microsoft that removes TLS 1.0 support.
AnswerC

This directly implements the policy and only affects prohibited protocols and ciphers.

Why this answer

The administrator can disable TLS 1.0 via the Windows registry (e.g., by creating the 'Enabled' DWORD under 'HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' and setting it to 0) and then configure the cipher suite order in IIS using the 'SchUseStrongCrypto' registry key or the 'Cipher Suites' group policy to prioritize GCM-based ciphers (e.g., TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256). This directly enforces the policy—disabling TLS below 1.2 and non-GCM ciphers—while still allowing legacy clients that support TLS 1.2 with GCM to connect without breaking functionality.

Exam trap

The trap here is that candidates may assume a reverse proxy or an OS upgrade is required to enforce strong TLS settings, when in fact Windows Server 2019 fully supports disabling TLS 1.0 and configuring cipher suites natively through registry and IIS settings without additional hardware or software.

How to eliminate wrong answers

Option A is wrong because upgrading to Windows Server 2022 does not automatically disable TLS 1.0; it only changes default settings, and TLS 1.0 can still be enabled unless explicitly disabled via registry or group policy. Option B is wrong because implementing a reverse proxy adds unnecessary complexity and a potential single point of failure; the policy can be met directly on the IIS server without an additional component, and the question asks for an action the administrator should take, not a workaround. Option D is wrong because there is no Microsoft hotfix that removes TLS 1.0 support; TLS 1.0 is a protocol supported by the Schannel security package and is disabled only through registry configuration, not a hotfix.

Page 2

Page 3 of 13

Page 4