The Recovery Orange Book

Pre-Incident Preparation

Risk Assessment and Asset Identification

Risk Assessment

With critical assets identified, conduct a risk assessment to find exploitable vulnerabilities. This includes technical flaws (unpatched software, misconfigurations) and process gaps (lack of access controls or incident plans). It is crucial to agree on a common framework, such as NIST 2.0, to document all controls and assess gaps comprehensively. Conduct an internal business risk assessment to understand critical business operations and identify possible threats. The NIST CSF Protect function is relevant, as is alignment with MITRE ATT&CK® initial access and exploitation techniques (e.g., exploiting software flaws or stolen credentials). Consider 3rd party risk assessments when possible, and create a tiger team to flag risks and discuss possible solutions on an ongoing basis.

  • Vulnerability Scanning & Patching: Regularly perform automated scans (Nessus, Qualys, Azure Security Center) on all systems, especially internet-facing ones. Identify outdated software, missing patches, and misconfigurations. Prioritize patching critical and high-severity vulnerabilities, particularly those exploited by ransomware actors (CISA’s Known Exploited Vulnerabilities). Example: Promptly patch VPN and RDP servers, common attacker targets. Regularly update OS and applications.
  • Secure Configuration & Hardening: Lock down default settings on critical systems. Disable unused services and ports (e.g., ensure RDP/SMB are not internet-exposed). Use configuration benchmarks (e.g., CIS hardening guides, Azure/AWS baseline policies) to harden servers, network devices, and cloud instances. For cloud assets, use Infrastructure as Code (IaC) to enforce consistent secure configurations and detect drift. Example: Use AWS Config or Azure Policy to flag public storage buckets or unencrypted VMs.
  • Identity and Access Management (IAM): Weak credentials and excessive privileges are major pre-breach vulnerabilities. Enforce strong authentication (e.g., SSO with Okta and MFA on all accounts, especially administrators). Audit Active Directory and cloud IAM roles for privileged accounts; remove unnecessary accounts and enforce least privilege. 80% of Business Email Compromise victims lacked MFA—highlighting robust IAM (e.g., Okta, Duo) as critical. Consider periodic password audits and changing default device passwords.
  • Threat Modeling: For each critical asset, imagine attacker access or harm. Use the ATT&CK framework to find weak spots in your ecosystem and anticipate tactics. If a critical database is exposed, could an attacker escalate privileges (ATT&CK TA0004) to reach it? Mitigate via network segmentation or additional access controls. This proactive analysis prioritizes fixes for plausible attack paths.
  • Supply Chain and Third-Party Risk: Identify and assess the security of external dependencies (vendors, SaaS platforms). Ensure partners with network or data access follow strict security controls. For MSPs, monitor their remote access tools—threat actors often abuse them for ransomware deployment. Include third-party services in asset inventory and risk assessments.
  • Change control and notification: Make sure there is a clear new hire/release process/ticketing/notification in place where IT and Security are both informed of new employees being on/off boarded. There may be flags found by monitoring and UEBA for new account activity that are to be expected, and yet malicious actors often monitor LinkedIn etc. for organizational changes to attempt new attacks and phishing attempts against new employees.

By identifying and addressing vulnerabilities beforehand, you shrink the attack surface. Regular risk assessments reduce "low-hanging fruit" exploits. They also feed into the Protect function (applying controls) and ensure detection systems are tuned to known weak spots. For instance, if SMBv1 cannot be fully disabled, create an IDS rule to alert on its usage. NIST recommends continuous risk management as an ongoing cycle of improvement.

Table: Risk Assessment & Asset Identification Practices

