This repository was archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscores.go
146 lines (115 loc) · 3.73 KB
/
scores.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package cvss
import "math"
// Round to one decimal.
func round(x float64) float64 {
var rounder float64
pow := math.Pow(10, 1)
intermed := x * pow
if intermed < 0 {
intermed -= 0.5
} else {
intermed += 0.5
}
rounder = float64(int64(intermed))
return rounder / float64(pow)
}
func getBaseScore(impact, baseExploitability, impactMod float64) float64 {
return round(
((0.6 * impact) + (0.4 * baseExploitability) - 1.5) * impactMod)
}
// Score returns the computed scores for the given CVSS model.
func (c CVSS) Score() Score {
return Score{
Base: c.baseScore(),
Temporal: c.temporalScore(),
Environmental: c.environmentalScore()}
}
func (c CVSS) score(defaultValue float64, g group) float64 {
for _, metric := range c {
if groups[metric] == g {
return scores[metric]
}
}
return defaultValue
}
func (c CVSS) baseScore() float64 {
return getBaseScore(c.impact(), c.baseExploitability(), c.impactMod())
}
func (c CVSS) impact() float64 {
return 10.41 * (1 - (1-c.confidentialityImpact())*
(1-c.integrityImpact())*
(1-c.availabilityImpact()))
}
func (c CVSS) confidentialityImpact() float64 {
return c.score(0, confidentiality)
}
func (c CVSS) integrityImpact() float64 {
return c.score(0, integrity)
}
func (c CVSS) availabilityImpact() float64 {
return c.score(0, availability)
}
func (c CVSS) baseExploitability() float64 {
return 20 * c.accessVectorScore() * c.accessComplexityScore() * c.authenticationScore()
}
func (c CVSS) accessVectorScore() float64 {
return c.score(0, accessVector)
}
func (c CVSS) accessComplexityScore() float64 {
return c.score(0, accessComplexity)
}
func (c CVSS) authenticationScore() float64 {
return c.score(0, authentication)
}
func (c CVSS) impactMod() float64 {
if c.impact() == 0 {
return 0
}
return 1.176
}
func (c CVSS) temporalScore() float64 {
return c.getTemporalScore(getBaseScore(c.impact(), c.baseExploitability(), c.impactMod()))
}
func (c CVSS) getTemporalScore(baseScore float64) float64 {
return round(baseScore * c.temporalExploitability() * c.remediationLevel() * c.reportConfidence())
}
func (c CVSS) temporalExploitability() float64 {
return c.score(scores[ExploitabilityNotDefined], exploitability)
}
func (c CVSS) remediationLevel() float64 {
return c.score(scores[RemediationLevelNotDefined], remediationLevel)
}
func (c CVSS) reportConfidence() float64 {
return c.score(scores[ReportConfidenceNotDefined], reportConfidence)
}
func (c CVSS) environmentalScore() float64 {
return round((c.adjustedTemporal() + (10-c.adjustedTemporal())*c.collateralDamagePotential()) * c.targetDistribution())
}
func (c CVSS) adjustedTemporal() float64 {
return c.getTemporalScore(getBaseScore(c.adjustedImpact(), c.baseExploitability(), c.adjustedImpactMod()))
}
func (c CVSS) adjustedImpact() float64 {
return math.Min(10,
10.41*(1-(1-c.confidentialityImpact()*c.confidentialityRequirement())*(1-c.integrityImpact()*c.integrityRequirement())*(1-c.availabilityImpact()*c.availabilityRequirement())))
}
func (c CVSS) adjustedImpactMod() float64 {
if c.adjustedImpact() == 0 {
return 0
}
return 1.176
}
func (c CVSS) collateralDamagePotential() float64 {
return c.score(scores[CollateralDamagePotentialNotDefined], collateralDamagePotential)
}
func (c CVSS) targetDistribution() float64 {
return c.score(scores[TargetDistributionNotDefined], targetDistribution)
}
func (c CVSS) confidentialityRequirement() float64 {
return c.score(scores[ConfidentialityRequirementNotDefined], confidentialityRequirement)
}
func (c CVSS) integrityRequirement() float64 {
return c.score(scores[IntegrityRequirementNotDefined], integrityRequirement)
}
func (c CVSS) availabilityRequirement() float64 {
return c.score(scores[AvailabilityRequirementNotDefined], availabilityRequirement)
}