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
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
Source: mukul975/Anthropic-Cybersecurity-Skills → skills/performing-asset-criticality-scoring-for-vulns/SKILL.md
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.4---5
6# Performing Asset Criticality Scoring for Vulns
7
8## Overview
9Asset 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.
10
11
12## When to Use
13
14- When conducting security assessments that involve performing asset criticality scoring for vulns
15- When following incident response procedures for related security events
16- When performing scheduled security testing or auditing activities
17- When validating security controls through hands-on testing
18
19## Prerequisites
20- Configuration Management Database (CMDB) or asset inventory
21- Business Impact Analysis (BIA) data
22- Data classification policy
23- Network architecture documentation
24- Stakeholder input from business unit owners
25
26## Core Concepts
27
28### Asset Criticality Scoring Model
29
30| Factor | Weight | Score Range | Description |
31|--------|--------|-------------|-------------|
32| Business Function Impact | 25% | 1-5 | How critical is the supported business process |
33| Data Sensitivity | 25% | 1-5 | Type and sensitivity of data processed/stored |
34| Regulatory Scope | 15% | 1-5 | Regulatory requirements (PCI, HIPAA, SOX) |
35| Network Exposure | 15% | 1-5 | Internet-facing vs internal-only |
36| Recoverability | 10% | 1-5 | RTO/RPO requirements, DR capability |
37| User Population | 10% | 1-5 | Number of users/customers affected |
38
39### Criticality Tier Definitions
40
41| Tier | Score Range | Label | SLA Modifier | Examples |
42|------|------------|-------|-------------|---------|
43| 1 | 4.5-5.0 | Crown Jewels | -50% SLA | Domain controllers, payment systems, ERP |
44| 2 | 3.5-4.4 | High Value | -25% SLA | Email servers, HR systems, CI/CD |
45| 3 | 2.5-3.4 | Standard | Baseline SLA | Internal apps, file servers |
46| 4 | 1.5-2.4 | Low Impact | +25% SLA | Test environments, printers |
47| 5 | 1.0-1.4 | Minimal | +50% SLA | Decommissioning, isolated labs |
48
49### Data Sensitivity Scoring
50
51| Score | Classification | Examples |
52|-------|---------------|---------|
53| 5 | Restricted/Secret | PII, PHI, payment card data, trade secrets |
54| 4 | Confidential | Financial reports, HR records, source code |
55| 3 | Internal | Internal documents, policies, project files |
56| 2 | Semi-public | Marketing materials, press releases (draft) |
57| 1 | Public | Published content, public APIs |
58
59## Workflow
60
61### Step 1: Define Scoring Criteria
62
63```python
64class AssetCriticalityScorer:
65 """Multi-factor asset criticality scoring engine."""
66
67 WEIGHTS = {
68 "business_function": 0.25,
69 "data_sensitivity": 0.25,
70 "regulatory_scope": 0.15,
71 "network_exposure": 0.15,
72 "recoverability": 0.10,
73 "user_population": 0.10,
74 }
75
76 TIER_THRESHOLDS = [
77 (4.5, 1, "Crown Jewels", -0.50),
78 (3.5, 2, "High Value", -0.25),
79 (2.5, 3, "Standard", 0.00),
80 (1.5, 4, "Low Impact", 0.25),
81 (1.0, 5, "Minimal", 0.50),
82 ]
83
84 def score_asset(self, asset):
85 """Calculate criticality score for an asset."""
86 weighted_score = sum(
87 asset.get(factor, 3) * weight
88 for factor, weight in self.WEIGHTS.items()
89 )
90 score = round(weighted_score, 2)
91
92 for threshold, tier, label, sla_mod in self.TIER_THRESHOLDS:
93 if score >= threshold:
94 return {
95 "score": score,
96 "tier": tier,
97 "label": label,
98 "sla_modifier": sla_mod,
99 }
100 return {"score": score, "tier": 5, "label": "Minimal", "sla_modifier": 0.50}
101
102 def adjust_vuln_sla(self, base_sla_days, asset_tier_data):
103 """Adjust vulnerability SLA based on asset criticality."""
104 modifier = asset_tier_data["sla_modifier"]
105 adjusted = int(base_sla_days * (1 + modifier))
106 return max(1, adjusted) # Minimum 1 day SLA
107```
108
109### Step 2: Integrate with Vulnerability Prioritization
110
111```python
112def apply_criticality_to_vulns(vulns_df, asset_scores):
113 """Enrich vulnerability data with asset criticality context."""
114 for idx, vuln in vulns_df.iterrows():
115 asset_id = vuln.get("asset_id", "")
116 asset_data = asset_scores.get(asset_id, {"tier": 3, "sla_modifier": 0})
117
118 vulns_df.at[idx, "asset_tier"] = asset_data["tier"]
119 vulns_df.at[idx, "asset_label"] = asset_data.get("label", "Standard")
120
121 base_sla = get_base_sla(vuln["severity"])
122 adjusted_sla = int(base_sla * (1 + asset_data["sla_modifier"]))
123 vulns_df.at[idx, "adjusted_sla_days"] = max(1, adjusted_sla)
124
125 return vulns_df
126```
127
128## Best Practices
1291. Involve business stakeholders in criticality scoring; IT alone cannot assess business impact
1302. Review and update criticality scores at least quarterly or when systems change roles
1313. Automate scoring where possible using CMDB tags and data classification labels
1324. Apply criticality tiers to vulnerability SLAs for risk-proportional remediation
1335. Validate scoring against actual incident impact data to calibrate the model
1346. Start with a simple 3-tier model before expanding to 5 tiers
135
136## Common Pitfalls
137- Classifying all assets as "critical" which defeats the purpose of tiering
138- Not updating criticality scores when systems are repurposed or decommissioned
139- Using only technical factors without business context
140- Applying uniform SLAs regardless of asset importance
141- Not documenting the scoring methodology for audit and consistency
142
143## Related Skills
144- performing-cve-prioritization-with-kev-catalog
145- building-vulnerability-aging-and-sla-tracking
146- performing-business-impact-analysis
147- implementing-asset-management-program
148
149---
150
151**Source:** [`mukul975/Anthropic-Cybersecurity-Skills`](https://github.com/mukul975/Anthropic-Cybersecurity-Skills) → `skills/performing-asset-criticality-scoring-for-vulns/SKILL.md`