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
field=models.TextField(help_text='Common Vulnerability Scoring System version 4 (CVSSv4) score associated with this finding.', max_length=117, null=True, validators=[dojo.validators.cvss4_validator], verbose_name='CVSS v4 vector'),
19
+
),
20
+
migrations.AddField(
21
+
model_name='finding',
22
+
name='cvssv4_score',
23
+
field=models.FloatField(blank=True, help_text='Numerical CVSSv4 score for the vulnerability. If the vector is given, the score is updated while saving the finding. The value must be between 0-10.', null=True, validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(10.0)], verbose_name='CVSSv4 score'),
@@ -2356,6 +2356,17 @@ class Finding(models.Model):
2356
2356
help_text=_("Numerical CVSSv3 score for the vulnerability. If the vector is given, the score is updated while saving the finding. The value must be between 0-10."),
help_text=_("Common Vulnerability Scoring System version 4 (CVSSv4) score associated with this finding."))
2364
+
cvssv4_score=models.FloatField(null=True,
2365
+
blank=True,
2366
+
verbose_name=_("CVSSv4 score"),
2367
+
help_text=_("Numerical CVSSv4 score for the vulnerability. If the vector is given, the score is updated while saving the finding. The value must be between 0-10."),
0 commit comments