PracticeDescriptionWhy It Matters
Inventory and Classify AssetsCreate and maintain an up-to-date inventory of all hardware, software, data, and cloud resources. Classify assets by criticality and sensitivity.Ensures visibility into what needs protection; you can’t secure or recover what you don’t know about. Prioritization of assets guides efficient incident response and recovery efforts.
Conduct Regular Risk AssessmentsPeriodically evaluate threats and weaknesses for critical systems (threat modeling, business impact analysis). Update the risk register with identified vulnerabilities and mitigation plans.Proactive risk assessment helps fix issues before attackers exploit them. Reduces the likelihood of breaches by addressing known gaps (e.g., unpatched systems) in advance. Also informs security investment decisions.
Vulnerability Scanning & PatchingRun automated scans for missing patches and misconfigurations on servers, endpoints, network gear. Promptly apply patches, especially on internet-facing systems and known exploited vulnerabilities.Keeps systems resilient against known exploits. Timely patching narrows the window of opportunity for ransomware actors who often leverage unpatched flaws. Prevents common attack vectors and demonstrates good cyber hygiene.
Enforce Strong IAM (Least Privilege & MFA)Implement strict access controls: grant users only the minimal rights needed (principle of least privilege) and require multi-factor authentication for all critical accounts (using solutions like Okta for SSO/MFA). Regularly audit and remove excessive privileges or dormant accounts.Credentials are a prime target for attackers. Least privilege limits the damage if an account is compromised, and MFA dramatically reduces account takeover risk. These measures thwart many initial access attempts (phishing, brute force) and contain potential breaches.

Critical Assets

A critical asset is any resource whose compromise would severely impact your organization's mission, operations, or reputation. These are prime ransomware targets, as their unavailability can force a ransom payment. Identifying and classifying these assets is the first step toward a tailored defense strategy.

  • Inventory All Assets: Create a detailed inventory of all hardware, software, and data (servers, endpoints, cloud services, custom applications, databases). Use a configuration management database (CMDB) (e.g., ServiceNow or JIRA/Atlassian) or other asset management tool for an up-to-date, searchable list. A complete inventory is vital for understanding your environment and eliminating shadow IT, unmanaged devices, and unsupported software that can be ransomware entry points.
  • Rank Assets by Business Criticality: Assign a criticality score (1-5, 5 being mission-critical) based on business impact. An Active Directory (AD) server, for example, is Level 5; a non-production web server might be Level 1. Prioritizing assets focuses limited resources on protecting critical systems and data. In a ransomware event, this ranking guides the incident response team on what to contain and recover first to minimize disruption.
  • Classify Data by Sensitivity: Categorize data by sensitivity and regulatory requirements (e.g., PII under GDPR/CCPA, PHI under HIPAA, financial records). Document storage locations (e.g., AWS S3, Azure SQL, Sharepoint, on-premises). Ransomware often involves data exfiltration, making sensitive data a high-value target. Knowing where sensitive data resides allows stronger controls, rigorous monitoring, and prioritized recovery. This also ensures compliance with breach notification obligations.

Security Controls and Monitoring

Intrusion Detection Systems (IDS)

Intrusion Detection Systems monitor network traffic for signs of malicious activity or policy violations. They can be network-based intrusion detection systems (NIDS) (e.g., Snort, Suricata, Zeek) – or host-based intrusion detection systems (HIDS) running on individual servers. An IDS inspects packets and logs for suspicious patterns (e.g., command-and-control beacons, known malware signatures, unusual port scans) and generates alerts for analysts. Modern IDS often integrate intrusion prevention (IPS) capabilities to automatically block detected threats.

Deploy IDS sensors at strategic points (e.g., network egress points, data center subnets, cloud VPCs) to continuously watch incoming and outgoing traffic. For example, Suricata could be deployed in an AWS VPC to analyze all flows to/from critical cloud servers. Ensure IDS rule sets are updated frequently with the latest threat intelligence (such as emerging ransomware indicators or attacker IP addresses). Tuning is important – focus on rules that detect high-impact events like exploits against your web servers or large data exfiltration spikes to reduce noise.

Actionable Example: If using Snort as a NIDS, load community or custom rules that look for ransomware-specific patterns such as known malicious file hashes, traffic to known attacker domains, or usage of tools like vssadmin.exe "delete shadows" command, which some ransomware use to delete backups. When such a packet or log entry is detected, Snort can trigger an alert with details of source, destination, and the suspected attack type. Integrate these alerts into a dashboard or SIEM for immediate review.

Why IDS matters: Network IDS provides an independent layer of detection that can catch threats missed by endpoint defenses. It’s particularly useful for spotting lateral movement or data exfiltration on the network. For instance, if a ransomware attacker breaches one system and starts scanning the network or transferring data, an IDS can flag this unusual activity. According to Graylog, monitoring networks with IDS lets you “catch criminals before they cause irreparable harm” by detecting suspicious traffic early. IDS is also vital for organizations where not all devices can have EDR (e.g., IoT devices, industrial control systems (ICS), or other legacy systems) where the network packet flow analysis becomes the lens to see those threats.

