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
returnfinding.activeand (finding.verifiedornotisenforced) and (finding.numerical_severity<=jira_minimum_threshold)
1825
+
1826
+
1827
+
defget_qualified_findings(findings):
1828
+
"""Filters findings to return only findings qualified to be pushed to JIRA, i.e. active, verified (unless not enforced) and severity is above the threshold"""
"""Filters findings to return only findings not qualified to be pushed to JIRA, i.e. inactive, not-verified (unless not enforced) and severity is below the threshold"""
# TODO: JIRA only include active/verified findings above threshold
18
-
*Severity:* {{ finding_group.severity }}
16
+
Findings matching the Active,{% if system_settings.enforce_verified_statusor system_settings.enforce_verified_status_jira %} Verified{% endif %} and Severity criteria:
17
+
|| Severity || CVE || CWE || Component || Version || Title || Status ||{% for finding in finding_group.findings.all|jira_qualified_findings %}
Findings *not* matching the Active,{% if system_settings.enforce_verified_statusor system_settings.enforce_verified_status_jira %} Verified{% endif %} and Severity criteria:
21
+
|| Severity || CVE || CWE || Component || Version || Title || Status ||{% for finding in finding_group.findings.all|jira_non_qualified_findings %}
0 commit comments