Kembali ke Roadmap
// PHASE 5 · Severity & CVSS Scoring

Severity & CVSS Scoring

CVSS — Common Vulnerability Scoring System

CVSS adalah standar industri untuk menilai tingkat keparahan kerentanan keamanan dengan skor 0.0–10.0.

Severity Levels

ScoreSeverityContohReward Tipikal
9.0–10.0CriticalRCE tanpa auth, SQLi dump DB$5,000–$50,000+
7.0–8.9HighAuth bypass, SSRF ke metadata$1,000–$10,000
4.0–6.9MediumStored XSS, IDOR baca data$200–$2,000
0.1–3.9LowReflected XSS, info disclosure$50–$500
0.0None/InfoBest practice, no direct impact$0 / swag

Faktor CVSS

Base Score (paling penting)

MetrikPilihan
Attack VectorNetwork / Adjacent / Local / Physical
Attack ComplexityLow / High
Privileges RequiredNone / Low / High
User InteractionNone / Required
ScopeUnchanged / Changed
Confidentiality ImpactNone / Low / High
Integrity ImpactNone / Low / High
Availability ImpactNone / Low / High

Contoh Kalkulasi

# Stored XSS yang steal session Attack Vector: Network Attack Complexity: Low Privileges Required: Low (butuh akun) User Interaction: Required (korban harus buka halaman) Scope: Changed (cross-origin impact) Confidentiality: High Integrity: High Availability: None → Score: ~8.0 (High) # RCE tanpa auth Attack Vector: Network Attack Complexity: Low Privileges Required: None User Interaction: None Scope: Changed Confidentiality: High Integrity: High Availability: High → Score: 10.0 (Critical)
Tools: Gunakan CVSS Calculator di nvd.nist.gov/vuln-metrics/cvss/v3-calculator untuk menghitung skor secara akurat. Sertakan skor CVSS beserta vector string di report kamu.
// CEK PEMAHAMAN
Kerentanan dengan karakteristik "Network access, Low complexity, No privileges required, No user interaction, High impact on all CIA" mendapat severity apa?
ALow
BMedium
CHigh
DCritical
Bug Bounty Platforms Responsible Disclosure