Security Information and Event Management (SIEM)

A SIEM platform (such as Splunk, Crowdstrike Falcon, IBM QRadar, Microsoft Sentinel, or Elastic Security) aggregates log data from across your environment and uses correlation rules and analytics to detect anomalies or known threat patterns. Logs from firewalls, servers, endpoints, authentication systems (e.g., AD, Duo, Okta logs), cloud infrastructure, and applications are centrally collected and analyzed. The SIEM correlates disparate events to identify potential incidents – for example, multiple failed logins across different accounts followed by a large data download might indicate a breach in progress.

Key best practices for SIEM include defining clear use cases (focus on detecting ransomware behaviors, privilege abuse, etc.), collecting logs from critical sources (e.g., domain controllers, EDR alerts, VPN gateways, email security, etc.), and tuning rules to reduce false positives. It’s also beneficial to integrate threat intelligence feeds into the SIEM – mapping detected indicators (e.g., IP, file hash) against known malicious ones. As an example, set up an alert on your SIEM to automatically flag if an internal host communicates with a blacklisted IP, for example.

Concrete Example: In Splunk, you might enable ransomware detection use-cases by searching for events like: a disabled antivirus service on multiple machines, the creation of mass encryption file extensions in file servers, or Windows events indicating Shadow Copy deletion. Splunk’s Enterprise Security app or use-case libraries often have pre-built correlation searches for these. The SIEM could trigger an alert "Potential Ransomware Activity" if it sees a sequence: user account login from an unusual IP, followed by that account accessing an unusual number of files, and then a process executing vssadmin delete shadows. Analysts can then pivot within the SIEM to gather surrounding events (like the command-line arguments, network connections from that host) to confirm the incident.

For ransomware detection in Splunk, search for events like disabled antivirus on multiple machines, mass encryption file extensions, or Shadow Copy deletion. Splunk Enterprise Security or use-case libraries offer pre-built correlation searches. An alert, "Potential Ransomware Activity," could trigger from a sequence: unusual IP login, abnormal file access, and vssadmin delete shadows. Analysts can then gather surrounding events (command-line arguments, network connections) within the SIEM to confirm the incident.

Why SIEM matters: Security operations centers (SOCs) can use SIEMs to detect pre-ransomware malware or anomalous behavior, enabling a response before encryption occurs. SIEM alerts, often mapped to ATT&CK tactics, help responders understand the attacker's stage, like an alert for "T1078: Valid Accounts" prompting credential resets and misuse investigation. EDR solutions (e.g., CrowdStrike Falcon, Microsoft Defender for Endpoint, Carbon Black, SentinelOne) are agents on endpoints (e.g., servers, PCs, cloud workloads) that monitor for suspicious behaviors and security events, using analytics rather than signatures to detect anomalies like strange process executions, memory injections, and lateral movement.

Endpoint Detection and Response (EDR)

Endpoint Detection and Response solutions (e.g., CrowdStrike Falcon, Microsoft Defender for Endpoint, Carbon Black, SentinelOne) are agents deployed on endpoints (e.g., servers, PCs, cloud workloads) that continuously monitor for suspicious behaviors and security events. Unlike traditional antivirus which relies mainly on known signatures, EDR tools use behavior-based analytics to detect things like strange process executions, memory injections, lateral movement attempts, and more. They record detailed telemetry on processes, file changes, registry modifications, network connections, etc., and can quickly flag anomalies.

A quality EDR will not only alert on potential malicious activity but also enable swift response actions. For example, CrowdStrike Falcon’s platform allows one-click network isolation of a host (“containment”) if it’s compromised. This means if ransomware is detected on one machine, the SOC can remotely disconnect that machine from the network (while still keeping it connected to the security console) to stop the spread. EDRs also often have capabilities to kill processes, remove malicious files, and pull forensic data (like memory dumps or file copies) from endpoints for analysis.

