You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help_text='"Exploitability indicates the likelihood that a vulnerability in a software package could be used \n by malicious actors to compromise systems, applications, or networks. \n This metric is determined automatically based on the discovery of known exploits.',
19
+
max_digits=2,
20
+
null=True,
21
+
),
22
+
),
23
+
migrations.AddField(
24
+
model_name="vulnerability",
25
+
name="weighted_severity",
26
+
field=models.DecimalField(
27
+
decimal_places=1,
28
+
help_text="Weighted severity is the highest value calculated by multiplying each severity by its corresponding weight, divided by 10",
29
+
max_digits=3,
30
+
null=True,
31
+
),
32
+
),
33
+
migrations.AlterField(
34
+
model_name="package",
35
+
name="risk_score",
36
+
field=models.DecimalField(
37
+
decimal_places=1,
38
+
help_text="Risk score between 0.00 and 10.00, where higher values indicate greater vulnerability risk for the package.",
0 commit comments