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.
Anti-Rationalization Table
| Rationalization |
Reality |
| "I'll figure it out as I go" |
A structured approach saves time and reduces errors. Follow the workflow in this skill rather than improvising. |
| "I already know this topic" |
Familiarity breeds shortcuts. Use the checklist to verify you haven't missed critical steps. |
| "This doesn't apply to my situation" |
The patterns here generalize across contexts. Adapt, don't skip — the underlying principles hold. |
| "One more tool will fix it" |
Adding complexity rarely solves process gaps. Master the core workflow first. |
When to Use
Trigger phrases:
"performing asset criticality scoring for vulns"
"Develop and apply a multi-factor asset criticality scoring model to weight vulne"
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
This section covers core concepts for performing asset criticality scoring for vulns.
- Ensure all prerequisites are met before proceeding
- Follow the documented workflow steps in sequence
- Record results and any anomalies encountered during this phase
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
- Scope the task — define objectives, boundaries, and success criteria
- Gather information — collect all necessary data and context before proceeding
- Execute the core workflow — follow the domain-specific steps methodically
- Validate results — verify outputs against expected outcomes or baselines
- Document findings — record results, anomalies, and recommendations
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
When NOT to Use
- You don't have explicit written authorization to test
- Task is about defense/detection, not offense (use detection skills)
- You need to implement security controls (use implementing-* skills)
- Task requires compliance auditing (use auditing-* skills)
- You're investigating an incident (use incident response skills)
- Target is out of scope for your engagement
- Task is about vulnerability scanning only (use scanning tools)
Red Flags
- Performing actions without explicit written authorization from the asset owner
- Testing against production systems without a defined scope and rules of engagement
- Sharing sensitive findings or credentials in unencrypted communications
- Failing to properly scope and contain the assessment before starting
Verification
- All steps executed successfully against a test environment before production use
- Output documented with screenshots or logs demonstrating expected behavior
- Results validated against known-good baselines or reference implementations
- Documentation complete enough for another analyst to reproduce findings
Process
- Analyze the task requirements
- Apply domain expertise
- Verify output quality
1---2name: performing-asset-criticality-scoring-for-vulns3description: Use when develop and apply a multi-factor asset criticality scoring model to weight vulnerability prioritization based on business impact, data sensitivity, and operational importance. Use when developing and apply a multi-factor asset criticality scoring model to.4license: Apache-2.05---67# Performing Asset Criticality Scoring for Vulns89## Overview10Asset 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.11121314## Anti-Rationalization Table1516| Rationalization | Reality |17|---|---|18| "I'll figure it out as I go" | A structured approach saves time and reduces errors. Follow the workflow in this skill rather than improvising. |19| "I already know this topic" | Familiarity breeds shortcuts. Use the checklist to verify you haven't missed critical steps. |20| "This doesn't apply to my situation" | The patterns here generalize across contexts. Adapt, don't skip — the underlying principles hold. |21| "One more tool will fix it" | Adding complexity rarely solves process gaps. Master the core workflow first. |2223## When to Use24**Trigger phrases:**25- "performing asset criticality scoring for vulns"26- "Develop and apply a multi-factor asset criticality scoring model to weight vulne"272829- When conducting security assessments that involve performing asset criticality scoring for vulns30- When following incident response procedures for related security events31- When performing scheduled security testing or auditing activities32- When validating security controls through hands-on testing3334## Prerequisites35- Configuration Management Database (CMDB) or asset inventory36- Business Impact Analysis (BIA) data37- Data classification policy38- Network architecture documentation39- Stakeholder input from business unit owners4041## Core Concepts4243This section covers core concepts for performing asset criticality scoring for vulns.4445- Ensure all prerequisites are met before proceeding46- Follow the documented workflow steps in sequence47- Record results and any anomalies encountered during this phase48### Asset Criticality Scoring Model4950| Factor | Weight | Score Range | Description |51|--------|--------|-------------|-------------|52| Business Function Impact | 25% | 1-5 | How critical is the supported business process |53| Data Sensitivity | 25% | 1-5 | Type and sensitivity of data processed/stored |54| Regulatory Scope | 15% | 1-5 | Regulatory requirements (PCI, HIPAA, SOX) |55| Network Exposure | 15% | 1-5 | Internet-facing vs internal-only |56| Recoverability | 10% | 1-5 | RTO/RPO requirements, DR capability |57| User Population | 10% | 1-5 | Number of users/customers affected |5859### Criticality Tier Definitions6061| Tier | Score Range | Label | SLA Modifier | Examples |62|------|------------|-------|-------------|---------|63| 1 | 4.5-5.0 | Crown Jewels | -50% SLA | Domain controllers, payment systems, ERP |64| 2 | 3.5-4.4 | High Value | -25% SLA | Email servers, HR systems, CI/CD |65| 3 | 2.5-3.4 | Standard | Baseline SLA | Internal apps, file servers |66| 4 | 1.5-2.4 | Low Impact | +25% SLA | Test environments, printers |67| 5 | 1.0-1.4 | Minimal | +50% SLA | Decommissioning, isolated labs |6869### Data Sensitivity Scoring7071| Score | Classification | Examples |72|-------|---------------|---------|73| 5 | Restricted/Secret | PII, PHI, payment card data, trade secrets |74| 4 | Confidential | Financial reports, HR records, source code |75| 3 | Internal | Internal documents, policies, project files |76| 2 | Semi-public | Marketing materials, press releases (draft) |77| 1 | Public | Published content, public APIs |7879## Workflow80811. **Scope the task** — define objectives, boundaries, and success criteria822. **Gather information** — collect all necessary data and context before proceeding833. **Execute the core workflow** — follow the domain-specific steps methodically844. **Validate results** — verify outputs against expected outcomes or baselines855. **Document findings** — record results, anomalies, and recommendations86### Step 1: Define Scoring Criteria8788```python89class AssetCriticalityScorer:90 """Multi-factor asset criticality scoring engine."""9192 WEIGHTS = {93 "business_function": 0.25,94 "data_sensitivity": 0.25,95 "regulatory_scope": 0.15,96 "network_exposure": 0.15,97 "recoverability": 0.10,98 "user_population": 0.10,99 }100101 TIER_THRESHOLDS = [102 (4.5, 1, "Crown Jewels", -0.50),103 (3.5, 2, "High Value", -0.25),104 (2.5, 3, "Standard", 0.00),105 (1.5, 4, "Low Impact", 0.25),106 (1.0, 5, "Minimal", 0.50),107 ]108109 def score_asset(self, asset):110 """Calculate criticality score for an asset."""111 weighted_score = sum(112 asset.get(factor, 3) * weight113 for factor, weight in self.WEIGHTS.items()114 )115 score = round(weighted_score, 2)116117 for threshold, tier, label, sla_mod in self.TIER_THRESHOLDS:118 if score >= threshold:119 return {120 "score": score,121 "tier": tier,122 "label": label,123 "sla_modifier": sla_mod,124 }125 return {"score": score, "tier": 5, "label": "Minimal", "sla_modifier": 0.50}126127 def adjust_vuln_sla(self, base_sla_days, asset_tier_data):128 """Adjust vulnerability SLA based on asset criticality."""129 modifier = asset_tier_data["sla_modifier"]130 adjusted = int(base_sla_days * (1 + modifier))131 return max(1, adjusted) # Minimum 1 day SLA132```133134### Step 2: Integrate with Vulnerability Prioritization135136```python137def apply_criticality_to_vulns(vulns_df, asset_scores):138 """Enrich vulnerability data with asset criticality context."""139 for idx, vuln in vulns_df.iterrows():140 asset_id = vuln.get("asset_id", "")141 asset_data = asset_scores.get(asset_id, {"tier": 3, "sla_modifier": 0})142143 vulns_df.at[idx, "asset_tier"] = asset_data["tier"]144 vulns_df.at[idx, "asset_label"] = asset_data.get("label", "Standard")145146 base_sla = get_base_sla(vuln["severity"])147 adjusted_sla = int(base_sla * (1 + asset_data["sla_modifier"]))148 vulns_df.at[idx, "adjusted_sla_days"] = max(1, adjusted_sla)149150 return vulns_df151```152153## Best Practices1541. Involve business stakeholders in criticality scoring; IT alone cannot assess business impact1552. Review and update criticality scores at least quarterly or when systems change roles1563. Automate scoring where possible using CMDB tags and data classification labels1574. Apply criticality tiers to vulnerability SLAs for risk-proportional remediation1585. Validate scoring against actual incident impact data to calibrate the model1596. Start with a simple 3-tier model before expanding to 5 tiers160161## Common Pitfalls162- Classifying all assets as "critical" which defeats the purpose of tiering163- Not updating criticality scores when systems are repurposed or decommissioned164- Using only technical factors without business context165- Applying uniform SLAs regardless of asset importance166- Not documenting the scoring methodology for audit and consistency167168## Related Skills169- performing-cve-prioritization-with-kev-catalog170- building-vulnerability-aging-and-sla-tracking171- performing-business-impact-analysis172- implementing-asset-management-program173## When NOT to Use174175- You don't have explicit written authorization to test176- Task is about defense/detection, not offense (use detection skills)177- You need to implement security controls (use implementing-* skills)178- Task requires compliance auditing (use auditing-* skills)179- You're investigating an incident (use incident response skills)180- Target is out of scope for your engagement181- Task is about vulnerability scanning only (use scanning tools)182183184## Red Flags185186- Performing actions without explicit written authorization from the asset owner187- Testing against production systems without a defined scope and rules of engagement188- Sharing sensitive findings or credentials in unencrypted communications189- Failing to properly scope and contain the assessment before starting190## Verification191192- All steps executed successfully against a test environment before production use193- Output documented with screenshots or logs demonstrating expected behavior194- Results validated against known-good baselines or reference implementations195- Documentation complete enough for another analyst to reproduce findings196197## Process1981991. Analyze the task requirements2002. Apply domain expertise2013. Verify output quality