Actionable Example: Deploy CrowdStrike Falcon agents to all corporate endpoints and servers. When the agent detects a known ransomware hash or suspicious encryption behavior (e.g., a process rapidly creating encrypted files, or tools like Mimikatz running to dump credentials), it will generate an alert in the Falcon console. The security analyst receives an alert like “Suspicious Process – Possible Ransomware Activity” with details (process name, device, user). The analyst can then initiate a Real Time Response through the agent: isolate the host from the network, then use a remote shell to investigate or remediate (such as deleting a malicious binary). Concurrently, the EDR might have blocked the offending process automatically depending on policy (many EDRs can prevent certain behaviors like unauthorized disk encryption).

In addition, EDR tools provide rich telemetry for threat hunting. You can search across all endpoints for IoCs (Indicators of Compromise). For instance, if CISA releases an alert about a novel ransomware variant and gives a specific file name or Registry key it uses, you can query your EDR for any instances of that artifact enterprise-wide. This speeds up detection of hidden threats.

Why EDR matters: EDR acts as the last line of defense on endpoints, monitoring for adversaries in real-time. It significantly reduces dwell time by detecting malicious activity within seconds and uses behavioral detection to stop unknown malware. Modern EDRs map detections to ATT&CK TTPs, providing security teams with insights into threat stages and standardized technique identifiers for quicker understanding of adversary behavior.

Table: Security Controls & Monitoring Practices

PracticeDescriptionWhy It Matters
Deploy Network IDS/IPSInstall and tune intrusion detection sensors (e.g., Snort, Suricata, Zeek) at key network points (perimeter, data centers, cloud networks). Monitor for malicious patterns in traffic and set up intrusion prevention for critical threat signatures. Regularly update detection rule sets with latest threats.Early detection of attacks “on the wire” – an IDS can catch scans, exploits, or data exfiltration before they reach or impact endpoints. Provides visibility into threats on unmanaged devices or segments. An IPS can automatically block known attack traffic, adding a proactive defense.
Implement a SIEM for Log ManagementUse a SIEM platform (Splunk, Sentinel, etc.) to aggregate logs from servers, network devices, security tools, and cloud services. Configure correlation rules and anomaly detection to flag suspicious events (multiple login failures, disabled antiviruses, unusual file access patterns). Integrate threat intel feeds and schedule continuous tuning of alerts.Centralized visibility across the environment enables detection of complex attacks that span multiple systems. A SIEM accelerates incident investigation and response by correlating events into a single alert (reducing noise). It can detect stealthy behaviors (like a slow data leak or privilege escalation) that single-point solutions might miss. Also essential for compliance reporting and forensic log retention.
Deploy Endpoint Detection & Response (EDR)Install EDR agents on all endpoints and servers to continuously monitor processes, memory, and files for malicious or abnormal behavior. Leverage EDR capabilities for threat blocking (machine-learning malware protection, exploit prevention) and response actions (isolating a host, killing processes, pulling forensic data). Ensure the EDR is actively monitored (24/7 SOC or MDR service) to respond to alerts.Provides real-time detection and response at the host level, crucial for catching advanced threats like ransomware that bypass traditional AV. EDR can stop fast-moving attacks (e.g., auto-isolate a ransomware-infected machine to contain spread) and gives detailed insight into attacker activity for investigation. Its behavioral analytics can detect novel threats (zero-days) by their actions.
Enforce Identity & Access ControlsStrengthen identity security as part of protection: require MFA for all users, use SSO solutions (Okta, Azure AD) to centralize identity management, and implement just-in-time privileged access (PAM) for admin accounts. Monitor authentication logs for anomalies (impossible travel logins, new device logins) and integrate identity alerts into the SIEM. Regularly review permissions and remove or adjust any excessive privileges.Compromised credentials are a top initial attack vector (over 90% of breaches involve phishing or stolen passwords). By hardening authentication, you cut off a huge portion of attacker tactics (brute force, phishing success). Even if malware executes, strong identity controls can prevent it from accessing other resources. Identity alerts (e.g., multiple account lockouts) can also serve as early warning of intrusion.

Data Backup and Recovery Plan

Hardening of Backups

