By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Hyper-practical, zero-fluff guide for engineers, analysts, and exam takers
You’re a security analyst at a mid-sized healthcare SaaS company. Your CISO drops a bomb: "We just failed a HIPAA audit because we can’t prove we’ve quantified the risk of a ransomware attack on our patient records database. Fix it by Friday."
Quantitative vs. Qualitative Risk Analysis is how you measure risk in dollars (quantitative) or in severity (qualitative). Ignore this, and you: - Can’t justify security budgets (e.g., "Why spend $50K on encryption when we don’t know the cost of a breach?"). - Fail compliance audits (HIPAA, PCI DSS, ISO 27001 all require risk assessments). - Waste money on controls that don’t match actual risk (e.g., buying a $200K firewall for a low-impact system).
Superpower it gives you: - Speak the language of executives (e.g., "This vulnerability has an ALE of $1.2M/year—here’s how we reduce it"). - Prioritize fixes (e.g., "Patch the SQL injection first—it’s a $500K/year risk vs. the phishing training at $50K"). - Pass the Security+ exam (this is a guaranteed question).
Real-world scenario: You inherit a legacy HR system storing PII. Your boss asks: - "What’s the financial risk if this gets hacked?"-Quantitative (ALE, SLE, ARO). - "How bad is it if it happens?"-Qualitative (High/Medium/Low).
You’ll use both to decide: Do we migrate to AWS, add MFA, or just accept the risk?
Definition: Measures risk in dollars using math. Answers: "How much will this cost us per year?"
SLE = Asset Value (AV) × Exposure Factor (EF)
Production insight: If you don’t know AV, use replacement cost (not purchase price). For data, use regulatory fines + recovery costs (e.g., HIPAA fines + forensic investigation).
? Annualized Rate of Occurrence (ARO)
Production insight: Use historical data (e.g., "We had 2 ransomware attacks last year-ARO = 2") or industry reports (e.g., Verizon DBIR says 1 in 10 companies get hit annually-ARO = 0.1).
? Annualized Loss Expectancy (ALE)
ALE = SLE × ARO
Definition: Ranks risk by severity (High/Medium/Low) using expert judgment. Answers: "How bad is this, really?"
Production insight: Use this for quick triage (e.g., "This zero-day is High/High—patch now!").
? Subject Matter Expert (SME) Input
Prerequisites: - A spreadsheet (Excel/Google Sheets) or calculator. - Historical data (e.g., past incidents, industry reports). - Asset inventory (e.g., "Our patient database is worth $500K").
Verification: - Check if the new ARO is realistic (e.g., "Do backups actually reduce ransomware by 90%?"). - Adjust EF if the control changes recovery time (e.g., "With backups, EF drops to 10%").
# Example: Patient DB ransomware risk av = 500000 # $500K ef = 0.3 # 30% exposure aro = 1 # 1 incident/year print(f"ALE: ${calculate_ale(av, ef, aro):,}") `` Output:ALE: $150,000`
`` Output:
50K × 0.5
"If AV = $100K and EF = 20%, what is SLE?"
100K × 0.2
Scenario-based:
"A company has a web server worth $20K. A DDoS attack has a 10% chance of occurring annually and would cause 50% downtime. What is the ALE?"
Qualitative vs. Quantitative:
Answer: Quantitative (ALE shows ROI).
"A zero-day exploit is discovered in your web app. Which method helps you decide whether to patch immediately?"
Answer: Qualitative (High/High risk-patch now).
"Your company had 2 data breaches last year. What is the ARO for this year?"
Challenge: Your company’s e-commerce site (AV = $200K) has a 25% chance of a SQL injection attack this year. If attacked, 40% of the site’s functionality would be lost. Calculate the ALE.
Solution:1. SLE = AV × EF = $200K × 0.40 = $80K2. ARO = 0.25 (25% chance)3. ALE = SLE × ARO = $80K × 0.25 = $20K/year
Why it works: - SLE captures the impact of one attack. - ARO scales it to annual risk. - ALE gives the yearly cost to justify controls.
Key Defaults: - EF for ransomware: 30–50% - EF for DDoS: 10–30% (downtime) - ARO for common threats: - Phishing: 0.5–2 - SQLi: 0.1–0.5 - Malware: 1–3
Final Pro Tip: "ALE is your security budget’s North Star. If you can’t calculate it, you can’t defend it." ?
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.