ISC2 CC Practice Test
150 free ISC2 CC practice questions with answers and explanations.
No signup required.
The ISC2 CC exam is administered by ISC2, with a time limit of 2 hours and a 700 out of 1000 points result.
About these practice questions
These are original study questions written from published exam objectives—not recalled, copied, or confidential live-exam items. Always confirm current coverage with the official sources linked on this page.
Browse all questions & answers
Loading the remaining 50 questions…
Security Operations and Incident Response
11 questions1. During the containment phase of incident response for a malware outbreak, which action is most appropriate?
- A. Publicly announce the breach on social media before investigation completes
- B. Immediately delete all logs to save storage space
- C. Restore all systems from the most recent backup without further analysis
- D. Isolate infected hosts from the network to prevent further spread
Show answer & explanation
Answer: D
Containment aims to limit the scope and impact of an incident, and isolating infected hosts (e.g., network segmentation or disconnection) directly stops further spread while preserving evidence for analysis. Deleting logs destroys evidence needed for root-cause analysis and is never appropriate during containment. Public announcements before investigation and legal/communications review can cause reputational and legal harm and are not a containment action. Restoring from backup without analysis risks reintroducing the same vulnerability or malware and belongs to the recovery phase, which should follow eradication, not replace containment.2. Which description correctly distinguishes a virus from a worm?
- A. A worm requires a host file and user action to spread, while a virus propagates across networks on its own
- B. A virus encrypts files and demands payment, while a worm silently records keystrokes and sends them out
- C. A virus disguises itself as legitimate software, while a worm opens a hidden backdoor for remote control
- D. A virus requires a host file and user action to spread, while a worm propagates across networks on its own
Show answer & explanation
Answer: D
Option D is correct: a virus attaches to a host file or program and needs a user to open or run it, while a worm is self-contained and exploits network services to copy itself between systems without any user action. Option A reverses the two definitions. Option B describes ransomware and spyware or keyloggers, which are classified by their payload behavior, not by how they propagate. Option C describes a Trojan horse (malware disguised as legitimate software) and a backdoor; neither term is defined by self-propagation, which is the distinguishing trait of a worm.3. Data has reached the end of its retention period. What should happen?
- A. Deletion of the index and catalog entries while the underlying files are retained, so the data is no longer discoverable by searches
- B. Indefinite retention in an encrypted archive, since data that might be needed for future litigation or analytics should never be discarded
- C. Secure destruction in accordance with the retention schedule, since retaining data beyond its purpose creates exposure without benefit
- D. Transfer to a lower-cost unsecured archive tier so that primary storage is freed while the records remain retrievable by any employee
Show answer & explanation
Answer: C
Option C is correct: the data lifecycle ends with destruction, and NIST SP 800-88 Rev. 1 describes clearing, purging or destroying media so the information is unrecoverable; data kept past its retention period is a liability in a breach and may violate regulations that require deletion. Option B is wrong because indefinite retention keeps the exposure indefinitely, and 'might be useful someday' is not a lawful retention purpose. Option D is wrong because moving data to an unsecured tier lowers protection without ending the exposure. Option A is wrong because deleting an index leaves the files recoverable and discoverable while creating a false record that disposal occurred.4. An organization wants to ensure that a leaked customer database cannot be read even if an attacker copies the raw files from disk. Which control most directly addresses this concern?
- A. Encryption of data at rest
- B. Network segmentation
- C. Multi-factor authentication for administrators
- D. A vulnerability scanning schedule
Show answer & explanation
Answer: A
Encryption at rest renders stored data unreadable without the decryption key, protecting confidentiality even if physical files are exfiltrated. Network segmentation limits lateral movement but does not protect copied files. MFA strengthens authentication to systems but does nothing once files are already off the disk. Vulnerability scanning finds weaknesses but does not itself protect data confidentiality.5. Data is described as being in one of three states. Which are they?
- A. Structured in databases, unstructured in documents, and semi-structured in log or JSON files
- B. Encrypted on disk, decrypted for the application, and hashed for integrity verification
- C. At rest in storage, in transit across a network, and in use in memory during processing
- D. Public, internal-only and confidential, as set by the organization's classification scheme
Show answer & explanation
Answer: C
Option C is correct: data is described as at rest (stored on disk, tape or other media), in transit (moving across a network) and in use (being processed in memory), and each state calls for a different protection, such as storage encryption, TLS or IPsec, and memory protections. Option B lists cryptographic operations applied to data, not the states data can be in. Option D lists classification levels, which describe how sensitive data is rather than where it is at a given moment. Option A lists data formats, which matter for storage and analysis but are not the three security states.6. A hash function is applied to a file. What property makes it useful for verifying integrity?
- A. It produces a fixed-length value that changes if the input changes, and the original input cannot practically be derived from it
- B. It encrypts the file with a symmetric key so that only holders of that key can read it, and the same key later decrypts it
- C. It compresses the file to a smaller size for efficient storage and transfer, and the original can be fully restored on demand
- D. It can be reversed with the correct private key to recover the file, because the hash is the file encrypted under a public key
Show answer & explanation
Answer: A
Option A is correct: a cryptographic hash such as SHA-256 (FIPS 180-4) is a one-way, deterministic function that yields a fixed-length digest; any change to the input changes the digest, and the input cannot practically be recovered from it, which is why recomputing and comparing hashes detects tampering. Option B is wrong because hashing is not encryption; the file remains readable and no key is involved. Option C is wrong because a hash cannot be expanded back into the original; it is not compression. Option D is wrong because a hash is not reversible by any key; digital signatures sign a hash, they do not reverse it.7. Symmetric and asymmetric encryption differ in key usage. What is the practical consequence?
- A. Asymmetric uses one shared key and is fast, while symmetric uses a key pair and solves key distribution, so systems use symmetric to exchange an asymmetric key
- B. Symmetric uses one shared key and is fast, while asymmetric uses a key pair and solves key distribution, so systems use asymmetric to exchange a symmetric key
- C. Only asymmetric encryption can protect data at rest, because symmetric algorithms such as AES are limited by design to protecting data in transit inside TLS sessions
- D. Symmetric encryption needs no key management because the same key is regenerated from the plaintext, while asymmetric key pairs must be rotated after every session
Show answer & explanation
Answer: B
Option B is correct: symmetric algorithms such as AES (FIPS 197) use one shared key and are fast, but every party needs that key securely; asymmetric algorithms such as RSA use a public/private pair, which solves distribution but is slow, so protocols like TLS use asymmetric operations to agree a symmetric session key. Option A reverses the two families. Option D is wrong because symmetric keys are not derived from the plaintext and their distribution is the central key-management problem, while asymmetric pairs are long-lived. Option C is wrong because AES is the standard choice for encrypting data at rest, such as full-disk and database encryption.8. An organization's incident response plan lists the phases in order. Which sequence is correct?
- A. Preparation, detection and analysis, containment, eradication and recovery, and post-incident activity
- B. Preparation, detection and analysis, eradication and recovery, containment, and post-incident activity
- C. Preparation, containment, detection and analysis, eradication and recovery, and post-incident activity
- D. Detection and analysis, preparation, containment, eradication and recovery, and post-incident activity
Show answer & explanation
Answer: A
Option A is correct: NIST SP 800-61 Rev. 2 defines the incident response life cycle as preparation; detection and analysis; containment, eradication and recovery; and post-incident activity, in that order. Option C is wrong because containment cannot begin before an incident has been detected and analyzed. Option D is wrong because preparation (tools, training, plans) must exist before any detection is possible; it is the first phase. Option B is wrong because containment must precede eradication and recovery; removing the cause before bounding the spread lets the incident continue elsewhere.9. A security operations centre monitors alerts around the clock. What is its principal function?
- A. Writing and approving the organization's security policies, standards and procedures on behalf of leadership
- B. Conducting the annual financial and compliance audit and reporting control deficiencies to the audit committee
- C. Detecting, triaging and responding to security events, escalating those requiring broader incident response
- D. Reviewing and approving every production change request before it is scheduled in the change advisory board
Show answer & explanation
Answer: C
Option C is correct: a security operations center is the monitoring and first-response function; it watches alerts around the clock, separates true events from noise, responds to routine ones and escalates those that need the wider incident response team (NIST SP 800-61). Option A is wrong because writing policy is a governance activity for security leadership, not a monitoring function. Option B is wrong because financial and compliance audits belong to internal audit. Option D is wrong because approving changes is the role of change management and the change advisory board; a SOC may be consulted but does not own approvals.10. A patch is released for a critical vulnerability. What should the organization do before deploying it broadly?
- A. Deploy it immediately to every system without testing, since a vendor-released patch for a critical flaw has already been validated by the vendor
- B. Test it in a non-production environment to confirm it does not break dependent systems, weighing the testing delay against the exposure window
- C. Wait until the next quarterly maintenance window so all patches can be bundled into a single change request approved by the change advisory board
- D. Deploy it only to systems that have never recorded an incident, since systems with a history of compromise need a full rebuild before patching
Show answer & explanation
Answer: B
Option B is correct: NIST SP 800-40 Rev. 4 calls for testing patches in a representative non-production environment and then deploying them on a timeline set by severity and exposure, so the organization balances the risk of an outage against the risk of exploitation. Option A is wrong because vendor testing cannot cover an organization's own dependencies; untested patches have caused outages. Option C is wrong because a critical vulnerability cannot wait for a quarterly window; severity drives the timeline. Option D is wrong because incident history has no bearing on whether a system carries the vulnerability, and every affected system needs the patch.11. An alert fires for activity that turns out to be legitimate. What is this called, and why does it matter?
- A. A false positive, and excessive false positives cause analysts to lose confidence and miss genuine alerts
- B. A false negative, and excessive false negatives are the more serious error because real attacks go unnoticed
- C. A true positive, and true positives should be closed quickly so the alert queue reflects only open incidents
- D. A true negative, and true negatives are logged but never reviewed because no malicious activity occurred
Show answer & explanation
Answer: A
Option A is correct: an alert on activity that turns out to be benign is a false positive, and a high false-positive rate causes alert fatigue, in which analysts tune out or close alerts without investigation and genuine intrusions slip through (NIST SP 800-94). Option B is wrong because a false negative is malicious activity that generated no alert; here an alert did fire and the activity was legitimate. Option C is wrong because a true positive is an alert on activity that really was malicious. Option D is wrong because a true negative means benign activity correctly produced no alert, whereas in this case an alert was raised.
Security Principles
36 questions12. A manager is told that a required document must be reviewed often because the technology it covers changes, and that it tells staff how they may properly use one specific technology. Which policy type is it?
- A. Program policy, which creates the security program and assigns resources
- B. Regulatory policy, which restates the obligations imposed by outside law
- C. System-specific policy, which sets operational rules for one named system
- D. Issue-specific policy, which guides proper use of a particular technology
Show answer & explanation
Answer: D
SP 800-12 says issue-specific policies address areas of current relevance, instruct employees on proper usage, are written for each technology the organization uses, and must be reviewed regularly because technology changes quickly. Program policy is the high-level document creating the security program and assigning responsibility. System-specific policy sets security objectives and operational rules for one system. Regulatory obligations are inputs to policy, not a policy tier.13. A candidate needs to reschedule their upcoming CC exam appointment through Pearson VUE. Based on official fee information, what should they expect to pay?
- A. A reschedule fee of U.S. $50
- B. No fee at all, rescheduling is always free
- C. A reschedule fee of U.S. $199, equal to the full exam price
- D. A reschedule fee of U.S. $100
Show answer & explanation
Answer: A
Pearson VUE charges a reschedule fee of U.S. $50 for changing an existing appointment. Rescheduling is not free; a specific fee applies. $199 is the exam registration price, not the reschedule fee, and conflating the two overstates the cost. $100 is actually the cancellation fee amount, not the reschedule fee, so this choice confuses the two distinct charges.14. A twelve-person nonprofit with one part-time IT contractor wants a defensible starting set of CIS Safeguards rather than the whole catalog. Which Implementation Group should it adopt first, and why?
- A. IG1, the essential cyber hygiene every enterprise should start from
- B. IG3, the complete set for organizations facing targeted adversaries
- C. IG2, written for enterprises with dedicated security staff and risk
- D. The CIS Benchmarks, which replace the Safeguards for small offices
Show answer & explanation
Answer: A
CIS defines IG1 as essential cyber hygiene, the foundational set of Safeguards every enterprise should implement regardless of size or resources, which fits a twelve-person nonprofit. IG2 adds Safeguards for organizations with more resources and greater risk exposure. IG3 is the full set for organizations with mature programs and targeted threats. CIS Benchmarks are separate documents giving prescriptive configuration settings for products, not a substitute for the Controls.15. A systems administrator needs prescriptive, vendor-specific settings for locking down a new Windows Server build and asks which published resource gives that level of detail.
- A. The CIS Benchmarks, giving consensus configuration recommendations
- B. The NIST Cybersecurity Framework, describing outcomes across functions
- C. The CIS Critical Security Controls, listing prioritized program activities
- D. The organization's acceptable use policy, governing staff conduct online
Show answer & explanation
Answer: A
CIS Benchmarks are prescriptive configuration recommendations developed by consensus for specific vendor product families, exactly the setting-level guidance a server build needs. The CIS Controls are prioritized program-level safeguards, not per-product settings. The NIST CSF organizes cybersecurity outcomes at a high level and deliberately names no product settings. An acceptable use policy governs how staff may use systems, not how a server is configured.16. After earning the CC certification, what ongoing fee must members who hold only the CC credential pay to maintain it?
- A. An Annual Maintenance Fee (AMF) of U.S. $50
- B. An Annual Maintenance Fee of U.S. $135
- C. No maintenance fee is required for CC holders
- D. An Annual Maintenance Fee equal to the full exam cost each year
Show answer & explanation
Answer: A
Option A is correct: ISC2's member policies state that members who hold only the CC certification pay an Annual Maintenance Fee of U.S. $50, due on the certification cycle start date and each anniversary. Option B is wrong because U.S. $135 is the AMF for members holding any other ISC2 certification, such as the CISSP, not for CC-only members. Option C is wrong because the AMF is not waived; a CC holder who does not pay it faces suspension after the 90-day grace period. Option D is wrong because the AMF is a small fixed fee and is not tied to the U.S. $199 exam registration price.17. A CC-certified professional misses the due date for their Annual Maintenance Fee. According to official policy, how long do they have to pay before facing more serious consequences?
- A. A 10-day grace period from the due date
- B. No grace period; the certification is revoked the day it is due
- C. A 12-month grace period from the due date
- D. A 90-day grace period from the due date
Show answer & explanation
Answer: D
Members are given a 90-day period from the due date to pay their AMF before facing further consequences. A 10-day period significantly understates the actual grace period granted. Certification is not revoked immediately on the due date; a defined grace period exists first. A full 12-month grace period substantially overstates the actual 90-day window.18. What is the current U.S. registration price to sit for the CC exam?
- A. U.S. $199
- B. U.S. $349
- C. U.S. $700
- D. U.S. $50
Show answer & explanation
Answer: A
The registration price for the CC exam is U.S. $199. $50 is actually the Annual Maintenance Fee amount, not the exam registration price, so this choice confuses two separate fees. $349 overstates the actual registration cost. $700 corresponds to the passing score value, not a dollar fee, and using it as a price is a clear mismatch.19. After a signed-in engineer deletes a production database table, the platform team pulls a record showing which account issued the command and at what time. Which element of AAA produced that record?
- A. Accounting, which records the actions a user takes after being admitted
- B. Attestation, which certifies that a platform booted a trusted image
- C. Authorization, which decides which objects an identified user may reach
- D. Authentication, which validates the identity a person claims at sign-in
Show answer & explanation
Answer: A
Accounting is the A in AAA that tracks and records what an identity does once it is on the system, so the delete entry tying the command to an account is an accounting output. Authentication happened earlier, at sign-in. Authorization happened when the account was allowed to run the command. Attestation is a trusted-computing measurement of platform state, not a user activity record.20. An HR analyst asks whether a spreadsheet of employee names, dates of birth and Social Security numbers has to be handled as personally identifiable information. What is the correct answer?
- A. No, because the employees consented when the data was collected
- B. Only once it is joined to records held in the payroll system
- C. Yes, since it can distinguish or trace an individual's identity
- D. No, because the file contains no financial account or card numbers
Show answer & explanation
Answer: C
NIST SP 800-122 defines PII as any information that can be used to distinguish or trace an individual's identity, naming name, Social Security number and date of birth as examples, so the file is PII on its own. Financial data is not a precondition. It does not need to be joined to another system, since the identifiers already single out a person. Consent governs lawful use but does not remove the data from the PII definition.21. A new security manager wants to set out how the company will decide what risks matter before anyone assesses a single system. Which component of the NIST risk management process does that work belong to?
- A. Assessing risk, which identifies threats, weaknesses and likely harm
- B. Monitoring risk, which checks whether controls stay effective over time
- C. Framing risk, which produces the strategy for assessing and responding
- D. Responding to risk, which picks and carries out a course of action
Show answer & explanation
Answer: C
NIST SP 800-39 describes four components, and framing risk comes first: it produces the risk management strategy stating how the organization intends to assess, respond to and monitor risk, including its assumptions and tolerances. Assessing identifies threats and impacts within that frame. Responding selects a course of action once risk is known. Monitoring tracks effectiveness afterwards, so none of the three can precede framing.22. A retailer accepts that a data breach could cost it millions, decides the controls to prevent every case are impractical, and buys a cyber insurance policy to cover the loss. Which risk response is that?
- A. Avoidance, ending the activity that creates the exposure entirely
- B. Mitigation, adding controls that cut the likelihood or the impact
- C. Transfer, shifting the financial consequence to another party
- D. Acceptance, choosing to bear the loss with no further action
Show answer & explanation
Answer: C
NIST lists accepting, avoiding, mitigating, sharing and transferring as the available risk responses; insurance moves the financial consequence to the insurer, which is transfer. Avoidance would mean no longer taking card payments at all. Mitigation would mean adding controls to reduce likelihood or impact, which the retailer rejected as impractical. Acceptance would mean carrying the loss itself, which the policy is bought to prevent.23. A legal review finds that a planned feature storing scanned passports would expose the firm to a risk it cannot control, so leadership cancels the feature before launch. Which risk response did leadership use?
- A. Mitigation, since cancelling reduces the likelihood of a breach a little
- B. Transfer, since the burden now falls on the identity vendor instead
- C. Avoidance, since the activity generating the exposure is not undertaken
- D. Acceptance, since leadership acknowledged the exposure and moved on
Show answer & explanation
Answer: C
Avoidance means not engaging in the activity that gives rise to the risk, and cancelling the passport-storage feature removes the exposure at its source. Acceptance would mean shipping the feature and living with the consequences. Mitigation would mean shipping it with controls such as encryption and short retention. Transfer would mean contracting or insuring the exposure to another party, which no cancellation does.24. After a clinic deploys encryption, access reviews and monitoring, its assessor reports that some chance of a records breach still remains. What is the standard name for the risk left over at that point?
- A. Inherent risk, the exposure measured before any controls are applied
- B. Total risk, the sum of every threat identified during the assessment
- C. Residual risk, the portion remaining after security measures are applied
- D. Risk appetite, the amount of exposure the clinic is willing to pursue
Show answer & explanation
Answer: C
NIST defines residual risk as the portion of risk remaining after security measures have been applied, which is precisely what the assessor describes. Inherent risk is the exposure before controls, measured earlier. Risk appetite is a leadership statement about how much risk the clinic will take, not a measurement of what remains. Total risk describes the whole identified population, not the post-control remainder.25. A board states that the firm will pursue new markets aggressively but will not accept any outage of the trading platform lasting beyond fifteen minutes. Which pair of governance terms does that statement set?
- A. Risk transfer for growth, and an acceptance decision for availability
- B. Risk appetite for growth, and a narrow risk tolerance for availability
- C. Risk assessment for growth, and a residual risk figure for availability
- D. Risk register for growth, and a key performance indicator for availability
Show answer & explanation
Answer: B
Risk appetite is the broad amount and type of risk an organization is willing to pursue, while risk tolerance is the specific level of variation it will withstand for a particular objective, so the board set an appetite for growth and a tight tolerance on trading availability. A risk assessment is analysis, not a leadership boundary. A register records identified risks. Transfer and acceptance are responses chosen after risk is known.26. With no loss history to draw on, a small charity rates each risk as high, moderate or low using workshop judgment rather than dollar figures. Which assessment approach is described, and what is its trade-off?
- A. Semi-quantitative, using binned numbers that still need loss statistics
- B. Qualitative, quick and communicable but hard to compare or defend exactly
- C. Continuous monitoring, automated but useless before controls are chosen
- D. Quantitative, precise in currency but demanding data the charity lacks
Show answer & explanation
Answer: B
NIST SP 800-30 recognizes quantitative, qualitative and semi-quantitative approaches; ranking risks high, moderate or low from judgment is qualitative, which is fast and easy to discuss but resists precise comparison. Quantitative approaches express risk in measurable amounts and need loss data the charity does not have. Semi-quantitative uses bins, scales or representative numbers, a middle path not described here. Continuous monitoring tracks controls already in place.27. A datacenter loses a rack because a cooling unit fails during a heat wave; no attacker and no human error is involved. Under the NIST taxonomy of threat sources, how is this event classified?
- A. Adversarial, an actor seeking to exploit organizational systems
- B. Environmental, a natural disaster striking the facility site
- C. Accidental, an erroneous action by staff doing routine work
- D. Structural, a failure of equipment or environmental controls
Show answer & explanation
Answer: D
NIST SP 800-30 sorts threat sources into adversarial, accidental, structural and environmental; a cooling unit that fails is a failure of environmental controls or equipment, which the taxonomy places under structural. Adversarial requires an actor with capability and intent. Accidental covers mistakes made by users or administrators, and nobody acted here. Environmental covers natural and man-made disasters such as fires, floods and storms, not an internal equipment failure.28. A company publishes a short document stating that all portable media must be encrypted, a second naming AES-256 as the approved algorithm, and a third giving the click-by-click steps to enable it. Name the three in order.
- A. Procedure, then policy, then baseline, moving from broad to specific
- B. Policy, then standard, then procedure, moving from broad to specific
- C. Standard, then guideline, then policy, moving from broad to specific
- D. Guideline, then procedure, then standard, moving from broad to specific
Show answer & explanation
Answer: B
NIST SP 800-12 describes policy as the broad statement of intent, with standards specifying the uniform technologies or parameters to be used and procedures giving the detailed steps for carrying a task out, which matches the encryption rule, the named algorithm and the click-by-click instructions. The other orders invert that hierarchy. A guideline differs again: it offers recommended, non-mandatory practice rather than a required setting or step.29. An executive asks which part of the NIST Cybersecurity Framework 2.0 Core covers setting and communicating the organization's cybersecurity risk strategy, expectations and policy.
- A. The IDENTIFY Function, which builds understanding of assets and risks
- B. The GOVERN Function, added in version 2.0 for strategy and oversight
- C. The RESPOND Function, which handles actions taken about an incident
- D. The PROTECT Function, which puts safeguards around the assets at risk
Show answer & explanation
Answer: B
CSF 2.0 names six Core Functions, and GOVERN is defined as establishing, communicating and monitoring the organization's cybersecurity risk management strategy, expectations and policy. IDENTIFY develops understanding of assets, suppliers and risks. PROTECT applies safeguards to manage those risks. RESPOND covers the actions taken once an incident is detected, and RECOVER restores what the incident affected.30. A security plan lists three measures for a server room: a mandatory annual training course, an encrypted disk, and a badge-controlled door. Classify them as administrative, technical and physical in that order.
- A. Technical, administrative, physical, as the outline groups controls
- B. Administrative, technical, physical, as the outline groups controls
- C. Administrative, physical, technical, as the outline groups controls
- D. Physical, technical, administrative, as the outline groups controls
Show answer & explanation
Answer: B
The CC outline divides cybersecurity controls into technical, administrative and physical. A required training course is administrative because it is a management practice directed at people, disk encryption is technical because it is implemented in the system, and a badge-controlled door is physical because it restricts bodily access to a space. The other orderings misplace at least one of the three, most often calling encryption a physical measure.31. A newly certified analyst discovers that a colleague who also holds the certification has been falsifying vulnerability scan results for a client. What does the ISC2 Code of Ethics require the analyst to do?
- A. Follow the ethics complaint procedure, since silence may itself breach it
- B. Confront the colleague privately, since the canons forbid outside reports
- C. Report to the certification body only after the client suffers a real loss
- D. Take no action, because only the affected client has standing to complain
Show answer & explanation
Answer: A
ISC2 states that members are obligated to follow the ethics complaint procedure upon observing any action by a member that breaches the Code, and that failing to do so may itself be treated as a breach under Canon IV. The client is not the only party who may act. The canons never forbid reporting; Canon IV is about advancing and protecting the profession. Nothing in the procedure requires waiting for a demonstrated loss first.32. A member of the public who was harmed by a certificate holder's conduct wants to file an ethics complaint, and a former employer wants to file about poor service delivered under contract. Which canons may each cite?
- A. The public may cite Canon III, and the employer Canons I or II
- B. The public may cite Canons I or II, and the employer Canon III
- C. The public may cite any canon, and the employer only Canon IV
- D. Neither may file, as only other certified professionals have standing
Show answer & explanation
Answer: B
ISC2 limits standing by canon: any member of the public may complain about a breach of Canons I or II, only principals in an employer or contractor relationship may complain about Canon III, and only other certified or licensed professionals bound by a code of ethics may complain about Canon IV. That makes the public complaint a Canon I or II matter and the former employer's service complaint a Canon III matter, and it rules out the options that widen or swap those rights.33. Which scenario best demonstrates a violation of the integrity component of the CIA triad?
- A. An attacker modifies invoice amounts in transit before they reach the accounting system
- B. A public web server becomes unreachable to customers during a volumetric DDoS attack
- C. An employee's guessed password is used to read personnel files they are not cleared to see
- D. A backup tape containing customer records is left in an unlocked cabinet overnight
Show answer & explanation
Answer: A
Option A is correct: integrity is the assurance that data is accurate and has not been altered without authorization, and changing invoice amounts in transit corrupts that data directly. Option B describes an availability failure; a volumetric DDoS makes the service unreachable but changes no data. Option C is a confidentiality breach: information is read by someone not authorized to see it, while the files themselves remain unchanged. Option D is a weakness in a physical control that exposes the tape to theft or copying, again a confidentiality (and possibly availability) risk rather than an alteration of data.34. The CC exam covers how many total content domains?
- A. 4
- B. 10
- C. 5
- D. 7
Show answer & explanation
Answer: C
Option C is correct: the current ISC2 CC exam outline (effective September 1, 2026) organizes the exam into five domains: Security Principles (24%), Security Governance (17.3%), Identity and Access Management (IAM) Concepts (20%), Networking and Cloud Security Concepts (21.3%), and Security Operations and Incident Response (17.3%). Option A is wrong because four would drop one of the five weighted domains. Option D and Option B are wrong because seven and ten overstate the count; the CISSP, not the CC, is the ISC2 exam with eight domains, and no ISC2 outline has ten.35. Which domain carries the largest single weighting on the CC exam blueprint?
- A. Security Operations and Incident Response at 17.3%
- B. Identity and Access Management (IAM) Concepts at 20%
- C. Security Principles at 24%
- D. Networking and Cloud Security Concepts at 21.3%
Show answer & explanation
Answer: C
Option C is correct: on the current ISC2 CC exam outline (effective September 1, 2026), Security Principles carries 24%, the largest single weighting of the five domains. Option D is wrong because Networking and Cloud Security Concepts is the second-largest domain at 21.3%. Option B is wrong because Identity and Access Management (IAM) Concepts is weighted at 20%, third of the five. Option A is wrong because Security Operations and Incident Response is weighted at 17.3%, tied with Security Governance for the smallest share. Earlier editions of the outline weighted Security Principles at 26%, which is why older study materials give that figure.36. A hospital system prevents unauthorized changes to patient medication records. Which element of the CIA triad is being protected?
- A. Integrity, the assurance that data has not been altered by unauthorized means
- B. Confidentiality, the assurance that only authorized parties can read the data
- C. Availability, the assurance that authorized clinicians can reach records when needed
- D. Non-repudiation, the assurance that a clinician cannot deny having made an entry
Show answer & explanation
Answer: A
Option A is correct: integrity is the property that data has not been modified or destroyed in an unauthorized manner (FIPS 199), and preventing unauthorized changes to medication records protects exactly that. Option B is wrong because confidentiality is violated when an unauthorized person reads the record, not when it is altered. Option C is wrong because availability concerns whether the record can be reached when a clinician needs it, which the control does not address. Option D is wrong because non-repudiation is about proving who performed an action; it supports integrity investigations but is not one of the three CIA triad elements.37. An employee denies having approved a payment, but the approval carries their digital signature. Which security objective makes that denial untenable?
- A. Assurance that systems and data are available to authorized users when needed, supported by redundancy and tested backups
- B. Assurance that a party cannot credibly deny having performed an action, supported by digital signatures and reliable logging
- C. Assurance that only authorized parties can read the data, supported by encryption at rest and in transit and access controls
- D. Assurance that the approval record has not been altered since it was created, supported by hash values and protected change logs
Show answer & explanation
Answer: B
Option B is correct: non-repudiation is the assurance that the sender of information is provided with proof of delivery and the recipient with proof of the sender's identity, so neither can later deny having processed it (NIST SP 800-53 AU-10). A digital signature made with a private key only the employee holds is the classic mechanism. Option A describes availability, which has nothing to do with proving who acted. Option C describes confidentiality; keeping the approval secret does not stop the approver from denying it. Option D describes integrity; a hash proves the record was not altered but does not by itself bind the action to a specific person.38. A privacy regulation grants individuals rights over their personal data. Which is a commonly granted right?
- A. Inspection of the source code of any system that processes their data, with rights to demand changes to it
- B. Access to the data held about them, with rights to correction and, in defined circumstances, erasure
- C. Approval of the organization's annual security budget, with rights to veto spending on processing systems
- D. A share of any revenue the organization derives from their data, with rights to audit the related accounts
Show answer & explanation
Answer: B
Option B is correct: modern privacy laws such as the EU GDPR and the California Consumer Privacy Act grant individuals the right to access the personal data held about them, to have inaccuracies corrected, and in defined circumstances to have it erased (the GDPR's right to erasure is subject to legal retention duties). Option A is wrong because no privacy regime grants individuals access to an organization's source code. Option C is wrong because budget approval is an internal governance matter, not a data-subject right. Option D is wrong because privacy law regulates how data is used and protected; it does not create a revenue-sharing entitlement.39. An organization documents an acceptable use policy. What does it establish?
- A. The rules governing how staff may use organizational systems and data, and the consequences of violating them
- B. The technical configuration standards that servers and workstations must meet before they are placed into production
- C. The procedures for restoring systems and data after a disaster, including recovery priorities and alternate sites
- D. The list of vendors approved for hardware and software purchases, and the procurement steps for adding a new one
Show answer & explanation
Answer: A
Option A is correct: an acceptable use policy defines what users may and may not do with organizational systems, networks and data, and states the consequences of violation; NIST SP 800-53 PL-4 (rules of behavior) requires users to acknowledge it before receiving access. Option B describes configuration standards or secure baselines (CM-2, CM-6), which are technical documents aimed at administrators. Option C describes a disaster recovery plan (CP-2). Option D describes procurement or approved-vendor policy, which governs purchasing rather than user behavior.40. A risk is described as the intersection of a threat and a vulnerability. What does each term mean?
- A. A threat is a potential source of harm, a vulnerability is a weakness it could exploit, and risk is the resulting potential for loss
- B. A threat is a weakness in a system, a vulnerability is the attacker who could exploit it, and risk is the resulting potential for loss
- C. A threat is the loss actually incurred in an incident, a vulnerability is the likelihood of that loss, and risk is the control chosen to reduce it
- D. A threat, a vulnerability and a risk are interchangeable terms for the same thing, and a risk register may list any of them in any column
Show answer & explanation
Answer: A
Option A is correct: NIST SP 800-30 Rev. 1 defines a threat as any circumstance or event with the potential to adversely impact operations or assets, a vulnerability as a weakness that a threat source could exploit, and risk as a measure of the extent to which the organization is threatened, combining likelihood and impact. Option B swaps the terms: the weakness is the vulnerability and the actor is the threat source. Option C confuses risk with its components and with the control that treats it; loss and likelihood are inputs to risk, not definitions of threat and vulnerability. Option D is wrong because the three are distinct, and a risk exists only when a threat can reach a vulnerability.41. A user successfully logs into a system, and the system also verifies that this specific user has permission to open a particular file. What term describes this second step, distinct from the login itself?
- A. Authentication
- B. Authorization
- C. Identification
- D. Accounting
Show answer & explanation
Answer: B
Authorization determines what an already-authenticated user is permitted to do, such as access a specific file, which matches the described second step. Authentication is the process of verifying identity (the login itself), which already occurred before this step. Identification is merely claiming an identity, such as entering a username, which precedes both authentication and authorization. Accounting (or auditing) refers to logging and tracking user activity after access is granted, not determining permission itself.42. A user logs in, is granted access to specific folders, and their actions are recorded. Which three processes are these?
- A. Identification, encryption and logging
- B. Authentication, authorization and accounting
- C. Authorization, authentication and encryption
- D. Registration, validation and archiving
Show answer & explanation
Answer: B
Option B is correct: logging in is authentication (proving the claimed identity), being granted specific folders is authorization (deciding what that identity may do), and recording the actions is accounting, the three A's of access control. Option A is wrong because encryption protects data rather than deciding or recording access, and identification (claiming a username) is only the first step before authentication. Option C is wrong because it substitutes encryption for accounting, so nothing in that triple records what the user did. Option D is wrong because registration, validation and archiving are records-management terms, not the access-control processes described.43. A building uses a badge reader, a security guard and a fence. How are these controls categorized?
- A. All three are technical controls, with the fence corrective, the badge reader detective, and the guard a compensating control substituting for CCTV coverage
- B. All three are physical controls, with the fence deterrent and preventive, the badge reader preventive, and the guard deterrent, preventive and detective
- C. All three are administrative controls, with the fence directive, the badge reader corrective, and the guard preventive because guards enforce written policy
- D. The fence and badge reader are technical controls because they are hardware, while the guard is an administrative control because a person applies the policy
Show answer & explanation
Answer: B
Option B is correct: controls are classified by how they are implemented (physical, technical or administrative) and separately by what they do (deterrent, preventive, detective, corrective, compensating). A fence, a badge reader and a guard are all physical controls, and a guard can deter, prevent and detect at once. Option A is wrong because technical controls are implemented in hardware or software logic such as firewalls and access control lists, and a fence does nothing corrective. Option C is wrong because administrative controls are policies, procedures and training, not barriers or people at a door. Option D is wrong because being hardware does not make a fence technical; physical controls protect facilities and equipment regardless of the mechanism, and a guard is still a physical control.44. A visitor to a secure facility is issued a badge and escorted throughout. Which control principle is being applied?
- A. Access is granted based on need and remains supervised, so presence is authorized but not unrestricted
- B. Visitors present no further risk once their identity has been verified at reception and recorded in the log
- C. Escorting replaces the need for a visitor log, since the escort can personally vouch for the visitor's movements
- D. Badge issuance grants a visitor the same access as an employee badge until it is returned at the end of the day
Show answer & explanation
Answer: A
Option A is correct: issuing a badge and escorting the visitor applies need-based, supervised access, which NIST SP 800-53 PE-3 (physical access control) requires for visitors; the visitor is authorized to be present but not to roam. Option B is wrong because identification establishes who is present, not what they can safely reach; the risk continues throughout the visit. Option C is wrong because PE-8 requires visitor access records; an escort's memory is not an auditable log. Option D is wrong because visitor badges must be visually distinct and time-limited precisely so they do not confer employee-level access.45. What testing methodology does the CC exam use to adjust question difficulty based on a candidate's prior answers?
- A. Open-book scenario-based essay assessment
- B. Linear fixed-form testing with a set item order
- C. Computerized Adaptive Testing (CAT)
- D. Performance-based lab simulation testing
Show answer & explanation
Answer: C
Option C is correct: the ISC2 CC exam outline states that the CC exam uses Computerized Adaptive Testing (CAT), in which the difficulty of subsequent items is adjusted to the candidate's performance on earlier ones. Option B is wrong because a linear fixed form presents the same static set of items in a set order to every candidate and does not adapt. Option D is wrong because the CC uses multiple-choice and advanced item types, not hands-on lab simulations. Option A is wrong because the CC is a closed-book, proctored exam delivered at Pearson VUE testing centers, not an essay or open-book assessment.46. A billing clerk attaches the wrong spreadsheet to a customer email and sends 400 account numbers to an unrelated recipient. Every record stays accurate and reachable. Which security objective was lost?
- A. Confidentiality, since information reached an unauthorized party
- B. Integrity, since the spreadsheet left the billing system of record
- C. Non-repudiation, since the clerk can deny sending the attachment
- D. Availability, since the records now sit in two separate places
Show answer & explanation
Answer: A
NIST defines confidentiality as preserving authorized restrictions on information access and disclosure; an unauthorized recipient reading the account numbers is exactly that loss. Integrity is guarding against improper modification, and nothing in the file was altered. Availability is timely, reliable access, and the records remain reachable. Non-repudiation concerns proving who performed an action, which the mail server's logs still support.47. A warehouse system's data is unmodified and properly restricted, but a failed power supply keeps staff from reaching it for six hours during a shipping deadline. Which part of the triad did the outage damage?
- A. Integrity, defined as guarding against improper modification or destruction
- B. Confidentiality, defined as restricting disclosure to authorized parties
- C. Availability, defined as ensuring timely and reliable access to information
- D. Privacy, defined as an individual's control over their personal information
Show answer & explanation
Answer: C
NIST defines availability as ensuring timely and reliable access to and use of information, and a six-hour outage denies exactly that. Integrity was untouched because no record was altered or destroyed. Confidentiality was untouched because no unauthorized party saw anything. Privacy concerns how personal data about individuals is handled, which a power failure does not affect.
Identity And Access Management (IAM) Concepts
13 questions48. A finance department requires that the person who initiates a wire transfer cannot be the same person who approves it. This control is an example of which concept?
- A. Single sign-on (SSO)
- B. Federated identity management
- C. Discretionary access control (DAC)
- D. Separation of duties
Show answer & explanation
Answer: D
Separation of duties splits critical tasks between multiple people so that no single individual can complete a sensitive process alone, reducing fraud risk, exactly as described. SSO is an authentication convenience allowing one login to access multiple systems and has nothing to do with dividing responsibilities. Federated identity management allows identity trust across organizational boundaries, unrelated to task segregation. DAC lets resource owners assign access at their discretion, which does not by itself enforce a two-person process control.49. Which access control model assigns permissions based on a user's job function within an organization, such as 'HR Manager' or 'Help Desk Technician'?
- A. Role-Based Access Control (RBAC)
- B. Rule-Based Access Control using only time-of-day restrictions
- C. Mandatory Access Control (MAC)
- D. Discretionary Access Control (DAC)
Show answer & explanation
Answer: A
RBAC grants permissions according to predefined roles that map to job functions, simplifying administration by assigning users to roles rather than individually. MAC assigns access based on data classification labels and clearance levels set by a central authority, not job titles. DAC allows the resource owner to grant access at their own discretion, rather than through predefined organizational roles. Rule-based access control applies specific conditional rules like time-of-day, which is narrower than and distinct from role-based job function mapping.50. A security policy states that a payroll clerk may view salary records but cannot modify them, while a payroll manager can both view and edit. This distinction primarily illustrates which core security concept?
- A. Separation of duties splitting one transaction between two employees
- B. Least privilege applied through differentiated authorization levels
- C. Non-repudiation provided by digitally signed payroll transactions
- D. Defense in depth layering several independent controls on the records
Show answer & explanation
Answer: B
Option B is correct: least privilege gives each identity only the access its duties require, and read-only for the clerk versus read/write for the manager is exactly that tailoring (NIST SP 800-53 control AC-6). Option A is wrong because separation of duties would split a single sensitive process, such as initiating and approving a payment, between two people; here each person performs their own whole task. Option C is wrong because non-repudiation proves who performed an action after the fact and does not define what anyone may access. Option D is wrong because defense in depth is about stacking independent control layers, not about scoping one permission set to a job.51. Two employees are required to authorize a wire transfer above a threshold. Which principle does this implement?
- A. Least privilege, ensuring each employee's account holds only the access their current duties require
- B. Separation of duties, ensuring no single person can complete a sensitive transaction alone
- C. Defense in depth, ensuring several independent controls must fail before a fraudulent payment succeeds
- D. Fail secure, ensuring the payment system defaults to a denied state when a control fails or errors
Show answer & explanation
Answer: B
Option B is correct: requiring two employees to authorize a large transfer is separation of duties (NIST SP 800-53 AC-5), which splits a sensitive process so that fraud requires collusion rather than one person's decision. Option A is wrong because least privilege scopes what each account may access; it does not require a second person to act. Option C is wrong because defense in depth layers different kinds of controls (network, endpoint, access); a two-person rule is a single administrative control. Option D is wrong because fail secure describes how a system behaves when a control fails, not how a normal transaction is approved.52. In a Mandatory Access Control (MAC) environment, a document classified 'Secret' can only be accessed by users whose clearance level is 'Secret' or higher, regardless of the document owner's wishes. What does this illustrate about MAC?
- A. Access decisions are enforced centrally based on classification and clearance, not by the resource owner's discretion
- B. Access decisions are based on group memberships that IT assigns through help-desk tickets rather than labels
- C. Access decisions are made by the document owner, who may share the file with any user at their own discretion
- D. Access decisions are computed from subject, object and environment attributes such as department, time of day and device posture
Show answer & explanation
Answer: A
Option A is correct: in mandatory access control the system compares the object's classification label with the subject's clearance under a policy set by a central authority, and the owner cannot override it (NIST SP 800-53 AC-3(3), mandatory access control). Option C describes discretionary access control, where the owner decides who may access a file. Option B describes group-based administration typical of RBAC or Windows ACLs, not label comparison. Option D describes attribute-based access control, which evaluates many attributes and policies rather than a single clearance-versus-classification rule.53. An organization requires employees to present a smart card AND enter a PIN to log into their workstation. This is an example of which authentication concept?
- A. Multi-factor authentication combining 'something you are' and 'something you know'
- B. Two-step verification using two knowledge factors, a card number and a memorized PIN
- C. Single-factor authentication, since a smart card and a PIN are both 'something you have'
- D. Multi-factor authentication combining 'something you have' and 'something you know'
Show answer & explanation
Answer: D
Option D is correct: NIST SP 800-63B defines the three authentication factors as something you know, something you have and something you are; a smart card is a possession factor and the PIN is a knowledge factor, so the two together are genuine multi-factor authentication. Option C is wrong because a memorized PIN is a knowledge factor, not a second possession factor, so the combination is not single-factor. Option B is wrong because the card is a physical object that must be presented, not a number that is typed, so it is not a second knowledge factor. Option A is wrong because nothing in the scenario is biometric; 'something you are' would be a fingerprint or face scan.54. A network administrator wants to ensure that if a laptop with cached VPN credentials is stolen, the thief cannot use those credentials indefinitely. Which control best mitigates this risk?
- A. Enforcing periodic credential/password expiration combined with account lockout monitoring
- B. Enabling split tunneling so that only corporate-bound traffic traverses the VPN concentrator
- C. Raising the session idle-timeout so long file transfers are not interrupted by re-authentication
- D. Allowing unlimited authentication attempts so legitimate users are never locked out by mistake
Show answer & explanation
Answer: A
Option A is correct: forcing cached credentials to expire on a schedule limits how long a stolen laptop remains usable, and lockout monitoring surfaces the failed and anomalous attempts that follow a theft (NIST SP 800-53 AC-7 unsuccessful logon attempts, IA-5 authenticator management). Option B is wrong because split tunneling only decides which traffic is routed through the tunnel; the stolen credentials still authenticate. Option C is wrong because a longer idle timeout keeps a hijacked session alive longer, increasing exposure. Option D is wrong because removing lockout eliminates the control that detects and slows misuse of the cached account.55. Which of the following is the best example of the principle of 'least privilege' as applied to a database administrator (DBA)?
- A. The DBA shares one generic administrative account with three colleagues so that on-call coverage never depends on one person
- B. The DBA is granted administrative rights only on the specific database instances they support, not on all servers
- C. The DBA is granted domain administrator rights across the enterprise so that no request is ever delayed by a permissions gap
- D. The DBA's administrative rights are granted once at hire and kept unchanged so audits can compare against a stable baseline
Show answer & explanation
Answer: B
Option B is correct: least privilege (NIST SP 800-53 AC-6) means an account holds only the rights its duties require, so scoping DBA rights to the instances that person actually supports is the textbook application. Option C is the opposite of least privilege; domain-wide administrator rights expose every server to one compromised account. Option A violates accountability and non-repudiation because a shared generic account cannot be traced to an individual, and it also gives each holder more access than their own duties need. Option D ignores the periodic access review (AC-2) that keeps privileges aligned with duties; rights that never change accumulate privilege creep as roles evolve.56. An organization uses role-based access control. How are permissions assigned?
- A. To roles reflecting job functions, with users receiving permissions by being assigned to roles
- B. By the data owner, who decides on each access request at their own discretion and can revoke it
- C. By comparing security labels attached to subjects and objects under a centrally enforced policy
- D. Directly to each individual user account, based on a written request approved by the user's manager
Show answer & explanation
Answer: A
Option A is correct: in role-based access control permissions are attached to roles that mirror job functions, and users acquire permissions only through role membership, so a job change is a role reassignment rather than an audit of individual grants (NIST SP 800-53 AC-2(7)). Option D describes user-based (per-account) administration, which RBAC exists to replace. Option B describes discretionary access control, where the owner decides each request. Option C describes mandatory access control, where system-enforced labels on subjects and objects determine access and users cannot override them.57. Which pairing correctly matches an authentication factor to its category?
- A. A fingerprint is something you are, a hardware token is something you have, and a PIN is something you know
- B. A fingerprint is something you have, a hardware token is something you are, and a PIN is something you know
- C. A fingerprint is something you know, a hardware token is something you have, and a PIN is something you are
- D. A fingerprint is something you are, a hardware token is something you know, and a PIN is something you have
Show answer & explanation
Answer: A
Option A is correct: NIST SP 800-63B groups authenticators into knowledge (something you know, such as a PIN or password), possession (something you have, such as a hardware token or smart card) and inherence (something you are, such as a fingerprint or face). Option B is wrong because a fingerprint is a biometric characteristic, not an object you possess, and a token is not part of your body. Option C is wrong because a fingerprint is not memorized information and a PIN is not a biometric. Option D is wrong because a token is a physical object you have, while the PIN is the memorized secret you know.58. A former employee's account remains active three weeks after departure. Which process failed?
- A. Password complexity enforcement, which should have forced the departing employee's password to expire
- B. Network segmentation, which should have confined the former employee's account to an isolated guest VLAN
- C. Deprovisioning within the identity lifecycle, which should revoke access at the point employment ends
- D. Data classification, which should have relabeled every file the former employee still had rights to read
Show answer & explanation
Answer: C
Option C is correct: the identity and access lifecycle runs from provisioning through changes to deprovisioning, and NIST SP 800-53 AC-2 requires accounts to be disabled or removed when the user leaves; an account still active three weeks later is a deprovisioning failure. Option A is wrong because password rules govern the strength of a credential, not whether an account should exist at all. Option B is wrong because segmentation limits where traffic can flow; it is not an account-management process and would not remove a departed user's access. Option D is wrong because classification labels data by sensitivity and does not revoke anyone's rights.59. A password policy requires long passphrases and prohibits reuse across systems. What risk does the reuse prohibition address specifically?
- A. Brute force attacks, where every possible character combination is tried against one account until it is opened
- B. Shoulder surfing, where a nearby observer watches a password being typed on a laptop screen in a public place
- C. Credential stuffing, where credentials exposed in one service's breach are tried automatically against others
- D. Keystroke logging, where malware on the device records every password typed and sends it to the attacker
Show answer & explanation
Answer: C
Option C is correct: credential stuffing takes username and password pairs leaked from one breached service and replays them automatically against many other services, which only works when people reuse passwords; NIST SP 800-63B requires checking passwords against known-breached lists for the same reason. Option A is wrong because brute force attacks a single account by exhaustive guessing, which password length and lockout address. Option B is wrong because shoulder surfing captures one password by observation regardless of whether it is unique. Option D is wrong because a keylogger records whatever is typed; uniqueness does not stop the capture, endpoint protection does.60. An organization adopts single sign-on. What is the security trade-off?
- A. It eliminates the need for authentication entirely, since the identity provider vouches for the user and applications no longer verify anyone
- B. Fewer credentials to manage and stronger central authentication, but a compromised single credential reaches everything it federates
- C. It prevents any form of credential compromise, because passwords are never transmitted once the identity provider issues a session token
- D. Fewer credentials to manage, but authentication becomes weaker because it is distributed across every federated application's own login page
Show answer & explanation
Answer: B
Option B is correct: single sign-on lets one authentication at the identity provider open every federated application, which reduces password fatigue and lets the organization enforce strong MFA in one place, but it concentrates risk because one stolen credential or session reaches everything (NIST SP 800-63C, federation). Option D is wrong because SSO centralizes authentication at the identity provider rather than distributing it. Option A is wrong because the user still authenticates, once, to the identity provider, which then asserts the identity to each application. Option C is wrong because tokens and the identity-provider credential can themselves be stolen or phished.
Security Governance
24 questions61. Before setting any recovery targets, a hospital's continuity team lists each mission process, the systems it depends on, and the harm an outage would cause over time. Which contingency planning step is this?
- A. The business impact analysis, which characterizes processes and outage effects
- B. The crisis communications plan, which prepares statements for the public
- C. The disaster recovery plan, which restores systems at an alternate facility
- D. The after-action review, which records what the last exercise revealed
Show answer & explanation
Answer: A
NIST SP 800-34 defines the BIA as the step that characterizes system components, the mission processes they support and their interdependencies, and it is what recovery objectives are derived from. A disaster recovery plan is written later and describes restoration at an alternate site. An after-action review looks backwards at an exercise already held. A crisis communications plan handles internal and external messaging during a disruption.62. A regional retailer's data center is destroyed by a fire, and the company must resume order processing from an alternate site within 4 hours. The 4-hour target is best described as which metric?
- A. Recovery Point Objective (RPO)
- B. Mean Time Between Failures (MTBF)
- C. Service Level Agreement (SLA) uptime percentage
- D. Recovery Time Objective (RTO)
Show answer & explanation
Answer: D
RTO defines the maximum acceptable time to restore a system or process after a disruption, matching the 4-hour resumption target described. RPO instead measures the maximum acceptable amount of data loss measured in time, not restoration speed. MTBF is a reliability metric estimating average time between equipment failures, unrelated to recovery targets. An SLA uptime percentage describes ongoing availability commitments, not a one-time recovery deadline after a disaster.63. A company's backup policy states that in the event of data loss, it can tolerate losing no more than 15 minutes of transaction data. Which concept does this describe?
- A. Recovery Time Objective (RTO)
- B. Maximum Tolerable Downtime (MTD)
- C. Recovery Point Objective (RPO)
- D. Business Continuity Plan (BCP) activation threshold
Show answer & explanation
Answer: C
RPO specifies the acceptable amount of data loss measured as a point in time, and a 15-minute tolerance directly matches that definition, implying backups or replication must occur at least that frequently. RTO instead measures how quickly systems must be restored, not how much data can be lost. MTD represents the total time a business function can be disrupted before causing unacceptable harm, a broader concept than a single data-loss tolerance. A BCP activation threshold refers to criteria for declaring a disaster, not a data-loss metric.64. A chief executive asks what information security governance is supposed to deliver, beyond buying tools. Which description matches the definition used in NIST guidance?
- A. A record of all security incidents reported in the period, with the cost of each one charged back to a business unit
- B. A schedule of vulnerability scans and penetration tests sufficient to satisfy the organization's external auditors
- C. A framework and management structure assuring alignment with business objectives, law and policy, with responsibility assigned
- D. A published catalog of every technical control currently in use, kept current by the engineering team and audited once each year
Show answer & explanation
Answer: C
NIST describes information security governance as establishing and maintaining a framework and supporting management structure and processes that assure security strategies align with business objectives, stay consistent with laws and regulations through policies and internal controls, and assign responsibility, all to manage risk. A control catalog, a testing schedule and an incident ledger are useful artifacts produced under governance, but none of them establishes the structure, alignment or accountability that the definition requires.65. An organization performs a full backup on Sunday and differential backups each weekday. To restore Thursday's data, what is needed?
- A. The Sunday full backup alone
- B. The Sunday full backup plus every weekday differential from Monday to Thursday
- C. The Sunday full backup plus Thursday's differential backup only
- D. Thursday's differential backup alone
Show answer & explanation
Answer: C
Option C is correct: a differential backup captures everything changed since the last full backup, so Thursday's differential already contains Monday through Thursday's changes and only it plus the Sunday full are needed. Option B describes an incremental scheme, where each backup holds only the changes since the previous backup of any type and every set from Monday to Thursday must be restored in order. Option D is wrong because a differential holds only changes; without the full backup the unchanged files are missing. Option A is wrong because the Sunday full alone omits four days of changes.66. A backup strategy follows the 3-2-1 rule. What does it specify?
- A. Three backups per day, two of them verified by checksum and one restored as a test
- B. Three years of retention on two backup systems administered by one custodian
- C. Three full backups, two differentials and one incremental in every weekly rotation
- D. Three copies of data on two different media types with one copy kept offsite
Show answer & explanation
Answer: D
Option D is correct: the 3-2-1 rule calls for three copies of the data (production plus two backups), on two different media types so a single technology fault cannot destroy both, with one copy offsite so a fire, flood or ransomware event at the primary site cannot reach it. Option A is wrong because the rule sets copy counts and locations, not a backup frequency or testing cadence. Option B is wrong because retention periods and staffing are not part of the rule. Option C is wrong because the rule does not prescribe a mix of full, differential and incremental jobs.67. A business continuity plan and a disaster recovery plan both exist. What is the relationship?
- A. Disaster recovery keeps critical business functions operating, while business continuity restores the IT systems those functions depend on
- B. Business continuity is the plan invoked for natural disasters and outages, while disaster recovery is the plan invoked only for cyber incidents
- C. Business continuity keeps critical business functions operating, while disaster recovery restores the IT systems those functions depend on
- D. Business continuity and disaster recovery are two names for the same document, which is owned by IT and reviewed once a year by the audit committee
Show answer & explanation
Answer: C
Option C is correct: NIST SP 800-34 Rev. 1 describes the business continuity plan as sustaining mission and business processes during and after a disruption, while the disaster recovery plan is the IT-focused plan for restoring systems, applications and data at an alternate site. Option A reverses the two scopes. Option B is wrong because both plans address any cause of disruption; the split is business processes versus IT systems, not natural versus cyber events. Option D is wrong because they are distinct plans with different owners and scope, and disaster recovery is one component within the broader continuity program.68. An email appears to come from the chief executive asking an employee to urgently purchase gift cards. Which attack is this?
- A. A brute force attack against the executive's mailbox, exploiting a weak password to send the message
- B. A denial of service attack against the mail server, exploiting urgency to overload the help desk
- C. Social engineering, specifically a targeted phishing attack exploiting authority and urgency
- D. A privilege escalation attack on the mail server, exploiting a flaw to send as the chief executive
Show answer & explanation
Answer: C
Option C is correct: a message impersonating the chief executive to pressure an employee into buying gift cards is social engineering; in NIST SP 800-61 terms it is a phishing (here spear-phishing or business email compromise) attack that exploits authority and urgency to short-circuit verification. Option A is wrong because nothing indicates the executive's password was guessed; the sender address is spoofed or look-alike. Option B is wrong because no service is being overloaded; the mail is delivered normally. Option D is wrong because the attack targets the recipient's judgment, not a vulnerability in the mail server.69. An organization implements a clean desk policy and requires screen locking. Which risk do these address?
- A. Malware infection through email attachments opened by staff, including ransomware that encrypts documents saved on the local desktop
- B. Failure of backup media, since paper records left on desks are the only copy of information when the nightly backup job fails
- C. Unauthorized viewing or removal of information by anyone with physical proximity, including visitors, contractors and other staff
- D. Network-based intrusion from the internet by attackers who scan for open ports and exploit unpatched services on workstations
Show answer & explanation
Answer: C
Option C is correct: clean desk and screen-lock rules are administrative controls against the exposure created by physical presence; NIST SP 800-53 AC-11 (device lock) and the PE family exist because a visitor, contractor or coworker walking past can read a screen or pick up a document. Option D is wrong because internet-based intrusion is addressed by firewalls, patching and hardening, not by what is left on a desk. Option A is wrong because email malware is addressed by filtering, endpoint protection and awareness of attachments, not screen locking. Option B is wrong because backup media failure is addressed by backup verification and redundancy, and the policies do not make desk papers a backup.70. Which statement about security awareness training is most accurate?
- A. It replaces the need for technical controls such as email filtering, because trained staff will recognize every phishing attempt
- B. A single session at onboarding is sufficient, because the acceptable use policy is signed once and the rules do not change afterward
- C. It applies only to staff in technical roles, because administrators are the only people whose mistakes can compromise a system
- D. It addresses the human element that technical controls cannot, and needs to be recurring because both threats and staff change
Show answer & explanation
Answer: D
Option D is correct: NIST SP 800-50 Rev. 1 treats awareness and training as a control layer aimed at people, who are targeted directly by social engineering that no technical control fully blocks, and requires it to be ongoing because attack techniques evolve and staff turn over. Option A is wrong because trained users still make mistakes; awareness complements filtering and endpoint controls rather than replacing them. Option B is wrong because a single onboarding session decays over time and misses new threats and new hires. Option C is wrong because phishing and pretexting target finance, HR and executives at least as often as technical staff.71. A claims process can be down for eight hours before the harm to the business becomes unacceptable, and IT commits to restoring the supporting system within six. What do the eight-hour and six-hour figures represent?
- A. Eight hours is the recovery point objective and six the recovery time objective
- B. Eight hours is the maximum tolerable downtime and six the recovery time objective
- C. Eight hours is the service level agreement and six the recovery point objective
- D. Eight hours is the mean time to repair and six the maximum tolerable downtime
Show answer & explanation
Answer: B
Maximum tolerable downtime is the amount of time a mission process can be disrupted without causing significant harm, so the eight-hour limit is the MTD, and the six-hour restoration commitment is the recovery time objective, which must fall within it. A recovery point objective measures tolerable data loss, not elapsed downtime. Mean time to repair is an observed average, not a stated limit. A service level agreement is a contract that may carry these figures but is not itself one.72. A finance firm needs a standby facility that can take over trading within two hours, and is willing to pay for equipment already installed, configured and kept current. Which alternate site type meets that need?
- A. A hot site, fully equipped and able to take over operations quickly
- B. A reciprocal agreement, relying on a peer firm to host the workload
- C. A warm site, holding some equipment but needing data and setup work
- D. A cold site, offering space and power but no installed equipment
Show answer & explanation
Answer: A
SP 800-34 describes hot sites as locations with fully operational equipment and capacity to take over system operations quickly after loss of the primary facility, which is what a two-hour target demands. Cold sites offer only space and environmental controls such as power and HVAC, so standing one up takes days. Warm sites hold partial equipment but still need data restoration and configuration. A reciprocal agreement with another organization gives no guaranteed capacity at that speed.73. Two similarly sized county agencies sign a memorandum letting either one house the other's critical processing after a disaster, rather than leasing commercial space. What is the main weakness of this arrangement?
- A. Memoranda of this kind cannot be used by public sector organizations
- B. It fixes the recovery point objective at twenty-four hours by default
- C. The partner may lack spare capacity precisely when both are disrupted
- D. It removes the need for a business impact analysis to be performed
Show answer & explanation
Answer: C
SP 800-34 lists reciprocal agreements alongside dedicated and commercially leased sites as alternate site options, but the reciprocal partner keeps running its own operations and holds no reserved capacity, so a regional event can leave both agencies without room. Such agreements are commonly used in the public sector, so legality is not the issue. A BIA is still required to set recovery priorities. No recovery point objective is implied by the agreement itself.74. During a regional flood, a utility's press office must ensure that only designated spokespeople answer questions from residents and reporters. Which plan in the contingency planning family covers that requirement?
- A. The continuity of operations plan, sustaining essential functions offsite
- B. The crisis communications plan, designating who may speak publicly
- C. The information system contingency plan, restoring one named system
- D. The occupant emergency plan, covering first response inside a facility
Show answer & explanation
Answer: B
SP 800-34 says the crisis communications plan documents internal and external communication procedures and typically designates specific individuals as the only authority for providing information to the public, which is exactly the requirement. The occupant emergency plan covers life-safety response inside a facility, such as evacuation or shelter-in-place. An information system contingency plan restores a single system. A continuity of operations plan sustains essential functions, often from an alternate location.75. A manager asks how a disaster recovery plan differs in scope from a continuity of operations plan when both are invoked after the same fire destroys the main office.
- A. Disaster recovery covers only cyber incidents and continuity of operations only natural disasters, so the two are never invoked at the same event
- B. Disaster recovery is written by the facilities team and continuity of operations by IT, which is the only meaningful difference between the two
- C. Disaster recovery sustains essential functions for the whole organization, while continuity of operations restores the technical infrastructure and its data
- D. Disaster recovery restores IT systems and facilities after a major disruption, while continuity of operations sustains the organization's essential functions
Show answer & explanation
Answer: D
In the NIST contingency planning family, disaster recovery addresses restoring systems and infrastructure after a major disruption, typically at an alternate site, while continuity of operations addresses sustaining the organization's essential functions through the same event. Swapping the two, so that disaster recovery sustains essential functions and continuity of operations restores infrastructure, inverts their scopes. The cause of the disruption does not determine which plan applies, so the cyber-versus-natural split is wrong. Ownership of the document is an organizational choice, not the defining difference in scope.76. A file server is backed up in full every Saturday night, with incremental backups taken each weeknight. The array fails on Thursday afternoon. Which media must be restored, and in what order?
- A. Saturday's full backup, then Wednesday's incremental, which is cumulative
- B. Saturday's full backup, then Monday through Wednesday's incrementals in turn
- C. Saturday's full backup only, since incrementals are merged into it nightly
- D. Wednesday's incremental alone, which carries every change since Saturday
Show answer & explanation
Answer: B
An incremental backup captures only the files created or changed since the last backup of any type, so recovery needs the last full backup plus every incremental taken since it, applied in order. Incrementals are not merged into the full set, so Saturday alone would lose four days of work. The cumulative behavior described in the other options belongs to differential backups, which store everything changed since the last full backup and therefore need only one media set.77. A ransomware variant that searches for and deletes reachable backup shares has hit organizations in a firm's sector. Which change to the backup program most directly preserves the ability to recover?
- A. Keeping encrypted backup copies offline and testing restoration regularly
- B. Compressing backup archives so the malware needs longer to encrypt them
- C. Running backups twice a day instead of once to the same mounted volume
- D. Increasing the retention period on the existing network backup share
Show answer & explanation
Answer: A
CISA's ransomware guidance directs organizations to maintain offline, encrypted backups of critical data and to test their availability and integrity regularly, precisely because many variants seek out and delete or encrypt any backups they can reach. Longer retention on a reachable share leaves the copies in the malware's path. More frequent backups to the same mounted volume multiply the copies at risk. Compression delays nothing meaningful and does not protect the files.78. A review finds that a single network switch carries all traffic between a clinic's records system and its users, so its failure would stop patient check-in entirely. What has the review identified, and what fixes it?
- A. A single point of failure, addressed by adding a redundant path and failover
- B. An insider threat, addressed by restricting who may enter the wiring closet
- C. A recovery point objective, addressed by backing the switch config up nightly
- D. A residual risk, addressed by recording it and accepting it in the register
Show answer & explanation
Answer: A
A component whose failure alone halts the service is a single point of failure, and redundancy with automatic failover to a standby path removes it, since failover switches to a redundant system on failure of the active one. Residual risk is what remains after controls and names no design defect. A recovery point objective measures tolerable data loss, not hardware dependence. Restricting closet access addresses tampering, not the switch failing on its own.79. A small office loses utility power for ninety seconds several times a month, and each dip restarts the server mid-transaction. Which measure keeps the server running through these brief interruptions?
- A. A nightly differential backup of the database to a second building
- B. A cold site contract letting staff relocate after each power dip
- C. A service level agreement with the utility promising a credit per outage
- D. An uninterruptible power supply carrying the server on battery briefly
Show answer & explanation
Answer: D
An uninterruptible power supply has an internal battery that lets connected devices keep running for at least a short time when the primary power source is lost, which covers ninety-second dips without a restart. A cold site is for extended disasters and would take far longer to occupy than the outage lasts. Backups help recover lost data but do not prevent the restart. A utility credit compensates for an outage without keeping the server up.80. A team proposes mirroring the order database across two servers so that a disk or component failure does not interrupt service at all. Which objective does this design serve, and which does it not?
- A. It serves non-repudiation, and therefore also proves who changed each order
- B. It serves confidentiality, and therefore also removes the need to encrypt
- C. It serves data retention, and therefore satisfies the recovery point objective
- D. It serves high availability, but is not a substitute for retained backups
Show answer & explanation
Answer: D
Mirroring is a high availability measure, a failover feature ensuring availability during device or component interruptions, but a deletion or corruption is replicated to both copies instantly, so retained backups are still required. Mirroring provides no confidentiality and does not replace encryption. It is not a retention mechanism and cannot by itself meet a recovery point objective. Non-repudiation depends on signatures and logs, which replication does not provide.81. A firm already runs annual awareness training for all staff, but its database administrators and developers keep making the same privileged-access mistakes. What does NIST guidance recommend adding?
- A. A signed acknowledgment that the original course was completed
- B. Role-based training aimed at the duties those specific staff perform
- C. A phishing simulation sent to every employee once each quarter
- D. A second copy of the same all-staff course later in the same year
Show answer & explanation
Answer: B
NIST SP 800-50 frames awareness and training as an organization-wide learning program that includes role-based training and other workforce education, so staff with privileged duties get instruction tied to those duties rather than only the general course. Repeating the same general material addresses no role-specific gap. An acknowledgment records completion without teaching anything. Phishing simulations address a different behavior entirely and would not correct privileged-access errors.82. An employee receives a message that claims to be from a delivery company, contains a link, and pressures her to act within the hour. What does CISA's guidance tell her to do, in order?
- A. Open the link in a private browser window first to confirm the sender
- B. Recognize the signs, report the message, then delete it without replying
- C. Reply asking the sender to verify the tracking number they reference
- D. Use the unsubscribe link so the sender stops contacting her address
Show answer & explanation
Answer: B
CISA's guidance is to recognize the signs of phishing, resist the temptation to click, report the message using the report option or button, and then delete it without replying or clicking anything, including an unsubscribe link. Opening the link even in a private window still contacts attacker infrastructure. Replying confirms the address is live and invites further targeting. Using unsubscribe does the same and can itself deliver malicious content.83. Staff report two incidents in one week: a recorded voice message urging them to call a number about a frozen account, and a text message with a shortened link about a package. Name each technique.
- A. The call is smishing and the text is vishing, both social engineering
- B. The call is vishing and the text is smishing, both social engineering
- C. The call is a logic bomb and the text is a worm, both malware types
- D. The call is pharming and the text is spoofing, both network attacks
Show answer & explanation
Answer: B
CISA describes vishing as the social engineering approach that leverages voice communication to entice a victim to call a number and divulge sensitive information, and smishing as a form of social engineering that exploits SMS text messages, so the voice call is vishing and the text message is smishing, and swapping those two labels is the common error. Pharming redirects traffic to a fraudulent site and spoofing falsifies an address, neither of which is a phone call. A logic bomb and a worm are malware, not messages.84. During an awareness refresh, employees say they cannot remember a different strong password for every one of their accounts. Which practice does CISA recommend they be taught to use?
- A. A password manager, which creates and stores long unique passwords
- B. Short passwords rotated every thirty days so exposure stays brief
- C. A written list of passwords stored in a desk drawer at the office
- D. One strong passphrase reused across every account they must access
Show answer & explanation
Answer: A
CISA advises creating long, random, unique passwords with a password manager, calling it one of the easiest ways to protect accounts, precisely because nobody can memorize a unique strong password for every account. Reusing one passphrase means a single breach exposes every account through credential stuffing. A written list in a shared workspace is readable by anyone with physical access. Short passwords remain quick to crack no matter how often they rotate.
Networking and Cloud Security Concepts
16 questions85. An organization segments its network so that IoT devices, guest Wi-Fi, and corporate workstations each reside on separate VLANs with restricted inter-VLAN routing. What is the primary security benefit of this design?
- A. It limits the blast radius of a compromise by containing lateral movement between device groups
- B. It guarantees each device class a reserved share of bandwidth through per-VLAN QoS queues
- C. It lets the network controller push firmware patches to IoT devices grouped in their own VLAN
- D. It removes the need for authentication on the guest Wi-Fi network because guests are isolated by VLAN
Show answer & explanation
Answer: A
Option A is correct: segmenting device groups into separate VLANs with restricted inter-VLAN routing means a compromised IoT device or guest laptop can reach only its own segment, which contains lateral movement and limits the blast radius (NIST SP 800-53 SC-7 boundary protection). Option B is wrong because bandwidth guarantees are a quality-of-service function, not a security benefit, and VLANs do not reserve bandwidth by themselves. Option D is wrong because isolation never removes the need to authenticate users; guest networks still need a captive portal or pre-shared key. Option C is wrong because a VLAN is a Layer 2 construct and has no ability to deliver or install firmware.86. A network is designed so that a firewall, intrusion detection, endpoint protection and access controls all apply. What principle is this?
- A. Least privilege, so each user and process holds only the access its function requires
- B. Separation of duties, so no single administrator can configure all of the controls alone
- C. Defence in depth, so the failure of any single control does not result in compromise
- D. Single point of failure design, so one central control simplifies monitoring and response
Show answer & explanation
Answer: C
Option C is correct: defense in depth layers independent controls (firewall, intrusion detection, endpoint protection, access controls) so that an attacker who defeats one still faces the others; NIST SP 800-53 describes this as a layered protection strategy. Option A is wrong because least privilege limits the scope of each account's access, which is one control, not the layering of several. Option B is wrong because separation of duties divides a task among people; it says nothing about stacking technical safeguards. Option D is the opposite of the design shown: a single point of failure is what layered controls are meant to avoid.87. A firewall is configured to block all inbound traffic by default and only allow specific, explicitly approved ports and protocols. What principle does this configuration reflect?
- A. Default deny (implicit deny) combined with an explicit allow list
- B. Default permit with a blocklist of known malicious IP addresses only
- C. Stateless packet filtering that inspects each packet independently
- D. Full mesh connectivity with unrestricted routing between all network zones
Show answer & explanation
Answer: A
Option A is correct: blocking everything not explicitly permitted is the default-deny (implicit deny) posture that NIST SP 800-41 Rev. 1 recommends for firewall rule sets, and the approved ports and protocols form the explicit allow list. Option B is the opposite posture: default permit lets all unknown traffic through and blocks only what is already known to be bad. Option C names a firewall technology (stateless filtering) rather than a rule-set principle; a stateless filter can be configured either default-deny or default-permit. Option D describes an architecture with no segmentation or filtering at all, which the described rule set is designed to prevent.88. An organization places its public-facing web server in a separate network segment isolated from the internal corporate LAN, with restricted traffic rules between the two. What is this segment commonly called?
- A. Virtual private network (VPN) concentrator
- B. Demilitarized zone (DMZ)
- C. Storage area network (SAN)
- D. Content delivery network (CDN) origin cluster
Show answer & explanation
Answer: B
A DMZ is a network segment that exposes public-facing services to the internet while isolating them from the trusted internal network, matching the scenario exactly. A VPN concentrator is a device that terminates encrypted remote-access tunnels, not a network segmentation zone for public servers. A SAN is a dedicated storage network for block-level data access, unrelated to public/internal segmentation. A CDN origin cluster refers to the source servers behind a content delivery network, a different architectural concept from DMZ segmentation.89. A company wants remote employees to securely access internal file shares over the public internet as though they were on the local network. Which technology is the most direct solution?
- A. A public DNS resolver
- B. An unauthenticated FTP server exposed to the internet
- C. A network address translation (NAT) gateway alone
- D. A Virtual Private Network (VPN)
Show answer & explanation
Answer: D
A VPN creates an encrypted tunnel over the public internet that lets remote users securely reach internal resources as if locally connected, which is exactly the stated need. A public DNS resolver only translates domain names to IP addresses and provides no secure remote access capability. An unauthenticated FTP server exposed to the internet would be insecure and is the opposite of a protective solution. NAT alone translates addresses for outbound/inbound routing but does not provide encryption or authenticated remote access by itself.90. A network engineer disables the Telnet service on all routers and switches, replacing it with SSH for remote management. What is the primary security reason for this change?
- A. Telnet transmits credentials and session data in plaintext, while SSH encrypts the session
- B. Telnet listens on TCP port 23, which most firewalls cannot filter, while SSH uses TCP port 22
- C. SSH compresses management traffic, so command sessions are faster than Telnet on congested WAN links
- D. Telnet cannot authenticate users with a password, whereas SSH requires a password or key
Show answer & explanation
Answer: A
Option A is correct: Telnet (RFC 854) sends every keystroke, including usernames and passwords, unencrypted, so anyone capturing traffic can read them, whereas SSH (RFC 4251) encrypts and authenticates the whole session. Option B is wrong because both services run on well-known TCP ports (23 and 22) that any firewall can filter; port number is not the weakness. Option C is wrong because speed is not the reason for the change, and encryption typically adds overhead rather than removing it. Option D is wrong because Telnet does prompt for a password; the problem is that the password crosses the network in plaintext.91. A security team notices repeated failed login attempts from a single external IP address targeting many different user accounts in a short time. What type of attack does this pattern most likely indicate?
- A. A distributed denial-of-service (DDoS) attack
- B. A man-in-the-middle (MITM) attack
- C. A SQL injection attack
- D. A password spraying attack
Show answer & explanation
Answer: D
Password spraying involves trying a small number of common passwords against many different accounts to avoid account lockout thresholds, matching the described pattern of one source hitting many accounts. A DDoS attack aims to overwhelm system resources or bandwidth, not to guess account credentials. A MITM attack intercepts and potentially alters communications between two parties, which is unrelated to repeated login attempts against multiple accounts. SQL injection exploits input validation flaws in database-driven applications, not authentication login attempts.92. An organization wants to ensure that traffic between its branch offices, sent over the public internet, cannot be read by any intermediate ISP. Which of the following provides this protection?
- A. Increasing the MTU size on all routers
- B. Enabling Quality of Service (QoS) prioritization
- C. Switching from IPv4 to IPv6 addressing
- D. A site-to-site VPN using strong encryption
Show answer & explanation
Answer: D
A site-to-site VPN encrypts traffic between locations so that any intermediary network operator, including an ISP, sees only ciphertext and cannot read the contents. Adjusting MTU size affects packet fragmentation and performance, not confidentiality of the data. QoS prioritization manages bandwidth allocation and traffic shaping, unrelated to encryption or confidentiality. Switching address families from IPv4 to IPv6 changes addressing scheme, not the confidentiality of the payload, and provides no inherent encryption.93. A junior analyst is asked to configure a new intrusion prevention system (IPS) to actively drop malicious traffic in real time. Which characteristic differentiates an IPS from an IDS in this deployment?
- A. The IPS is deployed inline so it can block packets in real time, whereas an IDS monitors a copy of traffic and only alerts
- B. The IPS is connected to a SPAN or mirror port so it can inspect traffic without adding latency, whereas an IDS sits inline
- C. The IPS relies only on anomaly-based detection, whereas an IDS relies only on signature matching against known attacks
- D. The IPS is a host-based agent installed on each protected server, whereas an IDS is always a dedicated network appliance
Show answer & explanation
Answer: A
Option A is correct: NIST SP 800-94 distinguishes the two by placement and response; an inline IPS is in the traffic path and can drop or reset malicious packets, while a passive IDS analyzes mirrored traffic and can only alert. Option B reverses the placements: a SPAN or mirror port is the passive IDS deployment, and a device off the traffic path cannot block anything. Option C is wrong because both IDS and IPS products use signature-based, anomaly-based and stateful protocol analysis; detection method does not define the difference. Option D is wrong because both IDS and IPS exist in network-based and host-based forms (NIDS/NIPS and HIDS/HIPS).94. A device receives a packet destined for a host on another network. Which device makes the forwarding decision using IP addresses?
- A. A switch, which forwards frames within a network based on the destination MAC address
- B. A router, which forwards between networks based on the destination IP address
- C. A hub, which repeats every incoming signal to all ports without reading any address
- D. A modem, which converts between digital and analog signals on the access line
Show answer & explanation
Answer: B
Option B is correct: a router operates at OSI Layer 3, reads the destination IP address in the packet header, consults its routing table and forwards the packet toward the other network. Option A is wrong because a switch operates at Layer 2 and forwards frames by MAC address only within a single network segment; it does not route between networks. Option C is wrong because a hub is a Layer 1 repeater that copies signals to every port and reads no addresses at all. Option D is wrong because a modem modulates and demodulates signals for the physical access line and makes no forwarding decision.95. An employee's browser sends an outbound request and the reply arrives without any inbound rule permitting it. What firewall capability allowed the reply through?
- A. Network address translation, which rewrites the reply's destination address so the firewall treats it as internal traffic
- B. Application-layer inspection, which decodes the HTTP payload and admits any response that matches a browser signature
- C. Stateless packet filtering, which evaluates each inbound packet on its own against the rule base, source and destination ports
- D. Stateful inspection, which tracks active connections and permits return traffic belonging to a connection it allowed
Show answer & explanation
Answer: D
Option D is correct: a stateful firewall keeps a connection (state) table of sessions it has permitted outbound and automatically allows the matching return packets, so no separate inbound rule is needed (NIST SP 800-41 Rev. 1). Option C is wrong because a stateless filter has no memory of prior packets; without an explicit inbound rule it would drop the reply. Option B is wrong because application-layer inspection examines payload content for policy violations; it is not what associates a reply with an earlier request. Option A is wrong because NAT rewrites addresses so private hosts can share a public IP, but NAT alone does not decide whether a reply is permitted; the state table does.96. A web server accessible from the internet is placed in a screened subnet rather than the internal network. Why?
- A. So that a compromise of the exposed server does not give the attacker direct access to internal systems
- B. So that the server can use a public IP address without network address translation slowing responses
- C. So that the server can be exempted from the monthly patch cycle that applies to internal production systems
- D. So that inbound web traffic bypasses the perimeter firewall's inspection and reaches the server faster
Show answer & explanation
Answer: A
Option A is correct: a screened subnet (formerly called a DMZ) puts internet-facing hosts in their own segment with filtered paths in both directions, so an attacker who compromises the web server still faces a firewall before reaching internal systems (NIST SP 800-41 Rev. 1). Option B is wrong because placement in a screened subnet is about isolation, not address translation or performance. Option C is wrong because an exposed server needs the fastest patching of all, not an exemption. Option D is wrong because traffic to a screened subnet is inspected by the perimeter firewall; the design adds inspection between segments rather than removing it.97. Which pairing of protocol and default port is correct?
- A. HTTPS uses 80, SSH uses 23 and DNS uses 25
- B. HTTPS uses 21, SSH uses 443 and DNS uses 110
- C. HTTPS uses 8080, SSH uses 53 and DNS uses 22
- D. HTTPS uses 443, SSH uses 22 and DNS uses 53
Show answer & explanation
Answer: D
Option D is correct: the IANA service name and port number registry assigns TCP 443 to HTTPS, TCP 22 to SSH and TCP/UDP 53 to DNS. Option A is wrong because 80 is HTTP (unencrypted web), 23 is Telnet and 25 is SMTP. Option B is wrong because 21 is FTP control, 443 is HTTPS rather than SSH, and 110 is POP3. Option C is wrong because 8080 is only a common alternate HTTP port, 53 belongs to DNS, and 22 belongs to SSH. Knowing the mapping matters because firewall rules, scan results and log entries are expressed in port numbers, and the insecure services on 23 and 21 are the ones to find and retire.98. A remote worker connects through a VPN. What does this primarily provide?
- A. Endpoint protection for the worker's laptop, scanning and blocking malware before it enters the corporate network
- B. Higher throughput than a direct connection, because the tunnel compresses traffic before it crosses the internet
- C. Anonymity from the organization's own monitoring, because the tunnel hides the worker's activity from the SOC
- D. An encrypted tunnel across an untrusted network, protecting traffic confidentiality and integrity in transit
Show answer & explanation
Answer: D
Option D is correct: a VPN (for example IPsec, NIST SP 800-77 Rev. 1, or TLS-based) encrypts and authenticates traffic between the remote device and the corporate gateway, protecting confidentiality and integrity while it crosses an untrusted network. Option A is wrong because a VPN protects the path, not the endpoint; an infected laptop delivers its malware through the tunnel. Option B is wrong because encryption and tunnel overhead typically reduce throughput rather than increase it. Option C is wrong because traffic is decrypted at the organization's gateway, where its monitoring applies; the tunnel hides traffic from the untrusted network, not from the employer.99. An attacker floods a server with traffic so legitimate users cannot reach it. Which attack is this, and which security objective does it target?
- A. A man-in-the-middle attack targeting confidentiality
- B. A SQL injection attack targeting integrity
- C. A denial of service attack targeting availability
- D. A phishing attack targeting authentication
Show answer & explanation
Answer: C
Option C is correct: flooding a server so legitimate users cannot reach it is a denial-of-service attack, and the CIA triad element it attacks is availability, since the data is neither read nor altered. Option A is wrong because a man-in-the-middle attack intercepts or alters traffic between two parties, which threatens confidentiality and integrity rather than uptime. Option B is wrong because SQL injection exploits unvalidated input to read or modify database contents; it does not work by flooding. Option D is wrong because phishing deceives a person into surrendering credentials or running malware, an attack on people rather than on a server's capacity.100. How does an intrusion detection system differ from an intrusion prevention system?
- A. Detection blocks suspicious traffic inline while prevention only logs it for later review, at the cost of leaving analysts to act on every alert manually
- B. Prevention runs only as an agent on endpoints while detection runs only as a network appliance, so each is limited to one layer of the environment
- C. Detection and prevention are the same technology sold under different vendor names, so the choice between them is only about licensing and console features
- D. Detection alerts on suspicious activity while prevention sits inline and can block it, at the cost of disrupting legitimate traffic on a false positive
Show answer & explanation
Answer: D
Option D is correct: NIST SP 800-94 describes an IDS as a passive monitor that alerts and an IPS as an inline device that can block, and the inline position is why a false positive on an IPS drops legitimate traffic instead of just generating an alert. Option A reverses the roles; it is the prevention system that blocks and the detection system that only alerts. Option C is wrong because the two differ in placement (passive copy versus inline) and in response capability, not merely in branding. Option B is wrong because both come in network-based and host-based forms (NIDS/NIPS and HIDS/HIPS).
2026 statistics
Key facts: ISC2 CC exam
- Time limit
- 2h
- Passing score
- 700 out of 1000 points
- Exam fee
- $199
- Governing body
- ISC2
This free ISC2 CC practice test has 150 original questions written to ISC2's official content outline, last checked against it on September 16, 2026, 100 of them listed on this page and the rest loaded by the drill. Every question shows a worked explanation, and nothing here requires a signup.
The questions are grouped under five outline areas: Security Operations and Incident Response, Security Principles, Identity And Access Management (IAM) Concepts, Security Governance and Networking and Cloud Security Concepts.
As of 2026, the ISC2 CC exam fee is $199.
How the ISC2 CC practice bank covers the outline
150 questions across 5 outline areas — the same areas the page's sections use.
Counts are the live question bank, grouped by the outline area each question was written to.
Exam format and study resources
More in this family
ISC2 certifications
More in this category
- Project Management Professional (PMP)Practice questions →
- Microsoft Certified: Power BI Data Analyst Associate (Exam PL-300)Practice questions →
- Salesforce Certified Platform AdministratorPractice questions →
- HashiCorp Certified: Terraform Associate (004)Practice questions →
- AWS Certified AI PractitionerPractice questions →
- AWS Certified Cloud PractitionerPractice questions →
- AWS Certified Developer - AssociatePractice questions →
- AWS Certified Solutions Architect – AssociatePractice questions →
- Microsoft Certified: Azure Administrator Associate (Exam AZ-104)Practice questions →
- Microsoft Azure AI FundamentalsPractice questions →
- Microsoft Certified: Azure Fundamentals (AZ-900)Practice questions →
Get a free ISC2 CC study plan
A week-by-week plan plus new practice questions, straight to your inbox.
Official sources
Primary documents used to verify the exam details shown on this page.
- CC Certification Exam Outline (outline effective September 1, 2026)ISC2isc2.orgeffective September 1, 2026
- How to Register, Schedule, Cancel, Pay For Your ISC2 ExamISC2isc2.org
- ISC2 Annual Maintenance Fees (AMF) OverviewISC2isc2.org
- Certified in Cybersecurity (CC) Certification OverviewISC2isc2.org
- ISC2 Exam PricingISC2isc2.org
Last verified against the official exam content outline:
Frequently asked questions
How much does the ISC2 Certified in Cybersecurity (CC) exam cost, and are there other fees to plan for?
The registration price for the CC exam is U.S. $199. Beyond the exam itself, plan for a few situational fees charged by Pearson VUE: rescheduling costs U.S. $50 and cancelling costs U.S. $100. If you earn the certification and hold only CC, you'll also owe an Annual Maintenance Fee of U.S. $50 to keep it active, with a 90-day window from the due date to pay it. Because the reschedule and cancellation fees only apply if you change your appointment, booking a date you can commit to is the easiest way to avoid extra cost.
What is the CC exam format, and how many questions and how much time should I expect?
The CC exam contains 100-125 questions and gives you 2 hours (120 minutes) to complete it. It uses multiple choice and advanced item types delivered through Computerized Adaptive Testing (CAT) at Pearson VUE testing centers worldwide. Because it's adaptive, the exact number of questions you see falls somewhere in that 100-125 range depending on your responses. With up to 125 questions in 120 minutes, that leaves a little under a minute per question on average, so practice pacing yourself rather than dwelling on any single item.
What score do I need to pass, and how are the five domains weighted?
The passing score is 700 out of 1000 points. The exam covers 5 domains of foundational cybersecurity knowledge: Security Principles (24%); Security Governance (17.3%); Identity And Access Management (IAM) Concepts (20%); Networking and Cloud Security Concepts (21.3%); and Security Operations and Incident Response (17.3%). Security Principles, Networking and Cloud Security Concepts, and IAM Concepts together account for the majority of the exam, so prioritizing those three domains in your study plan gives you the best return on your time.
Do I need work experience to take the CC exam?
No prior work experience is required to sit for the CC exam. That makes it well suited as an entry point for career changers, students, and IT professionals moving into cybersecurity who don't yet meet the experience thresholds of more advanced certifications. Since there's no experience gate, your readiness comes down to how well you know the five exam domains rather than your resume, so structured study is the main path to passing.