Performing Asset Criticality Scoring for Vulns
Overview
Asset criticality scoring assigns a business impact rating to each IT asset so that vulnerability remediation efforts focus on systems with the greatest organizational risk. Without criticality context, a CVSS 9.0 vulnerability on a test server receives the same urgency as the same vulnerability on a payment processing database. This skill covers building a multi-factor scoring model incorporating data sensitivity, business function dependency, regulatory scope, network exposure, and recoverability to create a 1-5 criticality tier that directly modifies vulnerability remediation SLAs.
When to Use
- When conducting security assessments that involve performing asset criticality scoring for vulns
- When following incident response procedures for related security events
- When performing scheduled security testing or auditing activities
- When validating security controls through hands-on testing
Common Misconfigurations & Verification
- Everything marked critical — defeats tiering. Verify the tier distribution is realistic (most assets Standard), not skewed to Tier 1.
- Stale scores — repurposed/decommissioned assets keep old tiers. Verify a quarterly review and re-score on role change.
- Technical-only inputs — verify business stakeholders supplied function/impact ratings, not just IT.
- SLA modifier not wired in — verify the criticality tier actually changes the vulnerability SLA (
adjusted_sla_days).
- Undocumented methodology — verify the weighting model is recorded for audit and consistency.
- CMDB gaps — verify unscored assets default to a sane tier and are flagged, not silently excluded.
Prerequisites
- Configuration Management Database (CMDB) or asset inventory
- Business Impact Analysis (BIA) data
- Data classification policy
- Network architecture documentation
- Stakeholder input from business unit owners
Core Concepts
Asset Criticality Scoring Model
| Factor |
Weight |
Score Range |
Description |
| Business Function Impact |
25% |
1-5 |
How critical is the supported business process |
| Data Sensitivity |
25% |
1-5 |
Type and sensitivity of data processed/stored |
| Regulatory Scope |
15% |
1-5 |
Regulatory requirements (PCI, HIPAA, SOX) |
| Network Exposure |
15% |
1-5 |
Internet-facing vs internal-only |
| Recoverability |
10% |
1-5 |
RTO/RPO requirements, DR capability |
| User Population |
10% |
1-5 |
Number of users/customers affected |
Criticality Tier Definitions
| Tier |
Score Range |
Label |
SLA Modifier |
Examples |
| 1 |
4.5-5.0 |
Crown Jewels |
-50% SLA |
Domain controllers, payment systems, ERP |
| 2 |
3.5-4.4 |
High Value |
-25% SLA |
Email servers, HR systems, CI/CD |
| 3 |
2.5-3.4 |
Standard |
Baseline SLA |
Internal apps, file servers |
| 4 |
1.5-2.4 |
Low Impact |
+25% SLA |
Test environments, printers |
| 5 |
1.0-1.4 |
Minimal |
+50% SLA |
Decommissioning, isolated labs |
Data Sensitivity Scoring
| Score |
Classification |
Examples |
| 5 |
Restricted/Secret |
PII, PHI, payment card data, trade secrets |
| 4 |
Confidential |
Financial reports, HR records, source code |
| 3 |
Internal |
Internal documents, policies, project files |
| 2 |
Semi-public |
Marketing materials, press releases (draft) |
| 1 |
Public |
Published content, public APIs |
Workflow
Step 1: Define Scoring Criteria
class AssetCriticalityScorer:
"""Multi-factor asset criticality scoring engine."""
WEIGHTS = {
"business_function": 0.25,
"data_sensitivity": 0.25,
"regulatory_scope": 0.15,
"network_exposure": 0.15,
"recoverability": 0.10,
"user_population": 0.10,
}
TIER_THRESHOLDS = [
(4.5, 1, "Crown Jewels", -0.50),
(3.5, 2, "High Value", -0.25),
(2.5, 3, "Standard", 0.00),
(1.5, 4, "Low Impact", 0.25),
(1.0, 5, "Minimal", 0.50),
]
def score_asset(self, asset):
"""Calculate criticality score for an asset."""
weighted_score = sum(
asset.get(factor, 3) * weight
for factor, weight in self.WEIGHTS.items()
)
score = round(weighted_score, 2)
for threshold, tier, label, sla_mod in self.TIER_THRESHOLDS:
if score >= threshold:
return {
"score": score,
"tier": tier,
"label": label,
"sla_modifier": sla_mod,
}
return {"score": score, "tier": 5, "label": "Minimal", "sla_modifier": 0.50}
def adjust_vuln_sla(self, base_sla_days, asset_tier_data):
"""Adjust vulnerability SLA based on asset criticality."""
modifier = asset_tier_data["sla_modifier"]
adjusted = int(base_sla_days * (1 + modifier))
return max(1, adjusted) # Minimum 1 day SLA
Step 2: Integrate with Vulnerability Prioritization
def apply_criticality_to_vulns(vulns_df, asset_scores):
"""Enrich vulnerability data with asset criticality context."""
for idx, vuln in vulns_df.iterrows():
asset_id = vuln.get("asset_id", "")
asset_data = asset_scores.get(asset_id, {"tier": 3, "sla_modifier": 0})
vulns_df.at[idx, "asset_tier"] = asset_data["tier"]
vulns_df.at[idx, "asset_label"] = asset_data.get("label", "Standard")
base_sla = get_base_sla(vuln["severity"])
adjusted_sla = int(base_sla * (1 + asset_data["sla_modifier"]))
vulns_df.at[idx, "adjusted_sla_days"] = max(1, adjusted_sla)
return vulns_df
Best Practices
- Involve business stakeholders in criticality scoring; IT alone cannot assess business impact
- Review and update criticality scores at least quarterly or when systems change roles
- Automate scoring where possible using CMDB tags and data classification labels
- Apply criticality tiers to vulnerability SLAs for risk-proportional remediation
- Validate scoring against actual incident impact data to calibrate the model
- Start with a simple 3-tier model before expanding to 5 tiers
Common Pitfalls
- Classifying all assets as "critical" which defeats the purpose of tiering
- Not updating criticality scores when systems are repurposed or decommissioned
- Using only technical factors without business context
- Applying uniform SLAs regardless of asset importance
- Not documenting the scoring methodology for audit and consistency
Related Skills
- performing-cve-prioritization-with-kev-catalog
- building-vulnerability-aging-and-sla-tracking
- performing-business-impact-analysis
- implementing-asset-management-program
1---2name: performing-asset-criticality-scoring-for-vulns3description: Develop and apply a multi-factor asset criticality scoring model to weight vulnerability prioritization based on business impact, data sensitivity, and operational importance.4license: Apache-2.05---6# Performing Asset Criticality Scoring for Vulns78## Overview9Asset criticality scoring assigns a business impact rating to each IT asset so that vulnerability remediation efforts focus on systems with the greatest organizational risk. Without criticality context, a CVSS 9.0 vulnerability on a test server receives the same urgency as the same vulnerability on a payment processing database. This skill covers building a multi-factor scoring model incorporating data sensitivity, business function dependency, regulatory scope, network exposure, and recoverability to create a 1-5 criticality tier that directly modifies vulnerability remediation SLAs.101112## When to Use1314- When conducting security assessments that involve performing asset criticality scoring for vulns15- When following incident response procedures for related security events16- When performing scheduled security testing or auditing activities17- When validating security controls through hands-on testing1819## Common Misconfigurations & Verification2021- **Everything marked critical** — defeats tiering. Verify the tier distribution is realistic (most assets Standard), not skewed to Tier 1.22- **Stale scores** — repurposed/decommissioned assets keep old tiers. Verify a quarterly review and re-score on role change.23- **Technical-only inputs** — verify business stakeholders supplied function/impact ratings, not just IT.24- **SLA modifier not wired in** — verify the criticality tier actually changes the vulnerability SLA (`adjusted_sla_days`).25- **Undocumented methodology** — verify the weighting model is recorded for audit and consistency.26- **CMDB gaps** — verify unscored assets default to a sane tier and are flagged, not silently excluded.2728## Prerequisites29- Configuration Management Database (CMDB) or asset inventory30- Business Impact Analysis (BIA) data31- Data classification policy32- Network architecture documentation33- Stakeholder input from business unit owners3435## Core Concepts3637### Asset Criticality Scoring Model3839| Factor | Weight | Score Range | Description |40|--------|--------|-------------|-------------|41| Business Function Impact | 25% | 1-5 | How critical is the supported business process |42| Data Sensitivity | 25% | 1-5 | Type and sensitivity of data processed/stored |43| Regulatory Scope | 15% | 1-5 | Regulatory requirements (PCI, HIPAA, SOX) |44| Network Exposure | 15% | 1-5 | Internet-facing vs internal-only |45| Recoverability | 10% | 1-5 | RTO/RPO requirements, DR capability |46| User Population | 10% | 1-5 | Number of users/customers affected |4748### Criticality Tier Definitions4950| Tier | Score Range | Label | SLA Modifier | Examples |51|------|------------|-------|-------------|---------|52| 1 | 4.5-5.0 | Crown Jewels | -50% SLA | Domain controllers, payment systems, ERP |53| 2 | 3.5-4.4 | High Value | -25% SLA | Email servers, HR systems, CI/CD |54| 3 | 2.5-3.4 | Standard | Baseline SLA | Internal apps, file servers |55| 4 | 1.5-2.4 | Low Impact | +25% SLA | Test environments, printers |56| 5 | 1.0-1.4 | Minimal | +50% SLA | Decommissioning, isolated labs |5758### Data Sensitivity Scoring5960| Score | Classification | Examples |61|-------|---------------|---------|62| 5 | Restricted/Secret | PII, PHI, payment card data, trade secrets |63| 4 | Confidential | Financial reports, HR records, source code |64| 3 | Internal | Internal documents, policies, project files |65| 2 | Semi-public | Marketing materials, press releases (draft) |66| 1 | Public | Published content, public APIs |6768## Workflow6970### Step 1: Define Scoring Criteria7172```python73class AssetCriticalityScorer:74 """Multi-factor asset criticality scoring engine."""7576 WEIGHTS = {77 "business_function": 0.25,78 "data_sensitivity": 0.25,79 "regulatory_scope": 0.15,80 "network_exposure": 0.15,81 "recoverability": 0.10,82 "user_population": 0.10,83 }8485 TIER_THRESHOLDS = [86 (4.5, 1, "Crown Jewels", -0.50),87 (3.5, 2, "High Value", -0.25),88 (2.5, 3, "Standard", 0.00),89 (1.5, 4, "Low Impact", 0.25),90 (1.0, 5, "Minimal", 0.50),91 ]9293 def score_asset(self, asset):94 """Calculate criticality score for an asset."""95 weighted_score = sum(96 asset.get(factor, 3) * weight97 for factor, weight in self.WEIGHTS.items()98 )99 score = round(weighted_score, 2)100101 for threshold, tier, label, sla_mod in self.TIER_THRESHOLDS:102 if score >= threshold:103 return {104 "score": score,105 "tier": tier,106 "label": label,107 "sla_modifier": sla_mod,108 }109 return {"score": score, "tier": 5, "label": "Minimal", "sla_modifier": 0.50}110111 def adjust_vuln_sla(self, base_sla_days, asset_tier_data):112 """Adjust vulnerability SLA based on asset criticality."""113 modifier = asset_tier_data["sla_modifier"]114 adjusted = int(base_sla_days * (1 + modifier))115 return max(1, adjusted) # Minimum 1 day SLA116```117118### Step 2: Integrate with Vulnerability Prioritization119120```python121def apply_criticality_to_vulns(vulns_df, asset_scores):122 """Enrich vulnerability data with asset criticality context."""123 for idx, vuln in vulns_df.iterrows():124 asset_id = vuln.get("asset_id", "")125 asset_data = asset_scores.get(asset_id, {"tier": 3, "sla_modifier": 0})126127 vulns_df.at[idx, "asset_tier"] = asset_data["tier"]128 vulns_df.at[idx, "asset_label"] = asset_data.get("label", "Standard")129130 base_sla = get_base_sla(vuln["severity"])131 adjusted_sla = int(base_sla * (1 + asset_data["sla_modifier"]))132 vulns_df.at[idx, "adjusted_sla_days"] = max(1, adjusted_sla)133134 return vulns_df135```136137## Best Practices1381. Involve business stakeholders in criticality scoring; IT alone cannot assess business impact1392. Review and update criticality scores at least quarterly or when systems change roles1403. Automate scoring where possible using CMDB tags and data classification labels1414. Apply criticality tiers to vulnerability SLAs for risk-proportional remediation1425. Validate scoring against actual incident impact data to calibrate the model1436. Start with a simple 3-tier model before expanding to 5 tiers144145## Common Pitfalls146- Classifying all assets as "critical" which defeats the purpose of tiering147- Not updating criticality scores when systems are repurposed or decommissioned148- Using only technical factors without business context149- Applying uniform SLAs regardless of asset importance150- Not documenting the scoring methodology for audit and consistency151152## Related Skills153- performing-cve-prioritization-with-kev-catalog154- building-vulnerability-aging-and-sla-tracking155- performing-business-impact-analysis156- implementing-asset-management-program