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
Add Known Exploited Vulnerabilities improver (#1422)
Add a Kev test & function docstrings
Change the kev model ( known_ransomware_campaign_use from integer choices to boolean )
Add kev to api
Access the vulnerability directly from Alias
Add a tooltips and edit kev table
Add a kev in a separate tab
Solve migration conflict
Add a basic improver
squash migration files
Add a basic Known Exploited Vulnerabilities model
Signed-off-by: ziadhany <[email protected]>
help_text="The date the vulnerability was added to the Known Exploited Vulnerabilities (KEV) catalog in the format YYYY-MM-DD.",
28
+
null=True,
29
+
),
30
+
),
31
+
(
32
+
"description",
33
+
models.TextField(
34
+
help_text="Description of the vulnerability in the Known Exploited Vulnerabilities (KEV) catalog, usually a refinement of the original CVE description"
35
+
),
36
+
),
37
+
(
38
+
"required_action",
39
+
models.TextField(
40
+
help_text="The required action to address the vulnerability, typically to apply vendor updates or apply vendor mitigations or to discontinue use."
41
+
),
42
+
),
43
+
(
44
+
"due_date",
45
+
models.DateField(
46
+
help_text="The date the required action is due in the format YYYY-MM-DD,which applies to all USA federal civilian executive branch (FCEB) agencies,but all organizations are strongly encouraged to execute the required action."
47
+
),
48
+
),
49
+
(
50
+
"resources_and_notes",
51
+
models.TextField(
52
+
help_text="Additional notes and resources about the vulnerability, often a URL to vendor instructions."
53
+
),
54
+
),
55
+
(
56
+
"known_ransomware_campaign_use",
57
+
models.BooleanField(
58
+
default=False,
59
+
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.",
data-tooltip="'Known' if this vulnerability is known to have been leveraged as part of a ransomware campaign; 'Unknown' if CISA lacks confirmation that the vulnerability has been utilized for ransomware">
0 commit comments