|
| 1 | +# Generated by Django 4.1.13 on 2024-08-14 14:52 |
| 2 | + |
| 3 | +from django.db import migrations, models |
| 4 | + |
| 5 | + |
| 6 | +class Migration(migrations.Migration): |
| 7 | + |
| 8 | + dependencies = [ |
| 9 | + ("vulnerabilities", "0059_vulnerabilityseverity_published_at_and_more"), |
| 10 | + ] |
| 11 | + |
| 12 | + operations = [ |
| 13 | + migrations.AlterField( |
| 14 | + model_name="kev", |
| 15 | + name="known_ransomware_campaign_use", |
| 16 | + field=models.BooleanField( |
| 17 | + default=False, |
| 18 | + help_text="Known if this vulnerability is known to have been leveraged as part of a ransomware campaign;\n or 'Unknown' if CISA lacks confirmation that the vulnerability has been utilized for ransomware.", |
| 19 | + ), |
| 20 | + ), |
| 21 | + migrations.AlterField( |
| 22 | + model_name="packagechangelog", |
| 23 | + name="software_version", |
| 24 | + field=models.CharField( |
| 25 | + default="34.0.0rc5", |
| 26 | + help_text="Version of the software at the time of change", |
| 27 | + max_length=100, |
| 28 | + ), |
| 29 | + ), |
| 30 | + migrations.AlterField( |
| 31 | + model_name="vulnerabilitychangelog", |
| 32 | + name="software_version", |
| 33 | + field=models.CharField( |
| 34 | + default="34.0.0rc5", |
| 35 | + help_text="Version of the software at the time of change", |
| 36 | + max_length=100, |
| 37 | + ), |
| 38 | + ), |
| 39 | + migrations.AlterField( |
| 40 | + model_name="vulnerabilityseverity", |
| 41 | + name="scoring_system", |
| 42 | + field=models.CharField( |
| 43 | + choices=[ |
| 44 | + ("cvssv2", "CVSSv2 Base Score"), |
| 45 | + ("cvssv3", "CVSSv3 Base Score"), |
| 46 | + ("cvssv3.1", "CVSSv3.1 Base Score"), |
| 47 | + ("cvssv4", "CVSSv4 Base Score"), |
| 48 | + ("rhbs", "RedHat Bugzilla severity"), |
| 49 | + ("rhas", "RedHat Aggregate severity"), |
| 50 | + ("archlinux", "Archlinux Vulnerability Group Severity"), |
| 51 | + ("cvssv3.1_qr", "CVSSv3.1 Qualitative Severity Rating"), |
| 52 | + ("generic_textual", "Generic textual severity rating"), |
| 53 | + ("apache_httpd", "Apache Httpd Severity"), |
| 54 | + ("apache_tomcat", "Apache Tomcat Severity"), |
| 55 | + ("epss", "Exploit Prediction Scoring System"), |
| 56 | + ("ssvc", "Stakeholder-Specific Vulnerability Categorization"), |
| 57 | + ], |
| 58 | + help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization ", |
| 59 | + max_length=50, |
| 60 | + ), |
| 61 | + ), |
| 62 | + ] |
0 commit comments