- A
A documented change window with testing in a staging environment and a rollback plan.
This is the best control because it reduces operational risk before a production change is made. Testing and rollback planning are standard safeguards when security hardening may affect availability.
- B
A longer password policy for administrators so they can log in after the outage.
Why wrong: Password policy does not prevent a bad configuration from breaking TLS. It may improve account security, but it does not reduce change-related outage risk.
- C
Disabling all logging during the change so the application can restart faster.
Why wrong: Logging should not be turned off to save time. It would make troubleshooting harder and does not prevent the outage caused by the configuration error.
- D
Replacing the web server hardware to ensure the TLS settings are applied correctly.
Why wrong: The problem is a software configuration mistake, not failing hardware. Replacing hardware would waste time and not address the underlying change control issue.
Quick Answer
The correct choice is a documented change window with testing in a staging environment and a rollback plan. This combination directly addresses the scenario because a staging environment mirrors production, allowing you to validate that a hardening script won’t disable critical settings like a legacy TLS version before it hits the live server. The rollback plan then provides a clear, pre-defined procedure to revert the change quickly if something breaks, minimizing downtime and impact. On the Security+ SY0-701 exam, this question tests your understanding of change management principles, specifically the need for controlled deployment and contingency planning. A common trap is to focus only on the technical fix—like re-enabling TLS—rather than the process that prevents the issue. Remember the mnemonic “SCR” for Staging, Change window, Rollback to keep the three essential components straight.
SY0-701 Security Operations Practice Question
This SY0-701 practice question tests your understanding of security operations. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A hardening script is pushed to a production web server and, within minutes, the application stops accepting secure connections. The team discovers the script disabled a required TLS setting that the legacy application still needs. What should have been in place to reduce the impact of this change?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
A documented change window with testing in a staging environment and a rollback plan.
Option A is correct because a documented change window with testing in a staging environment and a rollback plan ensures that changes are validated before production deployment. In this scenario, the hardening script disabled a required TLS setting (e.g., TLS 1.0 or a specific cipher suite) that the legacy application depended on. Testing in staging would have caught the incompatibility, and a rollback plan would allow reverting the change quickly, minimizing downtime.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
A documented change window with testing in a staging environment and a rollback plan.
Why this is correct
This is the best control because it reduces operational risk before a production change is made. Testing and rollback planning are standard safeguards when security hardening may affect availability.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
A longer password policy for administrators so they can log in after the outage.
Why it's wrong here
Password policy does not prevent a bad configuration from breaking TLS. It may improve account security, but it does not reduce change-related outage risk.
- ✗
Disabling all logging during the change so the application can restart faster.
Why it's wrong here
Logging should not be turned off to save time. It would make troubleshooting harder and does not prevent the outage caused by the configuration error.
- ✗
Replacing the web server hardware to ensure the TLS settings are applied correctly.
Why it's wrong here
The problem is a software configuration mistake, not failing hardware. Replacing hardware would waste time and not address the underlying change control issue.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates might think the issue is about authentication (Option B) or hardware (Option D), but the core problem is a configuration change that broke TLS compatibility, which requires proper change management and testing, not hardware or password policies.
Detailed technical explanation
How to think about this question
TLS settings are controlled via configuration files (e.g., Apache's ssl.conf, Nginx's ssl_protocols directive, or Windows Schannel registry keys). A hardening script might disable older protocols like TLS 1.0 or weak ciphers like RC4, but legacy applications often require these for compatibility. A staging environment should mirror production exactly, including the same TLS library versions (e.g., OpenSSL 1.0.2 vs 1.1.1), to detect such issues. Rollback plans often involve version-controlled configuration backups or automated scripts to revert changes within minutes.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A developer is choosing between AES-256 (symmetric) and RSA-2048 (asymmetric) for encrypting a large file that will be sent to a partner. Symmetric encryption is fast but requires key exchange; asymmetric is slower but solves the key distribution problem. A hybrid approach — encrypt the file with AES, encrypt the AES key with RSA — is standard. Questions like this test whether you understand when each approach applies.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Security Operations — study guide chapter
Learn the concepts, then practise the questions
- →
Security Operations practice questions
Targeted practice on this topic area only
- →
All SY0-701 questions
1,152 questions across all exam domains
- →
Security+ SY0-701 study guide
Full concept coverage aligned to exam objectives
- →
SY0-701 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SY0-701 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
General Security Concepts practice questions
Practise SY0-701 questions linked to General Security Concepts.
Threats, Vulnerabilities, and Mitigations practice questions
Practise SY0-701 questions linked to Threats, Vulnerabilities, and Mitigations.
Security Architecture practice questions
Practise SY0-701 questions linked to Security Architecture.
Security Operations practice questions
Practise SY0-701 questions linked to Security Operations.
Security Program Management and Oversight practice questions
Practise SY0-701 questions linked to Security Program Management and Oversight.
Security+ social engineering questions
Practise SY0-701 questions linked to Security+ social engineering questions.
Security+ cryptography practice questions
Practise SY0-701 questions linked to Security+ cryptography.
Security+ IAM questions
Practise SY0-701 questions linked to Security+ IAM questions.
Security+ risk management questions
Practise SY0-701 questions linked to Security+ risk management questions.
Security+ incident response questions
Practise SY0-701 questions linked to Security+ incident response questions.
Security+ malware questions
Practise SY0-701 questions linked to Security+ malware questions.
Security+ vulnerability management questions
Practise SY0-701 questions linked to Security+ vulnerability management questions.
Practice this exam
Start a free SY0-701 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this SY0-701 question test?
Security Operations — This question tests Security Operations — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: A documented change window with testing in a staging environment and a rollback plan. — Option A is correct because a documented change window with testing in a staging environment and a rollback plan ensures that changes are validated before production deployment. In this scenario, the hardening script disabled a required TLS setting (e.g., TLS 1.0 or a specific cipher suite) that the legacy application depended on. Testing in staging would have caught the incompatibility, and a rollback plan would allow reverting the change quickly, minimizing downtime.
What should I do if I get this SY0-701 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
2 more ways this is tested on SY0-701
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A critical patch must be applied to a production server next week. What is the best way to reduce the risk of downtime if the patch causes a problem?
easy- A.Apply the patch during business hours so users can report issues quickly
- ✓ B.Create a rollback plan before installing the patch
- C.Skip testing because critical patches are always safe
- D.Disable logging during the patch to improve performance
Why B: Option B is correct because creating a rollback plan before installing a patch ensures that if the patch causes unexpected issues, the system can be restored to its previous stable state quickly, minimizing downtime. A rollback plan typically includes steps to revert the patch, restore from a backup, or switch to a failover system, which is a fundamental change management practice in security operations.
Variation 2. A critical patch must be applied to a retail point-of-sale server. What is the best way to reduce business disruption?
easy- A.Apply the patch during the busiest business hours to make the change sooner.
- ✓ B.Schedule the patch during an approved maintenance window.
- C.Skip the patch and rely on hope that the issue will not be exploited.
- D.Turn off all backups so the patch process runs faster.
Why B: Scheduling the patch during an approved maintenance window is the best practice to minimize business disruption because it allows the organization to plan for downtime during low-activity periods, coordinate with stakeholders, and ensure rollback procedures are in place. For a retail point-of-sale (POS) server, applying a critical patch outside of business hours prevents transaction interruptions and potential revenue loss, aligning with change management policies that prioritize availability and security.
Keep practising
More SY0-701 practice questions
- An HR analyst must send a salary file to an external auditor. The auditor only needs names, departments, and salary tota…
- An investigator receives a suspect laptop drive that may be used in court. Which approach best supports a forensically s…
- An investigator must collect data from a suspected insider-threat laptop so the evidence could be used in an HR and lega…
- An NDR tool shows a production web server sending small, periodic DNS queries to random-looking subdomains under a domai…
- An investigator needs to make a forensic image of a suspect laptop without changing the original drive contents. Which t…
- An operations team manages Linux servers over SSH. The security team wants to stop direct management access from employe…
Last reviewed: Jun 11, 2026
This SY0-701 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SY0-701 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.