Backup hardening means securing your backup systems and data against deletion, tampering, or encryption by an attacker. Treat backup infrastructure as critically as production systems (if not more). Key practices include:

  • Isolate Backup Environments: Wherever possible, separate backup systems from the primary network domain. For example, if using a network-attached storage (NAS) for backups, put it on a segmented network VLAN with strict firewall rules. Use dedicated credentials for backup servers that are not used elsewhere (to prevent an attacker who steals a domain admin credential from easily logging into the backup server).
  • Access Control and Encryption: Limit who and what can access backup data. Only backup service accounts and backup administrators should have credentials to modify or delete backups. Enforce MFA for console access to backup software (e.g., the admin interface of a solution like Veeam or Druva). Enable encryption for backups both at rest and in transit – most enterprise backup tools allow encryption of backup files, which protects data confidentiality and also ensures attackers can’t easily use stolen backup files even if they get them.
  • Service Hardening: Ensure the backup software and servers themselves are fully patched and up-to-date. Regularly update backup agent software on clients. Disable any unnecessary services on backup servers. Change default ports if possible and use firewall rules to allow only expected connections (e.g., backup agents communicate to the backup server on specific ports). Monitor the backup system logs for any irregular activities (like login attempts or configuration changes).

A critical aspect of backup hardening is to prevent attackers from altering or deleting backups during an intrusion. Many ransomware strains attempt to delete shadow copies and online backups to thwart recovery. To guard against this, ensure backups are stored in locations or formats that attackers cannot easily access, as detailed in the next sub-topic (Offsite & Immutability).

Offsite Storage & Immutability

Maintaining offline or offsite backups is a best practice that directly counters ransomware. “Offsite” can mean physically offsite (e.g., on tape or removable drives stored off-location) or logically offsite (in a cloud service or a network segment not accessible from the primary environment). Additionally, immutable storage technologies ensure that once a backup is written, it cannot be altered or deleted for a defined retention period – essentially Write-Once-Read-Many (WORM) protection.

  • 3-2-1 Backup Rule:Adopt the 3-2-1 backup strategy: three copies of data (production + two backups), on two different media types, with one copy offsite. This ensures quick restores and a clean reserve in case of primary site compromise. 100% SaaS and Cloud-native architecture stores data across secure, dispersed locations and storage technologies, eliminating physical media management and ensuring rapid recovery.
  • Cloud Backups with Separate Credentials: When using cloud storage (AWS S3, Azure Blob, etc.) for backups, store them in a separate, less accessible account or tenant. For example, back up critical VMs from your production AWS account to an S3 bucket in a second AWS account. This prevents attackers who breach the production account from deleting backups. Employ strong, unique credentials and API keys for backup processes.
  • Immutability and Versioning: Enable object locking or immutable storage (e.g., AWS S3 Object Lock, Azure immutable blobs). Many backup solutions (Druva, Veeam, Rubrik) also integrate immutability, preventing deletion or modification even if an admin account is compromised. CISA recommends immutable, offline, encrypted backups as a critical ransomware defense.
  • Geographic or Vaulted Isolation: For ultimate defense, use a cloud service with a virtual air-gap, such as an AWS Backup Vault with Vault Lock, which ensures immutability. The aim is to prevent attackers from reaching or destroying offsite/immutable backups, even if the entire network is compromised.

While offsite and immutable backups have overhead, their value in ransomware defense is proven. 89% of organizations targeted by ransomware had their backups attacked, making untouchable backups a critical investment. This defense is recommended by frameworks and agencies like CISA and NSA.

Testing Recovery Procedures

Having backups is only half the battle – testing your recovery is essential to ensure those backups actually work and that your team can execute restorations under pressure. A recovery that fails (due to corrupt backups, insufficient documentation, or unpracticed procedures) can be disastrous post-breach. Thus, organizations need to routinely perform drills and verification of their backup restorations.

