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
Copy file name to clipboardExpand all lines: vulnerabilities/migrations/0077_vulnerability_exploitability_and_more.py
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Generated by Django 4.2.16 on 2024-11-08 14:07
1
+
# Generated by Django 4.2.16 on 2024-11-12 12:16
2
2
3
3
fromdjango.dbimportmigrations, models
4
4
@@ -15,7 +15,9 @@ class Migration(migrations.Migration):
15
15
name="exploitability",
16
16
field=models.DecimalField(
17
17
decimal_places=2,
18
-
help_text="Exploitability refers to the potential or probability of a software package vulnerability being \n exploited by malicious actors to compromise systems, applications, or networks. \n It is determined automatically by the discovery of exploits.",
18
+
help_text="""Exploitability indicates the likelihood that a vulnerability in a software package could
19
+
be used by malicious actors to compromise systems, applications, or networks.
20
+
This metric is determined automatically based on the discovery of known exploits.""",
19
21
max_digits=4,
20
22
null=True,
21
23
),
@@ -25,7 +27,7 @@ class Migration(migrations.Migration):
25
27
name="weighted_severity",
26
28
field=models.DecimalField(
27
29
decimal_places=2,
28
-
help_text="Weighted Severity is the maximum value obtained when each Severity is multiplied by its associated Weight/10.",
30
+
help_text="Weighted severity is the highest value calculated by multiplying each severity by its corresponding weight, divided by 10.",
0 commit comments