Employees in the research and development business unit receive extensive training to ensure they understand how to best protect company data. Which of the following is the type of data these employees are most likely to use in day-to-day work activities?
A. Encrypted
B. Intellectual property
C. Critical
D. Data in transit
Explanation:
The core function of a Research and Development (R&D) department is to create new products, designs, formulas, processes, and proprietary technologies. The primary output of their work is Intellectual Property (IP).
Intellectual Property refers to creations of the mind, such as inventions (patents), literary and artistic works (copyrights), designs, and symbols, names, and images used in commerce (trademarks). For a company, this is often its most valuable and sensitive asset.
The question states that these employees receive "extensive training" on protecting data. This highlights the extreme sensitivity of the data they handle. The loss or theft of intellectual property can cripple a company's competitive advantage, making it a paramount security concern. Therefore, it is the data type they are most likely to use and are specifically trained to protect.
Why the other options are incorrect:
A. Encrypted:
Encryption is a state of data (a security control), not a type of data. While the intellectual property handled by R&D should absolutely be encrypted (both at rest and in transit), this is not a classification of the data itself. All types of sensitive data, including intellectual property, critical data, and personal data, should be encrypted.
C. Critical:
Critical data is a broad classification for data that is essential for the continued operation of the business. While R&D data may also be considered critical, this term is too general. For example, financial transaction data or active directory data is also "critical," but it is not the primary focus of an R&D department. "Intellectual property" is a more precise and specific description of the data generated by R&D.
D. Data in transit:
This describes data that is moving across a network, not a type of data. Again, intellectual property (and other data types) will often be in transit, but this is a state of transfer, not a classification of the data's content or purpose. The R&D unit is focused on the content (IP), not solely on its transmission.
Exam Objective Reference:
This question relates to Domain 5.0: Governance, Risk, and Compliance, specifically understanding data classifications such as Intellectual Property (IP). It also touches on security awareness training tailored to specific roles and the data they handle.
A cybersecurity incident response team at a large company receives notification that malware is present on several corporate desktops No known Indicators of compromise have been found on the network. Which of the following should the team do first to secure the environment?
A. Contain the Impacted hosts
B. Add the malware to the application blocklist.
C. Segment the core database server.
D. Implement firewall rules to block outbound beaconing
Explanation:
The correct answer is A. Contain the impacted hosts.
Following the NIST Incident Response Lifecycle (Preparation, Detection & Analysis, Containment, Eradication, Recovery, Post-Incident Activity), the immediate priority after confirming an incident is to prevent further damage or spread. This is the goal of the Containment phase.
Containment is the first strategic action. The team has identified specific compromised assets ("several corporate desktops"). The most direct and effective way to secure the environment is to immediately isolate these known-threats.
This can be done by:
Disconnecting them from the n
etwork (logically or physically).
Isolating them in a VLAN.
Using endpoint detection and response (EDR) tools to quarantine the devices.
This action directly stops the malware from communicating with a command-and-control (C2) server, spreading to other systems, or exfiltrating data. It contains the known problem before addressing potential downstream effects.
Why the other options are incorrect:
B. Add the malware to the application blocklist.
This is an important eradication and preparation step, but it is not the first thing to do. The malware is already active on the endpoints. A blocklist prevents future execution but does nothing to stop the currently running malicious processes on the infected machines. Containment must come first.
C. Segment the core database server.
This is a valuable long-term preventative control (part of the Preparation and Recovery phases), but it is not the most direct incident response action. It is based on an assumption that the database is the next target, but there is no evidence yet that the malware has spread or what its objective is. The immediate priority is to contain the known compromised systems, not to reconfigure the network around potential targets.
D. Implement firewall rules to block outbound beaconing.
While this seems logical, it is a less precise and potentially disruptive action than direct containment.
It may not be effective:
The malware could be using encrypted channels (e.g., HTTPS, DNS tunneling) that are difficult to distinguish from legitimate traffic with simple firewall rules.
It could cause collateral damage:
Blocking outbound traffic could accidentally disrupt legitimate business operations.
It's a secondary action:
The most precise and guaranteed method to stop beaconing from the known infected hosts is to contain those hosts themselves. Once they are contained, the team can analyze the malware to determine its call-home signatures and then implement more precise network-level blocks.
Reference:
This aligns directly with the Containment, Eradication, and Recovery phase of the incident response lifecycle as defined in NIST Special Publication 800-61, Revision 2. The guide emphasizes that the immediate goal of containment is "stopping the incident before it can cause further damage." The strategy is to choose containment measures that "provide the most time for response while minimizing damage." Isolating the known compromised hosts is the most direct application of this principle.
During a recent breach, employee credentials were compromised when a service desk employee issued an MFA bypass code to an attacker who called and posed as an employee. Which of the following should be used to prevent this type of incident in the future?
A. Hardware token MFA
B. Biometrics
C. Identity proofing
D. Least privilege
Explanation: To prevent the issuance of an MFA bypass code to an attacker posing as an employee, implementing identity proofing would be most effective. Identity proofing involves verifying the identity of individuals before granting access or providing sensitive information. Identity proofing: Ensures that the person requesting the MFA bypass is who they claim to be, thereby preventing social engineering attacks where attackers pose as legitimate employees.
Which of the following topics would most likely be included within an organization's SDLC?
A. Service-level agreements
B. Information security policy
C. Penetration testing methodology
D. Branch protection requirements
Explanation: Within an organization's Software Development Life Cycle (SDLC), an Information Security Policy is a vital component. It outlines the rules and procedures for ensuring that the organization’s IT assets and data are protected throughout the development process. Ensuring secure coding practices, access controls, and regular security testing is fundamental in preventing vulnerabilities in applications. Other options like service-level agreements and branch protection requirements are less likely to be integral to SDLC processes. Penetration testing methodology, while useful, is generally considered outside the scope of the SDLC.
A company wants to reduce the time and expense associated with code deployment. Which of the following technologies should the company utilize?
A. Serverless architecture
B. Thin clients
C. Private cloud
D. Virtual machines
Explanation:
Serverless architecture (e.g., AWS Lambda, Azure Functions) allows developers to deploy code without managing underlying servers or infrastructure. The cloud provider automatically handles scaling, patching, and maintenance. This significantly reduces the time and expense associated with code deployment because:
Developers focus solely on writing code, not configuring servers.
Costs are based on actual usage (execution time/resources), not idle server time.
Deployment is streamlined through integrated CI/CD pipelines, accelerating release cycles.
Why the others are incorrect:
B. Thin clients:
These are lightweight devices that rely on a central server for processing. They reduce endpoint costs but do not directly impact code deployment processes or expenses.
C. Private cloud:
This involves dedicated cloud infrastructure managed by the organization. While it offers control, it still requires significant time and expense for maintenance, scaling, and deployment compared to serverless.
D. Virtual machines (VMs):
VMs require managing entire guest OS instances, including updates, scaling, and provisioning. This adds overhead and cost compared to serverless, where the provider abstracts infrastructure management.
Reference:
This aligns with SY0-701 Objective 3.2 ("Given a scenario, implement host or application security solutions") and cloud cost optimization principles. Serverless computing is highlighted in modern DevOps practices for its agility and cost-efficiency, as it eliminates operational overhead and aligns with "pay-as-you-go" models.
An organization wants to ensure the integrity of compiled binaries in the production environment. Which of the following security measures would best support this objective?
A. Input validation
B. Code signing
C. SQL injection
D. Static analysis
Explanation: To ensure the integrity of compiled binaries in the production environment, the best security measure is code signing. Code signing uses digital signatures to verify the authenticity and integrity of the software, ensuring that the code has not been tampered with or altered after it was signed. Code signing: Involves signing code with a digital signature to verify its authenticity and integrity, ensuring the compiled binaries have not been altered. Input validation: Ensures that only properly formatted data enters an application but does not verify the integrity of compiled binaries. SQL injection: A type of attack, not a security measure. Static analysis: Analyzes code for vulnerabilities and errors but does not ensure the integrity of compiled binaries in production. Reference: CompTIA Security+ SY0-701 Exam Objectives, Domain 1.4 - Explain the importance of using appropriate cryptographic solutions (Code signing).
Which of the following security concepts is accomplished with the installation of a RADIUS server?
A. CIA
B. AAA
C. ACL
D. PEM
Explanation:
The installation of a RADIUS (Remote Authentication Dial-In User Service) server accomplishes AAA, which stands for Authentication, Authorization, and Accounting.
Authentication:
Verifies the identity of users or devices (e.g., through credentials).
Authorization:
Determines what resources or permissions the authenticated user has.
Accounting:
Tracks user activities and resource usage for auditing and billing.
RADIUS is a centralized protocol specifically designed to provide these three functions, often used for network access control (e.g., VPNs, Wi-Fi authentication).
Note:
The question likely has a typo ("AA" instead of "AAA"), but the intended answer is AAA, as RADIUS is a classic AAA protocol.
Analysis of Incorrect Options:
A. CIA (Confidentiality, Integrity, Availability):
This is the core triad of security goals. RADIUS supports these indirectly (e.g., by controlling access) but does not directly provide encryption (confidentiality) or data protection (integrity/availability).
C. ACL (Access Control List):
ACLs are rules that permit or deny traffic on network devices. RADIUS can dynamically assign ACLs based on user roles, but it is not synonymous with ACLs.
D. PEM (Privacy Enhanced Mail):
PEM is an outdated email encryption standard. It is unrelated to RADIUS.
Reference:
This aligns with Domain 3.0: Security Architecture, specifically identity and access management. RADIUS is defined in RFC 2865 and is widely used for AAA services in networks, as highlighted in CompTIA objectives and NIST guidelines.
The Chief Information Security Officer (CISO) at a large company would like to gain an understanding of how the company's security policies compare to the requirements imposed by external regulators. Which of the following should the CISO use?
A. Penetration test
B. Internal audit
C. Attestation
D. External examination
Explanation:
An external examination (or external audit) is conducted by an independent, third-party auditor to assess an organization's compliance with regulatory requirements, industry standards, or legal obligations. This process provides an objective evaluation of how the company's security policies and practices measure up against external benchmarks (e.g., GDPR, HIPAA, PCI DSS). The CISO can use the findings to identify gaps, ensure alignment, and demonstrate due diligence to regulators.
Why the others are incorrect:
A. Penetration test:
This is a simulated attack to identify technical vulnerabilities in systems. It focuses on technical security flaws, not policy comparisons to regulatory requirements.
B. Internal audit:
This is performed by the organization's own staff to evaluate controls and compliance. While useful, it lacks the independence and authority of an external examination for validating adherence to external regulations.
C. Attestation:
This is a formal statement (often from the vendor or internal team) asserting compliance. It is not an objective examination and may not provide the detailed comparison the CISO needs.
Reference:
This aligns with SY0-701 Objective 5.3 ("Explain processes for third-party risk assessment and management"). External audits/examinations are critical for verifying regulatory compliance, as emphasized in frameworks like ISO 27001 (which requires external certification) and regulatory guidelines (e.g., PCI DSS assessments). They provide unbiased insights into policy effectiveness versus external demands.
Which of the following security concepts is being followed when implementing a product that offers protection against DDoS attacks?
A. Availability
B. Non-repudiation
C. Integrity
D. Confidentiality
Explanation:
Availability is the security principle that ensures systems and data are accessible and operational when needed by authorized users. A Distributed Denial-of-Service (DDoS) attack is specifically designed to overwhelm a system's resources (like bandwidth, CPU, or memory) to make it unavailable to its intended users. Therefore, implementing a product to protect against DDoS attacks is a direct measure to defend and uphold the availability of a service or resource.
Why the other options are incorrect:
B. Non-repudiation:
This concept prevents an individual from denying having taken a specific action (e.g., sending a message or approving a transaction). It is typically achieved through digital signatures and auditing. DDoS protection does not relate to proving someone's actions.
C. Integrity:
This principle ensures that data is accurate, trustworthy, and has not been altered in an unauthorized way. While some attacks might combine DDoS with other threats, the core goal of a DDoS attack is to make a service unavailable, not to corrupt its data. Therefore, the primary concept being protected is availability, not integrity.
D. Confidentiality:
This principle ensures that information is not disclosed to unauthorized individuals, devices, or processes. DDoS attacks do not typically aim to steal or expose data; their goal is to disrupt service. Protection against DDoS does not directly safeguard confidentiality.
Reference:
This question tests the understanding of the CIA triad (Confidentiality, Integrity, Availability) in the context of common threats.
This falls under Domain 2.1: Explain the importance of security concepts in an enterprise environment of the CompTIA Security+ SY0-701 exam objectives.
DDoS attacks are a quintessential threat to availability, and mitigating them is a core function of maintaining business continuity, as outlined in various security frameworks.
Which of the following is the final step of the modem response process?
A. Lessons learned
B. Eradication
C. Containment
D. Recovery
Explanation:
The modern incident response process is typically cyclical, following a framework like the NIST SP 800-61 guide, which outlines these key phases:
Preparation
Detection & Analysis
Containment
Eradication
Recovery
Post-Incident Activity (Lessons Learned)
The Lessons Learned phase is the final step. In this phase, the team:
Reviews what happened during the incident.
Identifies what was done well and what could be improved.
Updates the Incident Response Plan (IRP), policies, and procedures based on these findings.
Implements new security controls to prevent a recurrence.
This final step is crucial for closing the loop and improving the organization's security posture for future incidents.
Why not B?
Eradication: This is the step where the root cause of the incident (e.g., malware, threat actor access) is removed from the environment. It occurs before recovery.
Why not C?
Containment: This is an early reactive step focused on limiting the damage of an ongoing incident. It occurs before eradication and recovery.
Why not D?
Recovery: This step involves restoring systems and operations to normal. While it occurs late in the process, it is followed by the final, formal post-incident analysis (Lessons Learned).
Reference:
Domain 4.4: "Given an incident, apply mitigation techniques or controls to secure an environment." The SY0-701 objectives require knowledge of the incident response lifecycle, with the final phase being a post-incident lessons learned meeting and report to improve future response efforts.
A systems administrator is creating a script that would save time and prevent human error when performing account creation for a large number of end users. Which of the following would be a good use case for this task?
A. Off-the-shelf software
B. Orchestration
C. Baseline
D. Policy enforcement
Explanation:
Orchestration refers to the automated coordination and management of multiple tasks or systems to streamline complex processes. In this scenario, creating a script to automate account creation for a large number of end users is a perfect use case for orchestration. The script would:
Automate repetitive steps (e.g., user input, assigning permissions, adding to groups).
Ensure consistency and accuracy, reducing human error.
Save significant time compared to manual account creation.
Orchestration tools (e.g., Ansible, Puppet, or custom scripts) are commonly used for such administrative tasks to improve efficiency and reliability.
Why not the others?
A. Off-the-shelf software:
Pre-built software might handle account creation (e.g., identity management tools), but it may not be customizable for specific needs. Orchestration via scripting allows tailored automation.
C. Baseline:
A baseline is a standard configuration or state for systems, not a tool for automating tasks.
D. Policy enforcement:
This ensures compliance with rules (e.g., password policies), but it does not automate the account creation process itself.
Reference:
Domain 3.2: "Given a scenario, implement security hardening practices." Automation and orchestration are key for efficiently managing large-scale operations like user provisioning while maintaining security consistency. The SY0-701 objectives highlight orchestration as a method to reduce errors and enforce policies.
An organization recently started hosting a new service that customers access through a web portal. A security engineer needs to add to the existing security devices a new solution to protect this new service. Which of the following is the engineer most likely to deploy?
A. Layer 4 firewall
B. NGFW
C. WAF
D. UTM
Explanation:
A WAF (Web Application Firewall) is specifically designed to protect web applications and services by monitoring, filtering, and blocking HTTP/HTTPS traffic between a web application and the Internet. It is the most appropriate solution for protecting a new web portal that customers access, as it defends against web-based attacks such as SQL injection, cross-site scripting (XSS), and other application-layer vulnerabilities that traditional firewalls might miss.
Why not A?
Layer 4 firewall: A Layer 4 firewall (traditional firewall) operates at the transport layer (TCP/UDP) and filters traffic based on IP addresses, ports, and protocols. It lacks the deep packet inspection capabilities needed to understand web application traffic and protect against application-layer attacks.
Why not B?
NGFW (Next-Generation Firewall): An NGFW includes additional features beyond traditional firewalls, such as application awareness, intrusion prevention, and deep packet inspection. While it can provide some web application protection, a dedicated WAF is more specialized and effective for securing web portals against sophisticated application-level threats.
Why not D?
UTM (Unified Threat Management): A UTM device combines multiple security features (firewall, IPS, antivirus, etc.) into a single platform. It may include WAF functionality, but it is often less specialized than a standalone WAF. For critical web services, a dedicated WAF is preferred for robust protection.
Reference:
Domain 3.2: "Given a scenario, implement secure network architecture concepts." The SY0-701 objectives emphasize the use of specialized security devices like WAFs to protect web applications. This aligns with best practices for securing customer-facing web portals against common web-based attacks.
| Page 12 out of 76 Pages |
| 1234567891011121314151617181920212223 |
| SY0-701 Practice Test Home |
Real-World Scenario Mastery: Our SY0-701 practice exam don't just test definitions. They present you with the same complex, scenario-based problems you'll encounter on the actual exam.
Strategic Weakness Identification: Each practice session reveals exactly where you stand. Discover which domains need more attention, before CompTIA Security+ Exam 2026 exam day arrives.
Confidence Through Familiarity: There's no substitute for knowing what to expect. When you've worked through our comprehensive SY0-701 practice exam questions pool covering all topics, the real exam feels like just another practice session.