Key elements of testing include:

  • Regular Restore Tests: Schedule drills (at least quarterly for critical systems) where you simulate a loss and restore from backups. For example, pick a random file server and try to restore a sampling of files to a test location, or spin up a VM from backup in an isolated network and see if it boots and the applications run. Document the time it takes and any issues encountered (missing dependencies, etc.). Regular testing proves that backups are not corrupted and meets the RTO (Recovery Time Objective) expectations. As CISA emphasizes, you should “regularly test the availability and integrity of backups” in a disaster recovery scenario.
  • Golden Image Refresh: Maintain “golden images” – clean, pre-configured snapshots of systems – and update them frequently. Test deploying these images on new hardware or cloud instances to verify they work. Golden images (for example, a Windows Server image with all baseline software ready) can dramatically speed up rebuilding a ransomed system compared to manual reinstallation. Ensure your team knows where these images are stored (and that they are kept offline or in a secure repository) and how to deploy them. Concrete practice: Use infrastructure-as-code templates (Terraform, CloudFormation) to codify server builds, and test these in a lab. This way, if you need to rebuild 50 servers quickly after an incident, you have scripts to automate it.
  • Disaster Recovery Exercises: Conduct full DR exercises that involve restoring multiple systems and making them interact. For example, simulate a ransomware event that takes down a critical database and an application server. Practice restoring the database from backup and spinning up a fresh app server (using golden image or cloud template), then connect them and verify the application works. This validates that dependencies (like network configurations, DNS, etc.) are accounted for in recovery plans.
  • Backup Integrity and Malware Scans: Incorporate security into recovery tests. Before restoring data from a backup during an actual incident, you should ensure the backup itself is not infected. Include in your procedures steps to scan backups with up-to-date antivirus or even load them into a sandbox environment. Testing can involve verifying that a randomly selected backup can be restored and passes a malware scan. For instance, some backup solutions allow mounting a backup snapshot and running AV scans on it (solutions like Rubrik have built-in scanning for on-demand backup validation). This prevents re-introducing malware from backups.

Through regular testing, teams also refine the documentation of recovery procedures – ensuring runbooks are accurate and up to date. Post-exercise, always update your incident response plan and backup procedures with any lessons learned (e.g., “Increase memory on backup server to improve restore speed”, “Document the additional step needed to reconfigure application license after restore”).

In a real ransomware incident, stress will be high – knowing that the team has successfully restored systems in practice instills confidence and muscle memory. It also highlights approximate restoration times, which is crucial for communication to leadership and customers during downtime. Remember, backups that are not tested might not actually work when needed. Many organizations only discover too late that their backups were incomplete or failed silently. Don’t let that be you – treat backup recovery as a regular part of IT operations, not an afterthought.

Table: Data Backup & Recovery Practices

PracticeDescriptionWhy It Matters
Restrict and Harden Backup SystemsSecure backup servers/accounts with strong access controls and network isolation. Encrypt backup data and require separate, MFA-protected credentials for any backup administration. Keep backup software patched and monitor it for unauthorized access.Prevents attackers from tampering with or deleting backups during a breach. By locking down backups (and monitoring access), you ensure your last-resort data copies remain intact and available. This is critical because modern ransomware often targets backup data to sabotage recovery.
Maintain Offsite and Immutable BackupsKeep at least one backup copy offsite or offline (cloud or physical) that attackers cannot reach from the corporate network. Leverage immutable storage (WORM/object lock or tape) so backup data cannot be altered or erased for a set period. Use the 3-2-1 rule (multiple copies, media, one offsite).Guarantees a clean copy of data will survive even a worst-case attack. If ransomware corrupts live data and on-site backups, an offsite immutable backup remains as the fail-safe to restore your business. Immutability specifically thwarts attackers by making deletion/improper encryption of backups impossible. This greatly increases resilience and can save the company from paying ransom.
Regularly Test Backup RestorationsConduct scheduled drills to restore files and systems from backups. Validate backup integrity and document recovery steps and timing. Update “golden images” of systems and verify they can be deployed successfully. Perform end-to-end disaster recovery simulations for critical applications.Ensures your backups actually work and that your team can execute recovery under pressure. Testing uncovers problems in a controlled setting (like a backup that fails to boot) rather than during a crisis. It also improves recovery speed by finding and fixing procedural gaps ahead of time. A well-practiced recovery plan can dramatically reduce downtime after a ransomware attack.
Integrate Recovery with Security ChecksIntegrate security into restoration: scan backup images for malware, and use an isolated environment to test restored systems. Apply anti-malware to backup data and confirm restore points are ransomware-free.This prevents "restoring the infection" by ensuring malware isn't reintroduced from compromised backups, confirming systems are clean post-recovery. It also identifies backups made after an attack, avoiding the restoration of systems with backdoors. This crucial step prevents secondary incidents and is highly recommended in ransomware recovery guides.

Employee Training and Awareness

