After youâve identified and evaluated risks, the next logical step is deciding what to do about them. Organisations have four classic treatment options: avoid, mitigate, transfer, and accept. Choosing the wrong one can be as damaging as ignoring the risk entirelyâthink of a hospital that âacceptsâ ransomware risk without backups.
Avoidance means abandoning the activity that generates the risk. For example, if processing credit card data inâhouse creates PCIâDSS compliance headaches, you might outsource payments entirely. Itâs the only strategy that reduces risk to zero, but it often comes at a business costâyou lose the associated revenue or capability.
Avoidance isnât always extreme. Sometimes itâs as simple as refusing to use a vulnerable software libraryâchoosing a safer alternative eliminates that particular attack vector.
Mitigation (or reduction) is the most common strategy. You implement controlsâlike firewalls, MFA, or encryptionâto lower the probability of a threat exploiting a vulnerability, or to limit the damage if it does. Mitigation never removes risk entirely, but it brings it within the organisationâs risk appetite.
# Example: Mitigating brute-force risk with fail2ban
sudo apt install fail2ban -y
sudo systemctl enable fail2ban
sudo tee -a /etc/fail2ban/jail.local << EOF
[sshd]
enabled = true
maxretry = 3
bantime = 3600
EOFThe fail2ban rule above reduces the likelihood of a successful SSH bruteâforce from âalmost certainâ to âvery lowââa classic mitigation. However, it doesnât eliminate the risk of zeroâday vulnerabilities in SSH itself.
Risk transfer shifts the financial impact to a third party, usually via cyber insurance or contractual liability clauses. It doesnât reduce the probability of an incident, but it caps your monetary loss. Be careful: insurers now demand basic security hygieneâwithout it, claims can be denied.
đĄ Always pair cyber insurance with a strong incident response plan. The policy covers the cheque, but your team must stop the bleeding.
When the cost of treatment outweighs the assetâs value or the risk falls within appetite, you accept it. Acceptance must be documented and reviewed regularly. A typical example: a small blog accepting the risk of being defaced because the cost of a WAF exceeds the siteâs value.
| Strategy | Risk Level After | Typical Example | Requirement |
|---|---|---|---|
| Avoid | Eliminated | Stop storing SSNs | Business decision |
| Mitigate | Reduced | Deploy WAF | Technical controls |
| Transfer | Shared | Cyber insurance | Contract & premium |
| Accept | Unchanged | Lowâimpact defacement | Documented approval |
â ď¸ âAcceptâ is not âignoreâ. Uninformed acceptance is negligence; informed acceptance is risk management.
Verify exercises to earn â 150 XP and unlock next lab level.