Every Exam PrepFREE EXAM PREP
Ask AI

CompTIA CySA+ Practice Test

150 free CompTIA CySA+ practice questions with answers and explanations.

No signup required.

The CompTIA CySA+ exam is administered by CompTIA, with 85 scored questions and a time limit of 2 hours 45 minutes.

About these practice questions
Verified against the official content outline

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.

Difficulty
QUESTION 1 / 100Security OperationsMedium0/0
A SOC analyst notices that a Windows workstation is repeatedly resolving DNS queries for domains with high entropy (e.g., xkq93jf.badnet.com) at short, regular intervals. Which technique is MOST likely being observed?
0/0session
Browse all questions & answers

Loading the remaining 50 questions…

Security Operations

39 questions
  1. 1. A SOC analyst notices that a Windows workstation is repeatedly resolving DNS queries for domains with high entropy (e.g., xkq93jf.badnet.com) at short, regular intervals. Which technique is MOST likely being observed?

    • A. A domain generation algorithm (DGA) used by malware to locate a command-and-control server
    • B. Normal DNS caching behavior by the operating system
    • C. A legitimate content delivery network performing load balancing across regional edge nodes using branded hostnames
    • D. DNS zone transfer between authoritative name servers
    Show answer & explanation

    Answer: A
    High-entropy, algorithmically generated domain names queried at regular intervals are a classic indicator of a DGA, which malware uses to evade static blocklists while finding its C2 infrastructure. DNS caching does not produce novel random-looking domains, CDNs use recognizable branded domains, and zone transfers occur between name servers (AXFR/IXFR) rather than from an endpoint querying external random names.

  2. 2. During log review, an analyst sees a spike in outbound traffic on port 443 from a server that normally only receives inbound HTTPS connections. What is the BEST next step?

    • A. Ignore it since port 443 is always associated with legitimate encrypted web traffic and cannot carry command-and-control beacons
    • B. Investigate the anomaly further, including reviewing the destination IP reputation and process making the connection
    • C. Immediately reformat the server without further analysis
    • D. Block all outbound traffic on the network to contain any possible threat
    Show answer & explanation

    Answer: B
    A behavioral change (a normally inbound-only server suddenly generating outbound traffic) warrants investigation before any containment or eradication action; encryption on a common port does not guarantee legitimacy since attackers frequently use 443 for encrypted exfiltration or C2. Ignoring the anomaly risks missing a real compromise, reformatting destroys evidence and is premature, and blocking all outbound traffic network-wide is a disproportionate response to an unconfirmed single-host anomaly.

  3. 3. An analyst is tuning a SIEM's correlation rules after a period of high false-positive alerts from a threat-intel-fed rule flagging any connection to IPs on a public blocklist. Which action BEST improves signal quality without reducing overall detection coverage?

    • A. Disable the rule entirely so analysts stop seeing alerts from it
    • B. Add contextual conditions (e.g., requiring the connection to originate from a sensitive asset or include unusual data volume) before the rule fires
    • C. Remove the threat intelligence feed from the SIEM entirely
    • D. Increase the alert severity so every match pages the on-call analyst immediately, doubling the paging volume without adding any new context to the alert
    Show answer & explanation

    Answer: B
    Adding contextual enrichment (asset criticality, behavioral thresholds) narrows a noisy rule to higher-fidelity conditions while preserving detection capability, which is a standard SIEM tuning practice. Disabling the rule or removing the feed eliminates detection coverage entirely, and raising severity without improving precision only worsens alert fatigue by escalating more false positives.

  4. 4. A threat hunter wants to proactively search for adversary behavior that has not yet triggered any automated alert. Which approach BEST describes this activity?

    • A. Running a scheduled vulnerability scan against all subnets
    • B. Waiting for the SIEM to generate an alert and then investigating it only after correlation rules already fired
    • C. Patching all systems flagged as high-risk by the last scan
    • D. Formulating a hypothesis based on known TTPs and searching telemetry for matching evidence
    Show answer & explanation

    Answer: D
    Threat hunting is a proactive, hypothesis-driven process where the analyst uses knowledge of adversary tactics, techniques, and procedures (often mapped to frameworks like MITRE ATT&CK) to search telemetry for evidence that automated detections may have missed. Vulnerability scanning identifies weaknesses rather than active adversary behavior, reactive alert triage is not proactive hunting, and patching is a remediation activity, not detection.

  5. 5. An analyst is deploying a host-based detection tool that must observe process creation, file modification, and registry changes on endpoints in real time. Which technology BEST fits this requirement?

    • A. Endpoint Detection and Response (EDR)
    • B. A network-based intrusion prevention system (NIPS) only
    • C. A web application firewall (WAF)
    • D. An email gateway spam filter
    Show answer & explanation

    Answer: A
    EDR agents run on the host itself and provide deep visibility into process execution, file system, and registry activity, along with response capabilities like isolation. A NIPS inspects network traffic rather than host-level OS activity, a WAF protects web applications from HTTP-layer attacks, and an email gateway filters messages rather than monitoring endpoint behavior.

  6. 6. A security analyst reviewing NetFlow data notices a workstation transferring large volumes of data to an external IP over several hours during off-business hours. Assuming no known business justification exists, this pattern MOST strongly suggests which activity?

    • A. Routine Windows Update traffic
    • B. Data exfiltration
    • C. A DHCP lease renewal
    • D. ARP resolution broadcast traffic
    Show answer & explanation

    Answer: B
    Sustained, large-volume outbound transfers to an external destination during off-hours with no legitimate business reason is a hallmark indicator of data exfiltration, often used by threat hunters as a behavioral anomaly to investigate. Windows Update traffic is typically smaller and follows recognizable Microsoft endpoints, DHCP lease renewals are small and periodic broadcast/unicast exchanges, and ARP is confined to the local broadcast domain and cannot explain sustained external transfer.

  7. 7. Which of the following is the PRIMARY benefit of mapping detected adversary behavior to the MITRE ATT&CK framework during security operations?

    • A. It generates a ready-to-deploy detection rule for each technique the moment that technique is added to the framework's matrix
    • B. It replaces the need for a SIEM entirely
    • C. It eliminates the need for any human analyst review
    • D. It provides a common taxonomy of tactics and techniques that helps standardize detection engineering and gap analysis
    Show answer & explanation

    Answer: D
    ATT&CK provides a shared, structured vocabulary of adversary tactics and techniques that analysts use to map detections, identify coverage gaps, and communicate findings consistently across teams. It is a knowledge base and taxonomy rather than a rule-generation engine, so adding a technique to the matrix does not itself produce a ready-to-deploy detection; it does not replace SIEM tooling, which remains the mechanism for collecting and correlating telemetry; and it does not eliminate the need for human analysis and judgment.

  8. 8. An analyst configures a rule to alert whenever a service account that normally only runs batch jobs at 2 AM authenticates interactively during business hours. This is an example of which detection approach?

    • A. Passive vulnerability scanning that fingerprints installed software versions without authenticating to the host
    • B. Signature-based detection
    • C. Static malware analysis
    • D. Behavioral/anomaly-based detection using a baseline of normal activity
    Show answer & explanation

    Answer: D
    Comparing observed activity against an established baseline of normal behavior (a service account's typical login pattern) to flag deviations is the definition of behavioral/anomaly-based detection. Signature-based detection matches known patterns of malicious code or traffic rather than behavioral baselines, passive vulnerability scanning identifies weaknesses without analyzing runtime behavior, and static malware analysis examines file characteristics without execution.

  9. 9. A CySA+ candidate is asked why organizations deploy deception technology such as honeypots within a production network segment. What is the PRIMARY purpose?

    • A. To attract and detect attacker activity early by presenting an enticing but monitored fake target
    • B. To permanently replace production servers
    • C. To provide additional bandwidth for legitimate users
    • D. To automatically patch vulnerabilities on real production systems by redirecting scanner traffic to the decoy
    Show answer & explanation

    Answer: A
    Honeypots and other deception assets are decoys designed to lure attackers so their reconnaissance and exploitation activity can be observed and alerted on early, without risk to real production data. They are not meant to serve legitimate business traffic, do not add usable bandwidth, and have no mechanism to patch vulnerabilities elsewhere in the environment.

  10. 10. An analyst receives an alert for outbound traffic to a known malicious domain from an internal host. What is the first triage step?

    • A. Close the alert if the domain is on a public blocklist
    • B. Immediately reimage the host before gathering any information, following the standard end-user workstation refresh procedure used for routine upgrades
    • C. Establish whether the connection actually succeeded and what process initiated it, since a blocked DNS lookup and an established session require very different responses
    • D. Notify all users of a suspected compromise
    Show answer & explanation

    Answer: C
    Triage establishes whether an alert represents a real event and its scope before response consumes effort, and a blocked attempt carries a different urgency than an established command and control channel. Reimaging first destroys the evidence needed to determine how the host was compromised and whether others were; following a routine workstation refresh procedure for this alert treats a potential live compromise the same as a scheduled hardware upgrade, discarding the same evidence before anyone has looked at it.

  11. 11. An analyst investigates a suspicious process and finds it was launched by a legitimate signed system binary. What technique does this suggest?

    • A. Living off the land, where an attacker uses tools already present on the system to avoid introducing detectable malware
    • B. A rootkit hiding at the kernel level
    • C. A denial of service attack against the host launched remotely by flooding it with malformed TCP SYN packets over port 445
    • D. A hardware implant on the motherboard
    Show answer & explanation

    Answer: A
    Using built-in interpreters and administrative utilities defeats signature-based detection because the binaries are legitimate and expected, which shifts detection toward behaviour and command-line arguments. This is why command-line and process-lineage logging matter more than file hashes for detecting modern intrusions.

  12. 12. A detection rule generates a high volume of alerts that analysts consistently close as benign. What is the correct response?

    • A. Disable the rule entirely without documentation
    • B. Tune the rule to reduce false positives while documenting what was excluded, since unmanaged alert volume causes genuine detections to be missed
    • C. Continue processing every alert to avoid missing anything, adding a dedicated second overnight shift just to cover this one rule's output
    • D. Increase analyst headcount to match the volume
    Show answer & explanation

    Answer: B
    Alert fatigue is a real detection failure mode, so tuning is a detection improvement rather than a concession, but every exclusion is a blind spot that must be recorded and reviewed. Disabling a rule without documentation leaves nobody able to explain later why a technique went undetected, and adding a second overnight shift dedicated solely to absorbing one poorly tuned rule's volume spends ongoing staffing cost to work around a problem that a one-time tuning pass would actually fix.

  13. 13. An analyst correlates events from an endpoint tool, a firewall and an identity provider to reconstruct an intrusion. What capability enables this?

    • A. Disabling logging on sources producing high volume
    • B. Increasing the retention period on one source only
    • C. Reviewing each tool's console separately at the same time, relying on each vendor's own local clock and unmatched case-numbering scheme
    • D. Centralized log aggregation with consistent timestamps and a common identifier such as user or host linking events across sources
    Show answer & explanation

    Answer: D
    Correlation depends on events sharing a time base and a joinable field, since a sequence spanning three tools cannot be reconstructed when clocks differ and identifiers do not match. Normalization at ingestion is what makes those fields comparable, and it is the unglamorous work that determines whether investigation is possible at all.

  14. 14. A threat intelligence feed provides indicators of compromise. What limitation should shape how they are used?

    • A. Indicators cannot be ingested into detection tooling automatically at all and must be typed manually into the SIEM console by an analyst each day
    • B. Indicators are only useful for compliance reporting
    • C. Indicators never expire and remain valid indefinitely
    • D. Indicators such as hashes and addresses are easily changed by an attacker, so detection based on behaviour and technique is more durable
    Show answer & explanation

    Answer: D
    The pyramid of pain captures this: hashes and addresses cost an adversary almost nothing to change, while tools, techniques and behaviours are progressively harder to alter. Indicator feeds retain value for rapid retrospective search but should not be the foundation of a detection strategy.

  15. 15. An analyst maps observed adversary activity to a common framework of tactics and techniques. What does this enable?

    • A. Identifying which stages of the attack were detected and which were not, so coverage gaps become visible and can be prioritized
    • B. Automatic remediation of the affected systems
    • C. Attribution of the attack to a specific individual using IP geolocation and WHOIS registration data pulled from the C2 domain
    • D. A guarantee that the same attack cannot recur
    Show answer & explanation

    Answer: A
    Mapping converts a narrative of one incident into a structured view of detection coverage across the attack lifecycle, which is what turns an investigation into a programme improvement. Pulling geolocation or WHOIS data on infrastructure can sometimes support attribution to a specific individual, but that is a separate, far less certain exercise handled by threat intelligence work rather than a benefit of the mapping exercise itself, and it rarely changes what a defender should do next.

  16. 16. An analyst performs threat hunting rather than responding to alerts. What distinguishes the activity?

    • A. It is performed only after a confirmed breach
    • B. It responds to alerts more quickly than standard triage by pre-staging containment scripts before the SIEM even finishes generating a page
    • C. It proactively searches for adversary activity that existing detections did not surface, starting from a hypothesis rather than from an alert
    • D. It replaces the need for detection rules entirely
    Show answer & explanation

    Answer: C
    Hunting assumes detections are incomplete and looks for what they miss, which is why a hunt that finds nothing still produces value by converting a hypothesis into a new detection or confirming coverage. Findings should feed back into automated detection so the same hunt does not need repeating manually; pre-staging containment scripts to fire faster once an alert lands is a response-speed improvement to existing alert-driven triage, not the hypothesis-driven, alert-independent search that defines hunting.

  17. 17. An analyst examines a suspicious executable in a sandbox. What limitation should be understood?

    • A. Sandbox results are always definitive
    • B. Sandboxes execute files faster than a real host
    • C. Malware commonly detects sandbox environments and alters or suspends its behaviour, so benign observed behaviour does not establish the file is safe
    • D. Sandbox analysis cannot capture network activity, since the sandbox's virtual network interface is disabled by default on most commercial platforms
    Show answer & explanation

    Answer: C
    Evasion techniques check for virtualization artefacts, analysis tools, limited user activity and short runtimes, so a sample can appear inert while behaving maliciously on a real host. Static analysis and behavioural detection on the endpoint complement sandboxing rather than being replaced by it; most current sandbox platforms do provide an instrumented virtual network interface specifically so network-based indicators can be captured, so assuming that capability is disabled by default understates what the tooling can actually see.

  18. 18. An analyst identifies encoded PowerShell in a command line captured by endpoint logging. What does the encoding typically indicate?

    • A. A routine administrative practice used by IT staff to shorten long Group Policy startup scripts for faster logon execution times
    • B. A corrupted log entry that should be discarded
    • C. An attempt to obscure the command's content from casual inspection and simple string-based detection, warranting decoding and full investigation
    • D. Evidence that the command failed to execute
    Show answer & explanation

    Answer: C
    Encoding is a recognized obfuscation technique, and while some legitimate tooling uses it, the base rate for malicious use makes it a strong investigative lead. Decoding is straightforward and reveals the actual command, which is why script block logging that records the decoded content is a valuable detection capability; shortening Group Policy startup scripts for faster logon times is a real IT administrative practice, but it does not typically rely on Base64-encoded command lines the way this scenario describes, so it does not explain the pattern away.

  19. 19. Network traffic shows regular small outbound connections to the same external address at consistent intervals. What does this pattern suggest?

    • A. Command and control beaconing, where an implant checks in on a schedule, which regularity of interval helps distinguish from human-driven traffic
    • B. A large file transfer in progress
    • C. Normal web browsing by a user
    • D. A denial of service attack against the external address, since the connection volume alone matches an unusually persistent SYN flood pattern
    Show answer & explanation

    Answer: A
    Periodicity is the signature, since human activity produces irregular timing while an implant polls on a timer, and jitter is added by attackers precisely to blur that pattern. Beacon analysis examines interval regularity, payload size consistency and destination reputation together rather than any single attribute; a denial-of-service attempt would aim to exhaust a target's resources with a high volume of traffic rather than produce the small, regular, low-volume connections this scenario describes.

  20. 20. An analyst reviews an authentication log showing successful logins for one account from two countries within minutes. What does this indicate?

    • A. A clock synchronization error on the authentication server, since NTP drift of more than a few minutes can duplicate a login timestamp entry
    • B. Impossible travel, suggesting credential compromise since one person cannot be in both locations, though a VPN or proxy can produce the same signal legitimately
    • C. Normal behaviour for a mobile user
    • D. A failed authentication attempt recorded incorrectly
    Show answer & explanation

    Answer: B
    The detection is valuable but produces false positives from VPN use, corporate proxies and mobile carrier routing, so it warrants investigation rather than automatic action. Combining it with device, application and behavioural signals is what raises confidence enough to justify disabling an account; ordinary NTP drift is measured in milliseconds to a few seconds on a properly configured server and does not duplicate a login timestamp across two different countries the way this alert describes.

  21. 21. A SOC analyst reviewing SIEM alerts notices a marketing employee's account authenticating to the finance department's file share at 3 AM, a resource the account has never accessed before. Which analysis technique BEST explains why this alert was generated?

    • A. User and entity behavior analytics (UEBA) flagging a deviation from established access baselines
    • B. Signature-based detection matching a known malware hash
    • C. A vulnerability scanner correlating CVE data from the National Vulnerability Database with the account's login pattern
    • D. Network flow analysis identifying a change in packet size distribution
    Show answer & explanation

    Answer: A
    UEBA builds behavioral baselines per user and entity and flags deviations such as unusual access times or resources, which is exactly what generated this alert; signature-based detection instead matches known malicious file or traffic patterns and would not trigger on a legitimate account's atypical login timing alone.

  22. 22. During triage of a phishing report, an analyst finds the email's sender domain uses valid SPF and DKIM signatures but the display name spoofs the CEO and the reply-to address points to a free webmail domain. Which conclusion is MOST supported by this evidence?

    • A. The email cannot be phishing since it passed email authentication checks
    • B. The email is legitimate because SPF and DKIM both passed
    • C. The email is likely a business email compromise attempt using a lookalike or compromised domain despite passing authentication
    • D. The email originated from an internal compromised mailbox, confirmed by the passing DKIM signature and a matching SPF alignment record
    Show answer & explanation

    Answer: C
    Passing SPF and DKIM only proves the message was sent from a server authorized for its own domain, not that the sender is trustworthy or affiliated with the impersonated executive; a mismatched reply-to address paired with a spoofed display name is a classic business email compromise indicator that authentication checks alone cannot catch.

  23. 23. An analyst needs to identify which specific tactics and techniques an intrusion used, from initial access through exfiltration, in a way that supports comparison with other campaigns industry-wide. Which reference framework BEST supports this goal?

    • A. MITRE ATT&CK
    • B. CVSS
    • C. The organization's internal ticketing taxonomy
    • D. The vulnerability scanner's proprietary severity scale
    Show answer & explanation

    Answer: A
    MITRE ATT&CK provides a standardized, publicly maintained taxonomy of adversary tactics and techniques that analysts across organizations use consistently, enabling comparison of an intrusion's behavior against known campaigns; CVSS instead scores the severity of individual vulnerabilities and has no bearing on describing attacker behavior.

  24. 24. An analyst is building a detection rule for command-and-control beaconing that must avoid alerting on legitimate periodic traffic such as software update checks. Which characteristic BEST distinguishes malicious beaconing from routine polling in traffic analysis?

    • A. The destination IP address is external to the network and resolves through a CDN edge node shared by thousands of other unrelated domains
    • B. The connection occurs during business hours
    • C. The traffic uses an encrypted protocol such as TLS
    • D. The interval and payload size show unusually consistent jitter-free timing combined with a low-reputation or newly registered destination
    Show answer & explanation

    Answer: D
    Legitimate polling services typically vary somewhat in timing and connect to well-established, reputable domains, while malicious beacons often show highly regular, low-jitter intervals paired with connections to newly registered or low-reputation infrastructure. An external destination shared with a CDN edge node serving thousands of other domains is exactly the kind of common, low-signal detail that fails to distinguish malicious beaconing from routine polling, and encrypted transport alone is far too common in benign traffic to serve as a reliable discriminator either.

  25. 25. A cloud security team receives an alert that a storage service's access logging was disabled shortly before an unusual spike in data downloads from an unfamiliar IAM role. What should the analyst do FIRST?

    • A. Preserve available logs and cloud audit trail evidence while investigating the scope of the role's activity
    • B. Immediately delete the IAM role to prevent further access
    • C. Close the alert since logging was disabled and no further evidence can be gathered from the provider's separate control-plane audit trail
    • D. Wait for the next scheduled vulnerability scan to confirm the finding
    Show answer & explanation

    Answer: A
    Even when data-access logging was disabled, cloud providers typically retain a separate control-plane audit trail of administrative actions such as disabling logging and role activity, so the priority is to preserve that available evidence and scope the incident before taking disruptive actions; deleting the role immediately could destroy forensic value and tip off an attacker who still has access elsewhere.

  26. 26. A SOC uses a SOAR platform to automatically disable a user account whenever three failed login attempts are followed by a successful login from a new geographic location. What is the PRIMARY benefit of this automation?

    • A. It eliminates the need for analysts to ever review authentication logs again once the playbook is deployed and enabled
    • B. It reduces analyst response time for a well-defined, repeatable scenario, freeing analysts for higher-judgment tasks
    • C. It guarantees zero false positives in account compromise detection
    • D. It replaces the need for multi-factor authentication on the account
    Show answer & explanation

    Answer: B
    SOAR playbooks are best suited to consistent, well-understood scenarios where the response logic is clear, allowing the platform to act faster than a human and freeing analysts to focus on ambiguous or high-judgment investigations; automation does not eliminate the need for oversight, guarantee accuracy, or substitute for independent security controls like multi-factor authentication.

  27. 27. An analyst investigating an endpoint alert discovers that a legitimate, digitally signed system utility was used to download and execute a secondary payload, leaving minimal artifacts of its own. Which technique does this behavior MOST closely describe?

    • A. A distributed denial-of-service attack
    • B. A zero-day exploit against the operating system kernel exploiting a CVE with no vendor patch available yet
    • C. Living-off-the-land (LOTL) technique abusing a trusted binary
    • D. Credential stuffing against a web application
    Show answer & explanation

    Answer: C
    Living-off-the-land techniques abuse legitimate, often signed system utilities already present on the host to perform malicious actions, which helps the activity blend in with normal administrative behavior and evade signature-based detection; this scenario describes exactly that abuse pattern rather than a kernel exploit, a denial-of-service attack, or credential stuffing, none of which involve reusing trusted binaries.

  28. 28. A SOC pilots a generative AI assistant that drafts incident summaries and proposes SIEM queries from analyst prompts. Before an analyst runs one of the assistant's suggested queries against production log data, what is the analyst's MOST important responsibility?

    • A. Validate the AI-suggested query and reasoning against known-good detection logic before running it, since generative output can be fluent yet factually wrong
    • B. Check the assistant's self-reported confidence score before running the query, treating a high confidence value as sufficient grounds to skip further human review
    • C. Disable every existing detection rule so the assistant becomes the SOC's sole source of alerting, triage, and escalation going forward
    • D. Forward each AI-generated summary straight to executive leadership with no analyst review, since automation removes the need for triage
    Show answer & explanation

    Answer: A
    Generative assistants can hallucinate query syntax, misstate log field names, or repeat a prompt injection hidden in ingested data, so a human must verify the suggested logic against known-good detection engineering before it touches production, which is the human-in-the-loop expectation in the NIST AI Risk Management Framework. Treating a model's self-reported confidence score as sufficient substitutes a number the model generates for itself in place of independent verification, since a confident-sounding but wrong query is exactly the failure mode a confidence score does not reliably catch; replacing proven detections with an unvalidated assistant discards existing coverage, and skipping review before an executive-facing summary risks reporting fabricated findings as fact.

  29. 29. A company adopts a zero trust architecture and requires every access request to a finance application to be authenticated, authorized, and encrypted, regardless of whether the request originates inside the corporate network. Which principle does this design MOST directly reflect?

    • A. Perimeter-based trust: once a device passes the firewall and joins the internal VLAN, all further internal requests are implicitly trusted
    • B. Never trust, always verify: network location alone no longer grants implicit trust, so every session is evaluated on its own merits
    • C. Defense in depth achieved solely by stacking additional firewalls at the network perimeter without touching identity or session policy
    • D. Network segmentation alone, achieved by placing the finance application on its own VLAN with no additional identity verification required
    Show answer & explanation

    Answer: B
    Zero trust architecture, as described in NIST SP 800-207, removes the assumption that being on the internal network implies trustworthiness, requiring continuous verification of identity, device posture, and authorization for every access request regardless of location. Perimeter-based implicit trust is exactly the legacy model zero trust replaces, stacking firewalls alone is defense in depth without identity verification, and VLAN segmentation by itself still grants access to anything already inside that segment without per-request evaluation.

  30. 30. A DevSecOps team wants to catch a vulnerable base-image library before a container reaches production rather than after deployment. At which point in the pipeline should the image be scanned to achieve this?

    • A. Only after the container has been running in production for at least thirty days, once its behavior is well established
    • B. Only during the annual penetration test, since container images are considered out of scope for continuous vulnerability scanning
    • C. During the build stage in the CI/CD pipeline, scanning the image and its layers before it is pushed to the registry or deployed
    • D. Only when a customer specifically requests a scan report, since routine build-time scanning is not part of standard container practice
    Show answer & explanation

    Answer: C
    Scanning container images and their layers during the CI/CD build stage, before push or deployment, catches vulnerable base images and dependencies while the fix is cheapest, consistent with the shift-left guidance in NIST SP 800-190 for application container security. Waiting until the container has run in production for a month leaves it exposed the entire time, limiting scanning to an annual pentest misses issues introduced between tests, and treating scans as request-only abandons the continuous coverage a build pipeline is positioned to provide automatically.

  31. 31. An analyst is asked to explain why an OT network for a water treatment facility separates the process control network from the corporate IT network with a demilitarized zone rather than a single flat network. Which concept BEST explains this design?

    • A. A cost-saving measure with no security purpose, since OT protocols like Modbus already include strong built-in encryption and mutual authentication by design specification
    • B. A regulatory requirement that applies only to nuclear facilities and has no relevance to water treatment or other industrial environments
    • C. A legacy convention from the 1990s that current ICS/SCADA security guidance actively recommends removing in favor of one flat network
    • D. The Purdue Model's layered segmentation, which isolates safety-critical control systems from IT and external networks to limit the blast radius of a compromise
    Show answer & explanation

    Answer: D
    The Purdue Model segments industrial control environments into levels, keeping safety-critical control systems (lower levels) isolated from business IT and external networks (higher levels) through DMZs, which limits how far an intrusion on one side can reach, a practice reinforced by NIST SP 800-82's guide to operational technology security. Modbus and many legacy ICS protocols lack built-in encryption or authentication, making segmentation more necessary rather than unnecessary, the practice is not limited to nuclear facilities, and current OT security guidance continues to recommend layered segmentation rather than collapsing it into one flat network.

  32. 32. A security engineer configures a secrets vault so that a database credential used by an application is automatically rotated every 24 hours and is never written into application source code or configuration files. Which practice does this MOST directly support?

    • A. Centralized secrets management with automated rotation, which limits how long a leaked credential remains valid if it is ever exposed
    • B. Static credential embedding, which is considered best practice specifically because it lets developers audit every value directly in source control
    • C. Shared account usage, where the same rotated credential is deliberately distributed to every employee to simplify onboarding and offboarding
    • D. Storing a locally cached copy of the current rotated credential in an encrypted file on each application server for faster access
    Show answer & explanation

    Answer: A
    Storing secrets in a centralized vault with automated rotation, rather than hardcoding them in source or config files, follows key and credential management practices reflected in NIST SP 800-57's guidance: a leaked credential has a short useful life before rotation invalidates it, and the secret never appears in a repository an attacker or careless developer could read. Embedding static credentials in source code is a well-known anti-pattern this design avoids, sharing one account across employees defeats individual accountability, and caching a local encrypted copy of the rotated credential on each server reintroduces a static secret outside the vault that a compromised server's own attacker could still read, undermining the centralization the vault is meant to provide.

  33. 33. A compliance auditor asks why the SOC forwards logs from firewalls, endpoints, and the identity provider to a write-once storage tier in addition to the primary SIEM index. What security property does this write-once retention MOST directly support?

    • A. Log compression, since write-once storage tiers are specifically optimized to reduce the on-disk size of raw event data by roughly half
    • B. Log integrity, since data written to a write-once, read-many tier cannot be altered or deleted after ingestion, supporting evidentiary trust in the records
    • C. Faster query performance, since write-once storage is indexed identically to the primary SIEM and returns search results more quickly
    • D. Automatic threat detection, since simply storing logs in a write-once tier triggers every correlation rule instantly without any separate detection engineering
    Show answer & explanation

    Answer: B
    Write-once, read-many (WORM) retention prevents logs from being modified or deleted after they are written, which protects their integrity and supports their use as trustworthy evidence during an investigation or audit, a control area addressed in NIST SP 800-53's audit and accountability family. WORM tiers are not built for compression efficiency or faster ad hoc search, and simply retaining logs in immutable storage performs no correlation or alerting on its own; that still requires separate detection rules running against the data.

  34. 34. During a multi-source investigation, an analyst finds that timestamps from the firewall, the endpoint agent, and the identity provider disagree by several minutes, making it hard to establish the true order of events. Which underlying control gap MOST likely caused this?

    • A. The SIEM's storage retention period was set too short, causing older events from each source to be purged before correlation could occur
    • B. The firewall, endpoint agent, and identity provider were all configured to log in different character encodings, corrupting the timestamp fields
    • C. Inconsistent or absent network time synchronization (NTP) across the log sources, so each system's clock drifted independently
    • D. The analyst's browser cached an outdated version of the SIEM dashboard, displaying stale timestamps that no longer match the underlying data
    Show answer & explanation

    Answer: C
    Reliable event correlation depends on every log source sharing an accurate, synchronized time base, typically via NTP; without consistent time sync, independent clock drift produces timestamp mismatches across sources that make sequencing events and reconstructing an intrusion timeline difficult or unreliable. A short retention window would remove old events rather than skew their timestamps, character encoding issues would corrupt text rendering rather than shift time values consistently, and a cached dashboard view would show stale results rather than internally inconsistent timestamps across three different backend systems.

  35. 35. An analyst is asked to write a YARA rule to detect a family of malware samples that share a distinctive byte sequence in their unpacked payload but use different file names and hashes across variants. Why is a YARA rule better suited to this task than a hash-based blocklist?

    • A. A hash-based blocklist is actually the better tool here, since cryptographic hashes are specifically designed to remain identical across all variants of a malware family
    • B. YARA rules can only be written for network traffic captures and cannot inspect the contents of a file on disk at all
    • C. YARA and hash-based blocklists produce mathematically identical detection coverage, so the choice between them has no practical effect on this task
    • D. YARA matches on patterns such as byte sequences, strings, and structural conditions within a file, so it still detects variants even when hashes and file names change
    Show answer & explanation

    Answer: D
    YARA rules describe patterns, such as specific byte sequences, strings, or combinations of conditions found inside a file, so they continue matching a malware family across variants that change file names or produce entirely different cryptographic hashes, which is exactly the limitation a pure hash blocklist has. Hashes change with any byte-level modification to a file, making a hash blocklist brittle against repacked or recompiled variants, YARA is commonly used for file and memory pattern matching rather than being limited to network traffic, and the two approaches have materially different detection coverage rather than being interchangeable.

  36. 36. An analyst receives a suspicious email attachment and needs to quickly decode a Base64-encoded, then gzip-compressed payload embedded in the file to inspect its contents without executing it. Which category of tool is BEST suited to this specific task?

    • A. A data manipulation and decoding toolkit that chains operations like Base64 decode and gzip decompression to reveal the payload safely
    • B. A network-based vulnerability scanner, since decoding an email attachment's payload is functionally identical to scanning a host for missing patches
    • C. A SOAR playbook editor, since decoding a single encoded attachment always requires building a full automated response workflow first
    • D. An identity and access management console, since inspecting an encoded attachment is primarily a question of the analyst's account permissions
    Show answer & explanation

    Answer: A
    Recipe-based decoding and data manipulation toolkits let an analyst chain operations such as Base64 decoding and decompression to reveal an encoded payload's contents in a controlled way without running the file, which is the safe first step recommended in guidance on examining artifacts during an investigation such as NIST SP 800-86. A vulnerability scanner assesses hosts for missing patches and misconfigurations rather than decoding a single file, a SOAR playbook automates a response workflow rather than performing ad hoc decoding, and IAM tooling manages account permissions, none of which decode an encoded attachment's bytes.

  37. 37. An analyst wants to check whether an external IP address that just triggered a firewall alert has a history of abuse reports, and separately wants to see which organization currently registers the domain it resolved from. Which two lookups accomplish this?

    • A. A CVSS base score calculation for the address, and a software bill of materials lookup for the domain's web server software
    • B. An IP reputation and abuse-report lookup for the address, and a WHOIS registration lookup for the domain
    • C. A chain-of-custody log entry for the address, and a forensic disk image checksum for the domain's registrar
    • D. A YARA rule scan of the address, and a packet capture filter built specifically for the domain's registrar's mail servers
    Show answer & explanation

    Answer: B
    An IP reputation and abuse-report service aggregates community-submitted reports of malicious activity tied to an address, while a WHOIS lookup returns the current registrant and registrar information for a domain, together giving an analyst quick context on both the network origin and the domain's ownership history. CVSS scoring and SBOMs apply to software vulnerabilities rather than IP or domain reputation, chain of custody and disk image hashing apply to evidence handling rather than lookup services, and a YARA rule matches file or memory patterns rather than looking up address reputation or domain registration.

  38. 38. A threat intelligence analyst wants to share newly discovered indicators of compromise with a partner organization in a structured, machine-readable format that both organizations' security tools can automatically ingest, rather than emailing a spreadsheet. Which capability BEST supports this?

    • A. A shared spreadsheet emailed weekly, since structured exchange formats are considered slower to adopt across organizations than manual file transfer
    • B. A printed report mailed to the partner's physical office, since automated ingestion of threat data is not supported by any current intelligence platform
    • C. A threat intelligence platform that exports indicators in a structured, standardized exchange format both organizations' tools can automatically parse
    • D. A verbal briefing given only once per quarter, since indicators of compromise are not the kind of information that benefits from timely automated sharing
    Show answer & explanation

    Answer: C
    A threat intelligence platform that exports indicators in a standardized, structured format allows partner organizations to automatically ingest and act on new indicators of compromise across their own detection tooling, which is the kind of automated information sharing NIST SP 800-150 describes as more timely and consistent than manual exchange. A weekly spreadsheet and a mailed printed report both require manual re-entry and introduce delay, and a quarterly verbal briefing is far too infrequent for indicators that can go stale within hours or days.

  39. 39. An analyst reviewing Zeek network security monitor logs notices a connection log (conn.log) entry showing a long-duration, low-byte-count connection to an external host on an uncommon port, alongside a corresponding DNS log entry for a domain registered only days earlier. What does this combination MOST strongly suggest?

    • A. A routine software update check, since long-duration low-byte connections to uncommon ports are the expected, well-documented behavior of standard patch management tools
    • B. A misconfigured NTP time source causing the conn.log and DNS log timestamps to drift apart, which makes an otherwise unremarkable connection look more suspicious than it actually is
    • C. Normal CDN load-balancing behavior, since content delivery networks routinely register new domains just days before pointing production traffic at them
    • D. Likely command-and-control beaconing to newly registered infrastructure, since Zeek's protocol-aware logs reveal both the connection pattern and the domain's recent registration
    Show answer & explanation

    Answer: D
    Zeek produces protocol-specific logs such as conn.log and dns.log that let an analyst correlate a long-lived, low-volume connection on an unusual port with the recent registration date of the domain it resolved from, a pattern consistent with a beaconing implant reaching out to newly stood-up infrastructure rather than legitimate traffic. Patch management tools do not typically produce this exact low-and-slow pattern on uncommon ports; clock drift from a misconfigured time source is a real operational issue worth fixing but would not by itself manufacture a long-duration connection to a domain registered only days earlier; and legitimate CDNs use long-established, widely recognized domains rather than infrastructure registered only days before use.

Vulnerability Management

29 questions
  1. 40. A vulnerability scan returns a critical CVSS score for a missing patch on an internal file server that is accessible only from a tightly controlled management VLAN with no direct user or internet access. How should the analyst MOST appropriately factor this exposure into prioritization?

    • A. Prioritize it identically to an internet-facing system with the same CVSS base score, since the base metric group alone determines priority regardless of network exposure
    • B. Adjust priority downward relative to an equivalent internet-facing vulnerability, since compensating network controls reduce practical exploitability
    • C. Ignore the finding completely because internal systems are never attacked
    • D. Escalate it as the single highest priority in the organization regardless of other findings
    Show answer & explanation

    Answer: B
    Effective vulnerability management considers environmental context (CVSS environmental/temporal factors) alongside the base score; restricted network access meaningfully lowers real-world exploitability compared to an equivalent internet-facing flaw, so relative prioritization should reflect that. Treating CVSS base score as the sole determinant, ignoring the finding outright, or blindly escalating it above all else in a limited-exposure context all fail to properly apply risk-based prioritization.

  2. 41. An organization's vulnerability scanner reports a finding that later proves not to be exploitable because the vulnerable service is disabled on the host. What is this scan result BEST classified as?

    • A. A true positive
    • B. A false negative
    • C. A false positive
    • D. A true negative
    Show answer & explanation

    Answer: C
    A false positive occurs when a scanner reports a vulnerability that does not actually pose risk under real conditions, as is the case here since the vulnerable service is disabled and therefore not exploitable. A true positive would mean the vulnerability is genuinely present and exploitable, a false negative would mean an actual vulnerability was missed by the scan, and a true negative means no vulnerability existed and none was reported.

  3. 42. When prioritizing remediation across hundreds of scan findings, which combination of factors gives the MOST risk-accurate prioritization?

    • A. CVSS score combined with asset criticality, exposure, and known active exploitation
    • B. CVSS base score alone
    • C. Alphabetical order of the CVE identifiers
    • D. The order in which the scan tool listed the findings in its default unsorted CSV export
    Show answer & explanation

    Answer: A
    Risk-based vulnerability prioritization combines the technical severity (CVSS) with business context such as asset criticality, network exposure, and threat intelligence on active exploitation to determine true organizational risk, rather than relying on any single or arbitrary factor. CVSS alone ignores business context, alphabetical CVE ordering and default tool output order have no bearing on actual risk and are effectively random with respect to prioritization.

  4. 43. A web application scan flags a parameter as vulnerable to SQL injection. Which remediation is MOST effective at addressing the root cause rather than just masking symptoms?

    • A. Using parameterized queries (prepared statements) for all database interactions
    • B. Hiding error messages returned by the database
    • C. Renaming the vulnerable parameter to something less obvious while leaving the underlying query string concatenation unchanged
    • D. Increasing the web server's request timeout value
    Show answer & explanation

    Answer: A
    Parameterized queries separate SQL code from user-supplied data so injected input cannot be interpreted as executable SQL, directly addressing the root cause of SQL injection. Hiding error messages reduces information disclosure but does not stop the injection itself, renaming a parameter is security through obscurity and trivially bypassed, and adjusting request timeouts has no bearing on how input is parsed by the database.

  5. 44. An analyst compares two vulnerabilities with identical CVSS base scores of 8.8. Vulnerability A has a publicly available working exploit and is being actively used in the wild; Vulnerability B has no known public exploit. How should this affect remediation prioritization?

    • A. Both should be treated identically since CVSS scores are equal
    • B. Vulnerability A should be prioritized higher due to confirmed active exploitation increasing real-world risk
    • C. Vulnerability B should be prioritized higher because it is less understood
    • D. Neither should be prioritized until a third vulnerability with a matching CVSS temporal score is found for comparison
    Show answer & explanation

    Answer: B
    Threat intelligence about active, real-world exploitation is a temporal/contextual factor that increases actual risk beyond the static base score, so Vulnerability A represents a more urgent, immediate threat and should be remediated first. Treating both identically ignores available threat context, prioritizing the less-understood one over the actively exploited one inverts real risk, and there's no reason prioritization must wait on unrelated findings.

  6. 45. Which scanning approach requires valid login credentials to the target system and typically yields more accurate results by inspecting installed software, patch levels, and configuration directly?

    • A. Uncredentialed (unauthenticated) scanning
    • B. Credentialed (authenticated) scanning
    • C. Passive network scanning only
    • D. Port scanning without service detection
    Show answer & explanation

    Answer: B
    Credentialed scans log into the target with valid credentials, allowing the scanner to enumerate installed packages, patch levels, and local configuration directly, producing far fewer false positives/negatives than external probing alone. Uncredentialed scans only see what's exposed externally, passive scanning merely observes traffic without actively querying configuration, and basic port scanning without service detection reveals only open ports, not patch or configuration state.

  7. 46. A vulnerability management program wants to reduce its attack surface on a legacy server that cannot be patched due to vendor end-of-life. Which compensating control is MOST appropriate?

    • A. Do nothing since patching is impossible
    • B. Expose the server directly to the internet on TCP port 3389 to simplify remote administrative access
    • C. Disable all logging on the server to reduce noise
    • D. Isolate the server on a segmented network with strict access control lists and enhanced monitoring
    Show answer & explanation

    Answer: D
    When patching is not possible, isolating the asset behind network segmentation with restrictive ACLs and heightened monitoring is a standard compensating control that reduces exploitability and improves detection of any attempted attack. Doing nothing leaves the vulnerability fully exposed, exposing the server to the internet dramatically increases risk, and disabling logging removes the visibility needed to detect exploitation attempts on an unpatchable system.

  8. 47. During a vulnerability assessment, an analyst identifies that a legacy protocol (Telnet) is enabled on several network devices, transmitting credentials in cleartext. What is the BEST remediation recommendation?

    • A. Disable Telnet and replace it with SSH for encrypted management access
    • B. Leave Telnet enabled but require longer passwords
    • C. Restrict Telnet to only IPv6 addresses
    • D. Change the default Telnet port number from TCP 23 to a non-standard high port above 10000
    Show answer & explanation

    Answer: A
    Telnet's fundamental weakness is that it transmits all data, including credentials, in cleartext; the only effective remediation is replacing it with an encrypted protocol like SSH. Longer passwords, IPv6 restriction, or changing the port do nothing to encrypt the traffic itself and leave credentials just as exposed to interception.

  9. 48. An organization's cloud infrastructure scan reveals a storage bucket configured with public read access containing sensitive customer records. From a vulnerability management perspective, what is the MOST accurate characterization of this finding?

    • A. A low-severity configuration issue with no real risk
    • B. A critical misconfiguration representing a data exposure risk requiring immediate remediation
    • C. An expected and acceptable default state for cloud storage
    • D. A finding that only affects availability, not confidentiality, since the bucket's replication settings remain private
    Show answer & explanation

    Answer: B
    A publicly readable storage bucket containing sensitive records is a serious confidentiality-impacting misconfiguration since anyone on the internet could access customer data, warranting urgent remediation (restricting access and auditing for prior exposure). It is not low severity or an acceptable default, and its primary impact is on confidentiality (unauthorized disclosure), not availability.

  10. 49. A patch management team must decide how to handle a vendor-released patch for a critical remote code execution vulnerability affecting a business-critical production application. Testing shows the patch may break a custom integration. What is the BEST course of action?

    • A. Apply the patch to production immediately without testing to close the vulnerability as fast as possible, accepting the resulting integration outage as an acceptable tradeoff
    • B. Never apply the patch since it might break the integration
    • C. Test the patch in a staging environment, coordinate remediation of the integration issue, and apply compensating controls until the patch can be safely deployed
    • D. Uninstall the custom integration permanently without informing stakeholders
    Show answer & explanation

    Answer: C
    Balanced vulnerability management requires validating patches in a non-production environment, working with stakeholders to resolve compatibility issues, and applying compensating controls (e.g., additional monitoring or network restrictions) to manage risk during the interim, rather than choosing an extreme of immediate unvalidated deployment or indefinite delay. Applying untested patches to production risks an outage, refusing to patch leaves a critical RCE open indefinitely, and unilaterally removing business functionality without stakeholder input is an inappropriate and disruptive shortcut.

  11. 50. Which of the following BEST describes the purpose of penetration testing in relation to vulnerability scanning within a vulnerability management program?

    • A. Penetration testing actively attempts to exploit identified weaknesses to validate real-world impact, complementing the broader coverage of automated scanning
    • B. Penetration testing replaces the need for any vulnerability scanning
    • C. Penetration testing is only ever performed by fully automated tools with no human tester involvement, making it functionally identical to a vulnerability scan
    • D. Penetration testing and vulnerability scanning always test only web applications
    Show answer & explanation

    Answer: A
    Vulnerability scanning provides broad, automated identification of potential weaknesses, while penetration testing goes further by having skilled testers actively attempt exploitation to demonstrate real business impact and validate whether a vulnerability is truly exploitable in context; the two are complementary, not substitutes. Pen testing does not replace scanning's breadth, it typically involves significant manual tester expertise rather than being purely automated, and both practices apply to networks, endpoints, and cloud infrastructure, not solely web applications.

  12. 51. An authenticated vulnerability scan returns substantially more findings than an unauthenticated scan of the same host. Why?

    • A. Unauthenticated scanning is actually more thorough but intentionally reports fewer findings so the executive summary dashboard stays shorter for leadership review
    • B. Credentialed scanning inspects installed software versions and configuration directly rather than inferring from network responses, producing more complete and more accurate results
    • C. The difference is entirely random
    • D. Authenticated scanning creates vulnerabilities on the host
    Show answer & explanation

    Answer: B
    Without credentials the scanner infers from banners and behaviour, which both misses local issues and produces false positives where a backported fix leaves the version string unchanged. Credentialed scanning is therefore preferred internally, while unauthenticated scanning usefully shows what an unauthenticated attacker would see; reporting fewer findings is a side effect of that narrower visibility rather than a deliberate design choice made for the sake of a shorter executive dashboard.

  13. 52. An organization must decide the frequency of vulnerability scanning. What consideration should drive it?

    • A. The scanner licence's maximum permitted scans
    • B. The availability of the security team to read reports
    • C. The rate at which the environment changes and new vulnerabilities are disclosed, since the interval between scans is a window of unknown exposure
    • D. The calendar quarter boundaries for reporting convenience, aligning scan windows with the finance department's own closing schedule
    Show answer & explanation

    Answer: C
    Quarterly scanning in an environment deploying daily means the organization is unaware of its exposure for most of the period, which is why continuous or event-triggered scanning has largely replaced fixed schedules. Integrating scanning into deployment pipelines catches issues before they reach production rather than reporting them afterward; aligning scan windows to the finance department's closing calendar ties scan cadence to an unrelated business process instead of to how quickly the environment and its threat exposure actually change.

  14. 53. A vulnerability scan reports a critical finding on a host. What must be established before treating it as critical to the organization?

    • A. Whether the scanner was authenticated during the scan, since unauthenticated scans are logged in a separate report queue by most scanning platforms
    • B. Whether the vulnerable component is actually reachable and in use, since severity scores describe the vulnerability rather than the organization's exposure to it
    • C. Whether the vendor has released a patch only
    • D. Whether other organizations have been exploited only
    Show answer & explanation

    Answer: B
    A base severity score is a property of the flaw, and the organization's risk depends on exposure, compensating controls and the asset's importance. A critical vulnerability in a component that is never loaded ranks below a moderate one on an internet-facing system holding sensitive data; whether the scan itself was authenticated affects how completely the scanner could see the host, not whether the finding it already reported is actually reachable and in use, which is the exposure question that still needs answering.

  15. 54. A reported vulnerability cannot be patched because the vendor no longer supports the product. What is the appropriate handling?

    • A. Close the finding as not applicable since no patch exists
    • B. Continue scanning without any other action
    • C. Remove the system from the scan scope to clear the report, migrating its asset record into a separate decommissioned-systems tracking spreadsheet
    • D. Apply compensating controls such as isolation, restricted access and enhanced monitoring, and record the accepted residual risk with an owner and a replacement plan
    Show answer & explanation

    Answer: D
    An unpatchable vulnerability is still an exposure, so the response shifts from remediation to mitigation plus documented risk acceptance with an owner. Removing the asset from scope makes the metric improve while the risk remains, which is a reporting failure rather than a security one; migrating its record into a separate decommissioned-systems tracking spreadsheet has the same effect for a system that has not actually been decommissioned, hiding the exposure from the primary inventory instead of managing it.

  16. 55. A scan finding is investigated and proves not to exist on the host. What has occurred and what should follow?

    • A. A false positive, which should be documented and the scanner tuned, since repeated false positives erode confidence in the entire report
    • B. A false negative, requiring the scan to be rerun
    • C. A true positive that was remediated automatically
    • D. A configuration error requiring the host to be rebuilt from a known-good golden image and re-enrolled in the scanner's asset inventory
    Show answer & explanation

    Answer: A
    False positives consume remediation effort and, more damagingly, teach system owners to distrust findings, which delays response to genuine ones. A false negative is the opposite and more dangerous error, where a real vulnerability is not reported, and it is detected only through penetration testing or an incident; rebuilding a host from a golden image and re-enrolling it in inventory addresses a genuine configuration drift scenario, but that is not what happened here, where the finding simply did not exist on the host to begin with.

  17. 56. A web application scan reports a SQL injection finding. How should the analyst verify it before escalating?

    • A. Exploit it fully against the live production database to demonstrate impact, extracting and publishing real customer records as proof
    • B. Escalate immediately without any verification
    • C. Confirm the behaviour in a controlled, authorized manner against a non-production instance where possible, documenting the evidence
    • D. Assume it is a false positive and close it
    Show answer & explanation

    Answer: C
    Verification distinguishes a real finding from scanner noise and provides the evidence a development team needs to act, but it must stay within authorized scope. Fully exploiting production risks data damage and may exceed the authorization the analyst holds, which converts a defensive activity into an incident.

  18. 57. An organization must prioritize among thousands of open vulnerabilities. What information most improves prioritization beyond severity?

    • A. Whether the vulnerability is being actively exploited in the wild, which changes the probability of attack far more than the score alone
    • B. The number of characters in the vulnerability identifier string, which some legacy ticketing systems use to auto-sort the remediation backlog
    • C. The age of the scanning tool's signature database
    • D. The alphabetical order of the affected products
    Show answer & explanation

    Answer: A
    Known exploitation moves a vulnerability from theoretical to imminent, which is why exploitation catalogues and threat intelligence are combined with severity to produce a defensible ranking. Asset criticality and exposure complete the picture, since the same vulnerability carries different risk on different systems, while the identifier's character count is a formatting detail some older ticketing tools happen to sort by and carries no information about actual risk.

  19. 58. A cloud workload's configuration is scanned rather than its software. What class of finding does this surface?

    • A. Only missing operating system patches, the exact same class of finding a fully credentialed, host-based authenticated vulnerability scanner already reports
    • B. Misconfiguration such as overly permissive access, public exposure or absent logging, which causes a large share of cloud incidents independently of software vulnerabilities
    • C. Only application source code defects
    • D. Only expired TLS certificates
    Show answer & explanation

    Answer: B
    Cloud incidents are dominated by configuration errors rather than exploited software flaws, since a publicly readable storage bucket requires no vulnerability to exploit. Configuration scanning and policy-as-code enforcement therefore address a distinct and larger risk surface than traditional vulnerability scanning; a host-based authenticated scanner inspects installed software and patch levels rather than cloud resource settings like bucket permissions or logging configuration, so it does not surface this class of finding the way a configuration scan does.

  20. 59. An analyst must assess the risk of a vulnerability in a third-party library used across many applications. What complicates the response?

    • A. The library's licence terms
    • B. The programming language the library is written in, since some legacy static analysis tools only support scanning a small handful of specific popular languages
    • C. Determining which applications actually include the library and whether the vulnerable function is reachable, which requires dependency inventory the organization may not have
    • D. The number of contributors to the library
    Show answer & explanation

    Answer: C
    Transitive dependencies mean a library can be present without any team having chosen it, so answering which systems are affected becomes an archaeology exercise under time pressure. A maintained software bill of materials converts that question into a lookup, which is why it matters most during exactly this scenario; the language the library happens to be written in affects which static analysis tools can parse its source, but it has no bearing on which running applications actually include the vulnerable function.

  21. 60. A penetration test report and a vulnerability scan report are both received. How do their findings differ in character?

    • A. The scan actually proves exploitability against production systems while the test merely enumerates the same issues a scanner's plugin database would already recognize automatically
    • B. Both produce identical findings by different means
    • C. The test covers only physical security
    • D. The test demonstrates exploitable paths and their business impact on a smaller set of issues, while the scan enumerates a far larger set of potential weaknesses without proving exploitability
    Show answer & explanation

    Answer: D
    Depth versus breadth is the distinction, and chained findings are the test's particular value, since two individually moderate issues can combine into a critical path a scanner would never connect. Neither substitutes for the other, and a programme relying only on scanning misses the chains while one relying only on testing misses the volume; a scan reports what its plugin database recognizes as a potential weakness rather than proving exploitability the way an actual test attempt does, so describing the scan as the one that proves exploitability reverses their actual roles.

  22. 61. A CVSS v4.0 base score for a vulnerability shows an Attack Vector of Network, Attack Complexity of Low, and no privileges required, but the environmental score is later adjusted downward significantly by the analyst. Which factor MOST likely justifies that adjustment?

    • A. The base score calculation was performed incorrectly by the scanner and should be recalculated using the Attack Requirements metric
    • B. The vulnerability has since been assigned a new CVE identifier
    • C. The vendor released a blog post describing the vulnerability
    • D. The affected asset sits in a segmented environment with compensating controls that reduce real-world exploitability
    Show answer & explanation

    Answer: D
    CVSS v4.0's Environmental (Security Requirements) metrics let analysts adjust a base score to reflect an organization's actual security controls and asset placement, such as network segmentation or compensating controls that reduce practical exploitability, even though the underlying technical severity of the flaw itself has not changed; a new CVE identifier or vendor publicity has no bearing on the score's environmental component, and a miscalculated base score would be corrected by recomputing the base metrics, not by adjusting environmental factors.

  23. 62. An organization runs the same authenticated vulnerability scan monthly against a server farm. This month, a previously reported critical finding no longer appears, but no patch was deployed and no change ticket exists for that host. What should the analyst do?

    • A. Investigate why the finding disappeared without a corresponding remediation record, since this could indicate scan failure, agent issues, or unauthorized changes
    • B. Assume the vulnerability was a false positive originally, close it, and lower the scanner's authentication timeout setting to avoid similar alarms later
    • C. Reduce the scan frequency since the finding is no longer present
    • D. Escalate directly to law enforcement without further investigation
    Show answer & explanation

    Answer: A
    A critical finding vanishing without any documented remediation is itself a red flag that warrants investigation, since possible causes include a failed or incomplete scan, a disabled or misconfigured scanning agent, or an undocumented change made outside of normal change control, any of which could mask real risk rather than eliminate it. Assuming the original finding was a false positive and adjusting the scanner's authentication timeout closes the ticket without ever establishing why the finding actually disappeared, which is the question that needs answering first.

  24. 63. A vulnerability management team is choosing between agent-based and network-based scanning for a fleet of laptops that frequently leave the corporate network. Which factor MOST favors an agent-based approach for this asset group?

    • A. Agent-based scanning requires no software installation on endpoints
    • B. Agents can continue scanning and reporting even when the laptop is off the corporate network
    • C. Agent-based scanning always produces lower false-positive rates than network scanning regardless of plugin configuration
    • D. Agent-based scanning eliminates the need for credentialed access entirely
    Show answer & explanation

    Answer: B
    Because agents run locally on the endpoint, they can assess the system and report findings regardless of network location, which is a significant advantage for mobile or remote devices that a purely network-based scanner could never reach when off the corporate network; agents still require installation and credentialed context, so the other statements do not hold.

  25. 64. A remediation team wants to reduce exposure on a legacy industrial control system that cannot be patched or taken offline for business-continuity reasons. Which compensating control BEST reduces risk without altering the vulnerable software itself?

    • A. Upgrading the operating system to the newest version immediately
    • B. Installing the latest vendor patch despite the compatibility risk, even though the scenario states the system cannot be taken offline to apply it
    • C. Placing the system behind a dedicated firewall segment with strict access control lists limiting connectivity to only required hosts
    • D. Ignoring the finding since the system cannot be patched
    Show answer & explanation

    Answer: C
    Network segmentation with tightly scoped access control lists is a classic compensating control that reduces the attack surface and limits who can reach a vulnerable, unpatchable system, without touching the software itself; patching or upgrading are explicitly ruled out by the scenario, and ignoring the finding leaves risk unmanaged.

  26. 65. A software composition analysis tool flags a critical vulnerability in an open-source library embedded in a homegrown application. The library is used indirectly through several layers of nested dependencies. What is the analyst's BEST first step?

    • A. Ignore the finding since it is only an indirect dependency
    • B. Wait for the application's original developers to leave the company before acting, treating any SBOM lookup as unnecessary paperwork in the meantime
    • C. Delete the application since the dependency cannot be traced
    • D. Generate or consult a software bill of materials (SBOM) to trace exactly where and how the vulnerable library is used before determining remediation
    Show answer & explanation

    Answer: D
    A software bill of materials maps out an application's full dependency tree, including nested and transitive dependencies, which allows the analyst to precisely identify where the vulnerable library is invoked and assess whether it is reachable and exploitable before deciding on remediation such as an update, replacement, or compensating control.

  27. 66. During a scan review, an analyst finds a finding classified with high confidence that turns out, upon manual verification, to genuinely exist and be exploitable. What term correctly describes this scan result?

    • A. True positive
    • B. False positive
    • C. False negative
    • D. Indicator of compromise
    Show answer & explanation

    Answer: A
    A true positive is a finding that the scanner correctly identifies as present and that manual verification confirms is genuinely exploitable, which is exactly the outcome described; a false positive would instead be a finding that does not actually exist, and a false negative would be a real vulnerability the scan failed to detect at all.

  28. 67. An organization's change advisory board delays deploying a critical security patch to a production database server because the patch window conflicts with a quarter-end financial close. What is the MOST appropriate action for the vulnerability management team in the interim?

    • A. Deploy the patch anyway without change approval since it is critical
    • B. Recommend and implement interim compensating controls, such as enhanced monitoring or restricted access, until the patch can be applied
    • C. Permanently remove the vulnerability from the tracking system
    • D. Take no action until the approved patch window since the change advisory board's delay counts as formal, documented risk acceptance by the business
    Show answer & explanation

    Answer: B
    When a critical patch must be delayed for legitimate business reasons, the standard practice is to reduce risk in the interim through compensating controls like heightened monitoring, tightened access, or additional network restrictions rather than either bypassing change control or leaving the exposure entirely unmanaged until the deferred window arrives.

  29. 68. Which of the following BEST describes the purpose of a vulnerability scanner's plugin or signature database?

    • A. It encrypts network traffic between the scanner and target hosts using TLS 1.3 so scan results cannot ever be intercepted in transit
    • B. It stores the organization's incident response playbooks
    • C. It contains the checks used to detect known vulnerabilities, misconfigurations, and missing patches on target systems
    • D. It logs all successful user authentications across the network
    Show answer & explanation

    Answer: C
    A vulnerability scanner relies on a regularly updated plugin or signature database containing the specific checks it uses to identify known CVEs, misconfigurations, and missing patches on scanned systems; the other choices describe unrelated functions such as incident response documentation, authentication logging, or traffic encryption that a scanner's detection database does not perform.

Incident Response and Management

18 questions
  1. 69. An incident responder is analyzing a suspected ransomware infection. Which action should be taken FIRST to limit damage while preserving the ability to investigate?

    • A. Wait 24 hours to observe further behavior before taking any action, allowing encryption and lateral movement to continue completely unchecked
    • B. Isolate the affected host from the network (e.g., disable its network interface) while keeping it powered on for potential memory analysis
    • C. Power off the affected system completely before any analysis
    • D. Delete all files on the host immediately to stop the spread
    Show answer & explanation

    Answer: B
    Network isolation stops the ransomware from spreading laterally or continuing to communicate with C2 infrastructure while keeping the system powered on preserves volatile memory that may contain encryption keys or forensic artifacts. Powering off immediately can destroy volatile evidence in RAM, deleting files destroys evidence and does not address the root infection, and waiting 24 hours allows continued spread and data loss during active ransomware activity.

  2. 70. During incident response, which order BEST reflects the standard phases of the incident response lifecycle as commonly taught?

    • A. Eradication, Preparation, Containment, Detection, Recovery, Lessons Learned, matching the NIST SP 800-61 framework order
    • B. Lessons Learned, Preparation, Detection, Eradication, Containment, Recovery
    • C. Recovery, Containment, Detection, Preparation, Eradication, Lessons Learned
    • D. Preparation, Detection and Analysis, Containment/Eradication/Recovery, Post-Incident Activity (Lessons Learned)
    Show answer & explanation

    Answer: D
    The widely recognized incident response lifecycle begins with Preparation (readiness before an incident), followed by Detection and Analysis, then Containment, Eradication, and Recovery, and finally Post-Incident Activity/Lessons Learned to improve future response; the other orderings scramble this logical sequence in ways that don't reflect how a real incident actually needs to be handled (e.g., you cannot contain a threat before detecting it, and lessons learned must come after recovery, not before preparation).

  3. 71. An analyst is calculating chain of custody documentation while collecting a forensic disk image from a compromised server. What is the PRIMARY reason this documentation is critical?

    • A. It replaces the need for cryptographic hashing of the evidence, since a signed custody log alone proves the image was not altered
    • B. It speeds up the imaging process technically
    • C. It is only needed for external audits, not incident response
    • D. It establishes an unbroken record of who handled the evidence and when, supporting its admissibility and integrity
    Show answer & explanation

    Answer: D
    Chain of custody documents every person who accessed, handled, or transferred evidence and when, which is essential for demonstrating the evidence has not been tampered with and remains legally admissible and trustworthy. It has no effect on the technical speed of imaging, it is relevant to internal incident response as well as any legal proceedings, and it complements rather than replaces cryptographic hashing (which verifies integrity of the data itself).

  4. 72. A responder needs to preserve volatile data before it is lost during an active incident. Per the standard order of volatility, which of the following should generally be collected FIRST?

    • A. Data on backup tapes stored offsite
    • B. Files stored on the local hard disk
    • C. Printed documentation retained in the server room's locked fireproof cabinet for the legally required seven-year period
    • D. Contents of RAM and active network connections
    Show answer & explanation

    Answer: D
    The order of volatility prioritizes collecting the most transient data first; RAM contents and active network connections/state disappear the moment a system is powered off or a session ends, making them the highest priority to capture. Disk-based files persist after shutdown and can be imaged later, backup tapes are already durable long-term storage, and printed documentation is entirely static and non-volatile.

  5. 73. An incident response team determines that an attacker gained access via a phished credential and has been dormant in the environment for several weeks, moving laterally between systems. Which containment strategy BEST balances stopping further damage with preserving evidence for full scope determination?

    • A. Take no containment action until the full scope of compromise is confirmed with certainty
    • B. Apply targeted containment (disabling the compromised account, isolating known-affected hosts) while continuing to monitor for additional indicators before full eradication
    • C. Immediately terminate all user accounts across the entire organization
    • D. Immediately wipe and rebuild every server in the environment without further investigation, restoring each one from the most recent nightly backup snapshot
    Show answer & explanation

    Answer: B
    Targeted containment addresses known compromised accounts and hosts to limit further lateral movement while preserving the broader environment for continued monitoring and investigation to fully scope the incident before eradication — this mirrors real-world guidance to contain proportionally rather than overreact or underreact. Disabling every account organization-wide is disruptive and unnecessary, waiting for absolute certainty allows continued attacker activity, and wiping and restoring every server from the prior night's backup destroys evidence, discards weeks of undetected dwell time nobody has scoped yet, and is a wildly disproportionate response before the compromise is even understood.

  6. 74. A company's incident response plan requires notifying specific regulatory bodies within a defined time window after confirming a breach involving personal data. Which document or process would MOST likely define this specific obligation?

    • A. The vulnerability scanning schedule
    • B. The organization's data breach notification policy, informed by applicable legal/regulatory requirements
    • C. The company's marketing brand style guide
    • D. The network diagram maintained by IT operations, since it lists every regulator's public contact information
    Show answer & explanation

    Answer: B
    A breach notification policy, shaped by applicable regulations (such as data protection laws), is the document that defines who must be notified, what must be disclosed, and within what timeframe following a confirmed data breach. A vulnerability scanning schedule concerns proactive testing cadence, a brand style guide governs marketing appearance, and a network diagram documents infrastructure topology — none of these define legal notification obligations.

  7. 75. During post-incident review (lessons learned), the team identifies that a critical alert was missed because analysts were overwhelmed by low-fidelity noise from a poorly tuned rule. What is the MOST appropriate long-term corrective action?

    • A. Take no action since the incident has already been resolved
    • B. Improve detection rule tuning and alert prioritization to reduce noise and surface high-fidelity alerts more effectively
    • C. Hire more analysts without changing any detection tuning
    • D. Add a 30-day suppression filter for this exact alert pattern so the noise stops while the team focuses on other priorities
    Show answer & explanation

    Answer: B
    Addressing root cause requires improving detection engineering, tuning rules and prioritizing high-confidence alerts, so genuine threats are not buried in noise going forward, which is a core outcome of the lessons-learned phase. Simply adding headcount without fixing the underlying noise problem is an incomplete fix; a 30-day suppression filter silences the immediate symptom but expires having done nothing to the rule's actual signal-to-noise ratio, so the same missed-alert risk returns as soon as the filter lapses or the pattern shifts slightly; and taking no action ignores the purpose of post-incident review, which is continuous improvement.

  8. 76. During incident response, an analyst must decide whether to isolate a compromised host immediately. What is the tension?

    • A. Isolation destroys all forensic evidence on the host
    • B. Isolation stops further damage but alerts the attacker and may end the opportunity to observe their objectives and full footprint
    • C. Isolation is only technically possible after the investigation concludes and every affected host has been individually imaged for evidence
    • D. Isolation has no downside and should always be immediate
    Show answer & explanation

    Answer: B
    Containment timing balances limiting damage against preserving visibility, and the decision depends on what is at risk and how confident the team is that they have found everything. Isolating one host while an attacker holds credentials for others achieves little except warning them, which is why scoping precedes containment where the risk permits.

  9. 77. Evidence is collected from a compromised system. In what order should sources be captured?

    • A. In whatever order the tooling completes fastest
    • B. Archived backups first, since they are furthest from the incident and stored on a separate offsite retention schedule
    • C. Most volatile first, beginning with memory and network connections before disk and archived data
    • D. Disk images first, since they contain the most data
    Show answer & explanation

    Answer: C
    Order of volatility exists because memory contents, running processes and network state disappear on power loss or reboot while disk contents persist. Injected code, decryption keys and connections often exist only in memory, so capturing disk first can lose the evidence that explains the entire intrusion.

  10. 78. An analyst images a disk for forensic analysis. What step establishes that the image is a faithful copy?

    • A. Computing a cryptographic hash of the source and the image and confirming they match, with a write blocker preventing modification of the source
    • B. Comparing the file counts between source and image
    • C. Opening the image and browsing the file system visually
    • D. Confirming the image file size is larger than the source, which some older imaging tools report after adding padding sectors
    Show answer & explanation

    Answer: A
    Matching hashes demonstrate bit-level equivalence, and a write blocker ensures the acquisition process did not alter the original. Analysis is then performed on a copy of the image rather than on the original or the master image, so the verified acquisition remains untouched for later re-examination; an image reported larger than its source due to imaging-tool padding sectors says nothing about whether the actual evidentiary content matches, which only a hash comparison can establish.

  11. 79. During eradication, the team removes the attacker's known persistence mechanism. What must be verified before declaring the incident closed?

    • A. That the incident ticket has been assigned a severity rating high enough to satisfy the mandatory closure threshold the ticketing workflow itself enforces
    • B. That the affected user has changed their desktop wallpaper
    • C. That the antivirus signature database is current only
    • D. That the initial access vector is closed and no other persistence remains, since removing one mechanism while the entry path stays open invites immediate reinfection
    Show answer & explanation

    Answer: D
    Attackers commonly establish multiple persistence mechanisms precisely so removal of one does not end their access, and the unclosed entry vector allows a fresh compromise regardless. Enhanced monitoring for a period after recovery is what detects the reinfection that eradication missed; a ticket satisfying its workflow's severity or closure threshold is an administrative bookkeeping condition that has no bearing on whether the attacker's actual access has been eliminated.

  12. 80. A host shows a scheduled task created at an unusual hour running an executable from a user profile directory. What technique does this pattern suggest?

    • A. Data exfiltration over an encrypted channel
    • B. A denial of service against the local host
    • C. Normal software update behaviour requiring no review, matching the update schedule most vendors publish for patch Tuesday releases
    • D. Persistence, since scheduled tasks survive reboots and a user-writable location avoids requiring elevated privilege to place the payload
    Show answer & explanation

    Answer: D
    Persistence mechanisms must survive reboot, and scheduled tasks, run keys, services and startup folders are the common locations to check. The user-writable path is significant because it indicates the attacker may not have obtained elevation, which affects both the scope assessment and the response; a legitimate vendor update task would run from a system-managed installation path on the vendor's own schedule rather than from a user profile directory at an unusual hour, so matching it to patch Tuesday timing does not explain this specific placement.

  13. 81. An analyst automates a repetitive containment action through a response playbook. What should govern which steps are automated?

    • A. Avoiding automation entirely so an analyst reviews each action
    • B. Automating only steps that generate no logs
    • C. The reversibility and confidence of the action, so high-confidence reversible steps run automatically while disruptive or irreversible ones require human approval
    • D. Automating every step to minimize response time, since the vendor's default playbook template already ships with each contained action pre-approved for use
    Show answer & explanation

    Answer: C
    Automation earns its value on high-volume high-confidence actions such as enrichment and blocking a known-bad indicator, while automatically disabling an account or isolating a host on a low-confidence signal turns a false positive into a self-inflicted outage. Building the approval gate into the playbook keeps the speed benefit for the safe steps without accepting that risk on the consequential ones; a vendor template shipping with every action pre-approved out of the box does not account for how confident or reversible each specific action actually is in this environment.

  14. 82. During an active intrusion, an analyst confirms an attacker has established multiple footholds across several systems using different persistence mechanisms. Immediately isolating the first discovered host risks alerting the attacker before full scope is known. What approach BEST balances these competing concerns?

    • A. Take no containment action until every single compromised host is identified
    • B. Isolate each host on the network in one single visible action, immediately alerting the attacker even before the remaining scope is confirmed
    • C. Perform quiet, coordinated containment across identified footholds simultaneously while continuing scoping efforts on any remaining unknowns
    • D. Notify the attacker's ISP and wait for their response before acting
    Show answer & explanation

    Answer: C
    When multiple footholds exist, containing them all at once in a coordinated fashion minimizes the chance of tipping off the attacker through a single early, isolated action while still limiting further damage, rather than waiting indefinitely for perfect scope or overreacting with a highly visible full-network action. Isolating every host in one conspicuous action alerts the attacker at the same moment scoping is still incomplete, giving up the coordination advantage a quieter approach preserves; contacting the attacker's ISP and waiting for a response introduces delay with no containment benefit while the intrusion continues; and withholding all containment until every single host is identified lets confirmed footholds continue operating during that wait.

  15. 83. A forensic analyst must decide the order in which to collect evidence from a live, compromised system before it is powered down for imaging. Which of the following correctly reflects a MORE volatile data source that should generally be prioritized over a LESS volatile one?

    • A. Contents of system memory (RAM) are more volatile than data stored on the local hard disk
    • B. Disk image data is more volatile than data held in RAM
    • C. Archived log files retained on backup tape under a 90-day rotation policy are considered more volatile than the live state of an active network connection
    • D. Data stored on disk is more volatile than data stored on backup media
    Show answer & explanation

    Answer: A
    The order of volatility principle ranks data by how quickly it disappears once the system is powered off or time passes, and RAM contents are lost almost immediately upon shutdown, making them far more volatile than data persisted to a local hard disk, which survives a power-off; the other pairings in this question reverse that relationship.

  16. 84. After eradicating a confirmed persistence mechanism during an incident, the response team wants to declare the incident closed. Which action is MOST important to complete FIRST before closure?

    • A. Immediately delete all forensic images to free up storage
    • B. Restore all systems from the most recent backup without further verification, since the backup predates the original point of compromise
    • C. Publish the incident details externally to warn other organizations
    • D. Verify through monitoring and follow-up scanning that no additional persistence mechanisms or indicators of compromise remain active
    Show answer & explanation

    Answer: D
    Before declaring an incident closed, the team must verify that eradication was complete and no additional persistence mechanisms, backdoors, or indicators of compromise remain, since attackers frequently establish redundant footholds; deleting evidence prematurely, publishing sensitive details externally, or restoring from backup without verification could all leave residual compromise undetected or destroy evidence needed later.

  17. 85. A breach involving customer personal data affects individuals across multiple states and countries. Beyond the technical incident response, which additional obligation MOST likely arises for the organization?

    • A. A requirement to publicly release the full forensic investigation report, including raw memory images, on the company website
    • B. An obligation to immediately terminate all affected employees
    • C. Legal and regulatory notification requirements to affected individuals and applicable authorities within defined timeframes
    • D. A requirement to disable the organization's entire network permanently
    Show answer & explanation

    Answer: C
    Breaches involving personal data commonly trigger legal and regulatory notification obligations to affected individuals and relevant authorities, often within specific timeframes defined by applicable privacy laws, which runs alongside and beyond the purely technical containment, eradication, and recovery work of incident response; the other listed actions are not standard obligations arising from a data breach.

  18. 86. During the lessons-learned phase of an incident, the team identifies that a critical detection gap allowed an attacker to persist undetected for weeks. Which corrective action MOST directly addresses the root cause rather than just the symptom?

    • A. Purchase a new SIEM platform without addressing the underlying gap
    • B. Increase the number of analysts on shift without changing any detection coverage at all, leaving the same undetected technique fully free to recur later
    • C. Document the gap in the report and take no further action
    • D. Develop and deploy a new detection rule or data source specifically targeting the technique that went undetected, then validate it catches the behavior
    Show answer & explanation

    Answer: D
    Addressing the root cause of a detection gap requires building and validating a specific detection capability targeting the technique that was missed, ensuring the same class of activity would be caught in the future, rather than simply adding headcount, buying new tooling without changing coverage, or documenting the gap without remediating it.

Reporting and Communication

14 questions
  1. 87. A CySA+ analyst needs to communicate a newly discovered vulnerability to the software development team responsible for the affected application. Which element is MOST important to include to enable an effective and efficient fix?

    • A. A general statement that 'security issues exist' with no further detail, reproduction steps, or affected file names
    • B. Specific reproduction steps, affected component/code location, and business risk context
    • C. Only the CVSS numeric score with no other context
    • D. A request to shut down the entire application indefinitely
    Show answer & explanation

    Answer: B
    Developers need actionable detail — how to reproduce the issue, exactly where in the code or component it exists, and why it matters from a risk standpoint — to prioritize and fix the vulnerability efficiently. A vague statement gives them nothing to act on, a bare CVSS score without context or reproduction steps doesn't tell them what to fix or where, and demanding a full application shutdown is a disproportionate and usually unnecessary response to a single reported vulnerability.

  2. 88. A CySA+ analyst is writing an executive summary of a recent security incident for senior leadership who are not technical. Which approach is MOST appropriate for this audience?

    • A. Include full raw packet captures and unfiltered log dumps with no summarization
    • B. Use only technical jargon and CVE identifiers with no context
    • C. Omit any mention of business impact since leadership only cares about the technical root cause and the specific CVE identifiers involved
    • D. Focus on business impact, risk, and remediation status in plain language, with technical detail available in an appendix if needed
    Show answer & explanation

    Answer: D
    Effective security communication tailors depth and language to the audience; for executives, framing findings in terms of business impact, risk, and remediation status in plain language ensures the message drives informed decisions, with technical detail available separately for those who need it. Dumping raw technical artifacts or jargon-heavy content without context overwhelms a non-technical audience and obscures the message, while omitting business impact defeats the entire purpose of an executive-facing report.

  3. 89. Which metric BEST measures how quickly a security operations team detects a threat after it first enters the environment?

    • A. Mean Time to Detect (MTTD)
    • B. Return on Investment (ROI) of the SOC budget
    • C. Number of open job requisitions on the security team
    • D. Mean Time to Repair (MTTR) for hardware failures
    Show answer & explanation

    Answer: A
    Mean Time to Detect (MTTD) specifically measures the average time elapsed between a threat's initial presence in the environment and its discovery by the security team, making it the direct metric for detection speed. MTTR for hardware failures concerns equipment repair, not threat detection; SOC budget ROI measures financial efficiency rather than detection speed; and open job requisitions is an HR staffing metric unrelated to detection performance.

  4. 90. When communicating risk to a business stakeholder who must decide whether to accept, mitigate, transfer, or avoid a given risk, which framing is MOST useful?

    • A. Framing risk in terms of likelihood and potential business impact, alongside available response options and their costs
    • B. Presenting only worst-case scenarios without discussing probability
    • C. Describing risk purely in terms of technical CVE numbers and raw CVSS base scores with no likelihood, impact, or cost discussion attached
    • D. Telling the stakeholder that the decision is not their responsibility
    Show answer & explanation

    Answer: A
    Effective risk communication for decision-makers translates technical findings into business terms — likelihood, potential impact, and the trade-offs of each response option (accept, mitigate, transfer, avoid) — so they can make an informed, risk-based decision. Reciting bare CVE identifiers provides no decision-relevant context, deflecting the decision away from the stakeholder who owns it is inappropriate, and presenting only worst-case outcomes without likelihood distorts the actual risk picture and undermines sound decision-making.

  5. 91. An incident involves personal data of customers in several countries. What obligation arises alongside the technical response?

    • A. Deferring any legal assessment until the technical investigation is complete, since most regulators are understood to extend filing deadlines informally
    • B. Notifying all customers immediately regardless of the facts established
    • C. Assuming a single notification satisfies all jurisdictions
    • D. Assessing notification requirements under each applicable regime, since deadlines and thresholds differ and legal counsel determines what must be reported and when
    Show answer & explanation

    Answer: D
    Notification clocks in several regimes start from awareness rather than from investigation completion, so waiting for technical certainty can breach a deadline. Involving legal counsel early also preserves privilege over investigative work product, which is a consideration that cannot be applied retrospectively; assuming regulators will informally extend a filing deadline is not a documented right in most notification regimes and leaves the organization exposed to the exact penalty the assessment is meant to avoid.

  6. 92. An analyst prepares an incident report for executive leadership. What should it emphasize?

    • A. A packet-level analysis of the attacker's traffic
    • B. Business impact, what was affected, what is being done, decisions required and the timeline, with technical detail available but not leading
    • C. The full text of every log entry collected
    • D. The analyst's personal assessment of who is at fault, drawn from informal HR interviews conducted during the response effort
    Show answer & explanation

    Answer: B
    Executives allocate resources and make disclosure and escalation decisions, so they need impact, status and the decisions being asked of them rather than a technical narrative. Attribution of blame in a written report is both unhelpful and legally risky, since the document may later be produced in litigation, and that risk is not reduced by sourcing the blame from informal HR interviews rather than the analyst's own notes; either way, fault-finding does not belong in an executive incident report.

  7. 93. A vulnerability management programme reports remediation metrics. Which metric best reflects risk reduction?

    • A. The total number of findings closed per month, a figure most vulnerability management dashboards already surface as the headline chart
    • B. The number of scans executed per month
    • C. Time to remediate weighted by risk, since closing many low-risk findings quickly can accompany critical ones remaining open for months
    • D. The size of the vulnerability database
    Show answer & explanation

    Answer: C
    Raw closure counts reward addressing the easiest findings, which is why a programme can show excellent numbers while its actual exposure is unchanged. Measuring remediation time for critical and actively exploited findings separately is what makes the metric reflect risk rather than activity; a headline chart of total findings closed is exactly the volume-based figure that rewards clearing many low-risk items while a critical one sits open for months, the opposite of what a risk-reduction metric should show.

  8. 94. A security team must communicate a required patch to a business unit that resists the disruption. What approach is most effective?

    • A. Escalating immediately to executive leadership without discussion, citing the CVSS score alone as sufficient justification for overriding the business unit
    • B. Applying the patch without notification to avoid the argument
    • C. Withdrawing the request to preserve the relationship
    • D. Presenting the specific risk to that unit's operations and offering options such as a maintenance window or compensating controls, rather than asserting policy alone
    Show answer & explanation

    Answer: D
    Framing the risk in terms of the business unit's own exposure converts a compliance demand into a shared decision, and offering options acknowledges the operational cost is real. Patching without notification destroys the working relationship and can cause an outage nobody was prepared for, which sets the programme back further than the delay would have; escalating straight to executive leadership on a bare CVSS score skips the discussion that could have resolved the disagreement and burns organizational goodwill before other options are even offered.

  9. 95. An analyst must recommend a detection improvement after an incident. What makes the recommendation actionable?

    • A. Recommending that monitoring be improved generally
    • B. Recommending the purchase of additional tooling without any specifics on which data source, field, or detection threshold it should monitor
    • C. Recommending that users be more careful
    • D. Specifying the data source, the observable behaviour and the logic, so the detection can be implemented and tested rather than aspired to
    Show answer & explanation

    Answer: D
    A detection recommendation must state what to look at, what pattern indicates the behaviour and how the rule expresses it, or it cannot be built. Vague recommendations survive post-incident reviews unchallenged and are never implemented, which is why the specificity matters more than the sentiment.

  10. 96. Security tooling generates a metric showing mean time to detect has increased. What should be investigated?

    • A. Whether detection coverage has degraded, whether alert volume is delaying triage, or whether the incidents detected simply differed in character from prior periods
    • B. Only whether more analysts should be hired
    • C. Only the vendor's product roadmap
    • D. Nothing, since the metric fluctuates naturally and most dashboards already smooth it out with a trailing twelve-month moving average calculation
    Show answer & explanation

    Answer: A
    A single aggregate metric can move for reasons ranging from genuine degradation to a change in the incident mix, so the investigation must separate them before acting. Small sample sizes make security metrics volatile, which is why trend and distribution matter more than any single period's figure; assuming a moving-average smoothing calculation already accounts for the increase treats the raw data as pre-explained rather than as the thing that still needs investigating.

  11. 97. A security team tracks both mean time to detect (MTTD) and mean time to respond (MTTR) across incidents each quarter. An executive asks which metric best reflects how quickly the team notices a threat once it enters the environment, as opposed to how quickly it is resolved. Which metric answers that question?

    • A. Mean time to detect (MTTD)
    • B. Mean time to respond (MTTR)
    • C. Number of open vulnerabilities at quarter end
    • D. Total number of incidents reported
    Show answer & explanation

    Answer: A
    Mean time to detect specifically measures the interval between a threat first entering the environment and the team becoming aware of it, which is exactly what the executive is asking about, while mean time to respond instead measures the time from detection to resolution and therefore answers a different question about remediation speed rather than detection speed.

  12. 98. An analyst is preparing two different reports on the same vulnerability finding: one for the development team that will fix the code and one for a business unit director who will decide on resourcing. Which approach BEST fits this dual-audience need?

    • A. Send the identical highly technical report to both audiences to save time, trusting each reader to extract the parts relevant to their own role
    • B. Tailor each report's content and framing to its audience: technical remediation detail for developers, and business risk and resourcing impact for the director
    • C. Send only the CVSS score to both audiences without further explanation
    • D. Omit technical details from the developer report to keep it brief
    Show answer & explanation

    Answer: B
    Effective security communication tailors content to its audience: developers need specific technical detail such as affected code paths and remediation steps to actually fix the issue, while a business director needs a risk- and resourcing-focused framing to make a decision. Sending the identical, highly technical report to both audiences and trusting each reader to extract the relevant parts shifts the tailoring work onto the reader instead of the writer, which is exactly the failure a dual-audience approach is meant to avoid, so a single undifferentiated report or a bare score fails to serve either audience well.

  13. 99. A CySA+ analyst must present a risk to a business stakeholder who will decide whether to accept, mitigate, transfer, or avoid it. Which framing of the finding is MOST useful for supporting that decision?

    • A. The full technical exploit code demonstrating the vulnerability
    • B. The exact CVSS vector string and its component metric values
    • C. The likelihood and potential business impact of the risk, expressed in terms the stakeholder can weigh against cost and operational disruption
    • D. A list of every CVE identifier related to the affected software over the past decade, sorted by publication date rather than by current exposure
    Show answer & explanation

    Answer: C
    A business stakeholder making a risk treatment decision needs the finding framed in terms of likelihood and potential business impact weighed against cost and disruption, since that is the information relevant to choosing among accept, mitigate, transfer, or avoid; raw CVSS vector strings, exploit code, or historical CVE lists are technical artifacts that do not translate directly into a business risk decision.

  14. 100. A quarterly security report shows the number of critical vulnerabilities remediated has increased, but the average age of open critical findings has also increased. What does this combination MOST likely indicate to a reviewing stakeholder?

    • A. The scanning tool is malfunctioning and should be replaced
    • B. No further analysis is needed since remediation volume increased
    • C. The vulnerability management program has fully eliminated its backlog, since the remediation count itself rose during this same reporting period
    • D. New critical findings are being discovered or introduced faster than the team can remediate them, growing the backlog despite higher output
    Show answer & explanation

    Answer: D
    An increasing remediation count alongside a rising average age of open critical findings signals that new critical vulnerabilities are entering the backlog faster than the team can close them out, so despite doing more remediation work in absolute terms, the overall backlog is aging and growing rather than shrinking, which is a meaningful trend for a stakeholder to understand rather than a reason to stop analysis.

2026 statistics

Key facts: CompTIA CySA+ exam

Questions
85
Time limit
2h 45m
Passing score
750 (on a scale of 100-900)
Governing body
CompTIA

This free CompTIA CySA+ practice test has 150 original questions written to CompTIA'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 four outline areas: Security Operations, Vulnerability Management, Incident Response and Management and Reporting and Communication.

How the CompTIA CySA+ practice bank covers the outline

150 questions across 4 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.

150 questions across four outline areas. The largest, Security Operations, holds 51 questions (34%); the page's sections follow the same split.
Exam format and study resources

Get a free CompTIA CySA+ 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.

Last verified against the official exam content outline:

Frequently asked questions

How many questions are on the CySA+ (CS0-004) exam, and how long do I have?

CySA+ V4 (CS0-004), the current version since June 23, 2026, contains a maximum of 85 questions, and you're given 165 minutes to complete it — the same limits as the retiring V3 (CS0-003), whose English exam is available until December 22, 2026. That works out to just under two minutes per question if you hit the maximum, so pace yourself and flag anything you're unsure of to revisit at the end. The questions are a mix of standard multiple-choice items and performance-based questions (PBQs) — the PBQs are hands-on simulations that typically appear first and can eat up time, so budget accordingly rather than getting stuck early.

What score do I need to pass CySA+?

You need a score of 750 on a scale of 100–900 to pass. Note that this is a scaled score, not a raw percentage — you don't need to answer 750 out of some number of questions, and the raw number of correct answers required isn't published, so treat any "you need X% correct" claim you see online with skepticism. The scale bottoms out at 100 (not 0), so 750 represents strong-but-not-perfect performance. Focus on mastering the four exam domains rather than chasing an exact percentage target.

What topics does the CySA+ exam cover, and how should I weight my study time?

CySA+ V4 (CS0-004) is broken into four domains: Security Operations (34%), Vulnerability Management (26%), Incident Response and Management (24%), and Reporting and Communication (16%). Security Operations and Vulnerability Management together make up 60% of the exam, so that's where the bulk of your study time should go — but Incident Response and Management grew from 20% on V3 to 24% on V4, so it deserves more time than older study plans give it. The certification is designed to validate your ability to detect, analyze, and respond to cybersecurity threats, and it targets professionals working in a Security Analyst role — so expect scenario-driven questions grounded in real analyst workflows rather than pure memorization.

Where do I take the exam, and how long does the certification stay valid?

Pearson VUE is the official test delivery provider for CompTIA exams, including CySA+, and you can take it either at a physical Pearson VUE test center or through online proctored delivery (OnVUE) from home. Once you pass, the certification is valid for three years from your certification date. You don't have to retake the exam to stay certified — you can renew by earning Continuing Education Units (CEUs), so plan to log qualifying activities throughout the three-year window rather than scrambling at the end.