Technology alone is not enough – humans are often the weakest link, especially when it comes to ransomware (which frequently starts with phishing or social engineering). Building a security-aware culture through employee training and awareness is a vital Protect function activity (NIST CSF), reducing the likelihood of successful attacks, and also contributes to Detect/Respond by empowering staff to notice and report signs of attack early. This section covers two primary topics: phishing awareness training and clear incident reporting procedures. Together, these initiatives ensure that your people are an active line of defense, not a liability. Mapping to ATT&CK revolves around thwarting the Initial Access tactics that exploit human behavior (e.g. phishing, TA0001).

Phishing Awareness

Phishing is one of the most common entry points for ransomware. Thus, a strong phishing awareness program is paramount. This involves regular training on how to recognize phishing emails, drills to test employees, and up-to-date education on the latest attacker tricks (like spear-phishing, malicious attachments, links, or even phishing via SMS or voice).

Key components of a phishing awareness program:

  • Scheduled Training Sessions: Annual organization-wide and role-specific training on phishing and social engineering is crucial. Utilize interactive content like videos, quizzes, and real-world examples. Reinforce the "Think Before You Click" principle: always verify sender addresses, scrutinize for errors or unusual requests, and avoid clicking suspicious links or opening attachments from unexpected emails.
  • Simulated Phishing Campaigns: Regularly test employees with phishing simulations. Implement regular phishing simulations via tools like KnowBe4 or PhishMe. Track employee responses (clicks, reports) for immediate, personalized feedback. Gradually increase simulation difficulty. Consistent simulations significantly reduce malicious link click rates.
  • Diverse Threat Awareness: Given that 76% of businesses reported falling victim to SMS phishing attacks, expand training beyond email to include smishing (SMS phishing) and vishing (voice phishing). Educate employees on unexpected password reset texts or calls from "IT support" as potential scams, especially if mobile devices are used. Include mobile phishing in drills.

Malleable Content and Latest Trends: Regularly update training with new attack tactics, such as deepfake voice scams or QR code phishing. Use industry-relevant, realistic scenarios (e.g., fake invoice emails for finance, patient record emails for healthcare) to teach employees skepticism.

The payoff for phishing awareness is huge: studies indicate over 90% of breaches involve a phishing element, so reducing the chance of a successful phish greatly lowers breach probability. Metrics from training providers show that proper training can make employees 30% less likely to click on a phishing link, and significantly improve reporting rates of real threats. Trained, vigilant employees essentially become an extension of your security team, possibly catching the phish that technology didn’t flag.

Incident Reporting Procedures

Even with training, someone might slip up or an attack might bypass controls. It’s crucial that employees know how to report an incident or suspicious activity immediately and without fear. Rapid reporting can be the difference between a minor contained event and a full-blown ransomware outbreak. Therefore, establish clear incident reporting procedures and promote a culture of prompt notification.

Key aspects of an effective reporting process:

  • Define What and When to Report: Educate staff to report any suspicious activity to security immediately, even if unsure. This includes phishing emails, unusual computer behavior, lost/stolen devices, or accidental data sharing. Emphasize that prompt reporting is crucial.
  • Simple Reporting Channels: Simplify incident reporting: a one-click "Report Phishing" button for emails and multiple channels (email, hotline, chat, intranet form) for other incidents. Make reporting easy to encourage participation. Monitor channels 24/7 or during business hours with after-hours alerts.
  • Lockout Reporting Channels: What happens if a phishing attack or Ransomware hits a system while an employee is traveling? What if they don’t have access to their email or laptop or work phone? Make sure that there is a specific phone and/or email address that works from anywhere on the planet, and that employees are frequently reminded how to call and report a problem to the helpdesk. It’s most useful if that helpdesk number is on their personal phones for “Just In Case” scenarios.
  • Awareness of Response Steps: Employees must immediately disconnect from the network (unplug Ethernet or disable Wi-Fi) and report suspected ransomware infections. They should not power off the device unless instructed, as it may be needed for forensic collection. This guidance helps isolate threats and aids IT/security efforts.
  • IT or Helpdesk to SOC/IR handoff: Make sure your response plan contains a clear escalation path from helpdesk to the security team. Because Ransomware reports can come from employees or even customers, make sure the ticketing systems and/or notification streams are clear and well-documented.
  • No Blame Culture: Foster a blameless reporting culture where employees feel safe admitting security incidents or mistakes, even if they fell for a phish. Leadership should emphasize fixing issues, not punishing individuals, reinforcing a "Train, Don't Blame" philosophy. If it turns out the Ransomware was due to delayed software updates, try to use the opportunity to discover how to speed up patch applications in the future.
  • Internal Communication Plan: Prepare incident response communications and alert methods (e.g., SMS for email outages). For ransomware, have a clear, recognized emergency directive like "All users: disconnect VPN, shut down computers." Update emergency contacts and out-of-band communication methods in employee handbooks.

