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 3 (CVSS3) score associated with this finding.', max_length=117, null=True, validators=[dojo.validators.cvss3_validator], verbose_name='CVSS3 Vector'),
21
+
),
22
+
migrations.AlterField(
23
+
model_name='finding',
24
+
name='cvssv3_score',
25
+
field=models.FloatField(blank=True, help_text='Numerical CVSS3 score for the vulnerability. If the vector is given without a score, the score is calcaulated 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='CVSS3 Score'),
26
+
),
15
27
migrations.AddField(
16
28
model_name='finding',
17
29
name='cvssv4',
18
-
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'),
30
+
field=models.TextField(help_text='Common Vulnerability Scoring System version 4 (CVSS4) score associated with this finding.', max_length=255, null=True, validators=[dojo.validators.cvss4_validator], verbose_name='CVSS4 vector'),
19
31
),
20
32
migrations.AddField(
21
33
model_name='finding',
22
34
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'),
35
+
field=models.FloatField(blank=True, help_text='Numerical CVSS4 score for the vulnerability. If the vector is given without a score, the score is calcaulated 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'),
help_text=_("Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this finding."))
2351
+
verbose_name=_("CVSS3 Vector"),
2352
+
help_text=_("Common Vulnerability Scoring System version 3 (CVSS3) score associated with this finding."))
2353
2353
cvssv3_score=models.FloatField(null=True,
2354
2354
blank=True,
2355
-
verbose_name=_("CVSSv3 score"),
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."),
2355
+
verbose_name=_("CVSS3 Score"),
2356
+
help_text=_("Numerical CVSS3 score for the vulnerability. If the vector is given without a score, the score is calcaulated 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."))
2362
+
verbose_name=_("CVSS4 vector"),
2363
+
help_text=_("Common Vulnerability Scoring System version 4 (CVSS4) score associated with this finding."))
2364
2364
cvssv4_score=models.FloatField(null=True,
2365
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."),
2366
+
verbose_name=_("CVSSv4 Score"),
2367
+
help_text=_("Numerical CVSS4 score for the vulnerability. If the vector is given without a score, the score is calcaulated while saving the finding. The value must be between 0-10."),
0 commit comments