Measuring and improving the reporting culture can be done by tracking metrics. What percentage of simulated phishing emails are reported by users? (Many organizations aim to raise this number; if only 3% of employees report phishing emails, there’s room for improvement through awareness campaigns and perhaps incentive programs). Celebrate “safe catches” – if an employee reports a real phish that leads to preventing an incident, recognize them (this positively reinforces the behavior for others).

It’s important to integrate the reporting procedure with the helpdesk -> IR team workflow: When a report comes in, have an established triage process. For example, the SOC should have steps for analyzing a reported phishing email or investigating a “my computer is behaving oddly” report. Tools like Splunk or email analysis sandboxes can help quickly vet reported items.

Make sure you have a form standing by to ask the same, specific questions to anyone calling in and reporting an incident. Add questions like, “What system locked you out?” “What do you see on the screen?” “Can you tell me any actions you took prior to this occurring?” “Who knows about this incident thus far?” Ransomware can hit any software from websites and email to browsers. Getting the facts early speeds the response at the back end.

Every employee can be a security sensor. Training them to detect and report threats multiplies your detection capabilities. Quick internal reporting can cut down attacker dwell time dramatically – instead of finding out weeks later from an outside agency, you find out now from your observant workforce.

Crisis Communication Planning

Communications before, during, and following an emergency needs to be bi-directional. Everyone will ask questions and request information, with demands for frequent updates. Setting a standard daily (or even twice a day) communication schedule will help allay many concerns, and act as a reassurance of competency and action.

•    Employees

•    Customers

•    Suppliers

•    Management

•    International/Local Government officials and regulators

Identify Your Audience

Contact information for each stakeholder and audience should be compiled in advance and be accessible during an incident. Existing information such as customer, supplier and employee contact information may be exportable from existing databases. Include as much information for each contact as possible (e.g., organization name, contact name, business telephone number, cell number, fax number and email address). Lists should be updated regularly and secured.

Contact and Information Points/Portals

Determining your media spokespeople is key. News media, podcasters, influencers, etc. could be on scene or calling to obtain details if the incident is serious. There may be numerous requests for information from local, regional or national media. You may be fielding large numbers of requests for information, interviews, and public statements.

Determine in advance who will speak to the media and prepare that spokesperson with clear, technical talking points, so they can speak effectively in terms that can be easily understood. This can include both the technical description as well as a high-level summary (without acronyms if possible) about what happened, your current activities, and your projected outcomes and timeline. Prioritize your responses in terms of economic impact, e.g. Executives, Customers, regulatory agencies, and PR.

Prioritizing requests for information and development of press releases and talking points can assist with the need to communicate quickly and effectively.

Contact and information centers receive requests for information from each audience and disseminate information to each audience.

  • The contact center fields inquiries from customers, suppliers, the news media and others. The contact center should be properly equipped and staffed by personnel to answer requests for information. The staff working within the contact center should be provided with scripts and a “frequently asked questions” (FAQ) document to answer questions consistently and accurately.
  • The information center consists of existing staff and technologies (e.g., website, call center, bulletin boards, etc.) that field requests for information from customers, employees and others during normal business hours. The information center and its technologies can be used to push information out to audiences and post information for online reading.

Messaging Development

Some work on messaging can be done in advance with pre-tailored examples as Ransomware. You can create pre-scripted as templates with blanks to be filled in when information is available, then tailor to the incident at hand. As part of your disaster planning, these pre-scripted messages can be developed, approved by the management team, and stored on a remotely accessible server for quick editing and release when needed. It’s always recommended not to brand your templates and messaging, of course, and save the final pass of branding until the actual release.

There initially may be limited information about the incident or its potential impacts. Having a coordinated review and distribution process allows the business to adapt to changing information. As days and weeks go by, this messaging will transition from reacting to the incident to moving toward recovery. Messaging for each step of this process also can be developed in advance.