aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/triage_cves.html
blob: ddef1501e47ff9a1a4f5232f78a56d2c92a8f77e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{% extends "base.html" %}

{% load static %}
{% load projecttags %}
{% load humanize %}

{% block title %} Export Report {% endblock %}

{% block pagecontent %}
  <div class="row">
		<div class="col-md-7" style="padding-left: 50px;">
		  <h1>Triage CVE's</h1>
		</div>
  </div>

  <form method="POST">{% csrf_token %}
	<h2> Triage CVEs </h2>
	<ul>
		<li>Select and triage a range of similar CVE's via scoring, string matches, and filters</li>
		<li>You can then (a) review/sample them, (b) select all or some, and then (c) click a button to bulk assign them to a new status</li>
		<li>This bulk tool is generally used for new incoming CVEs, but can also be used to review CVEs under investigation or indeed to re-evaluate any set of CVEs</li>
	</ul>
	<p>
	<!--<a class="btn btn-info btn-lg" href="{% url 'select-cves' %}">Incoming CVE Triage Page</a>-->
	<input type="submit" id="submit-tirage-cves" class="btn btn-primary btn-lg" value="CVE Triage Page"/>
    <i>Select CVE status filter</i> =
      <select name="cve-select-status" id="select-cve-status-filter">
      <option value="0">Historical</option>
      <option value="1" selected>New</option>
      <option value="2">New-Reserved</option>
      <option value="3">Investigate</option>
      <option value="4">Vulnerable</option>
      <option value="5">Not Vulnerable</option>
      </select>
	<p>
  </form>

  <h2> Triage Filtering</h2>
  <ul>
	<li>A collection of filter keywords have been extracted from the last 10 years of CVE triaging</li>
	<li>Each CVE is provided a list of matching positive keywords and matching negative keywords</li>
	<li>Each CVE is also given a score to represent the balance of positive versus negative keywords</li>
	<li>Here is keyword management page:</li>
  </ul>
  <a class="btn btn-info btn-lg" href="{% url 'package-filters' %}">Manage Keyword Filters</a></td> <!--'keywords'-->

{% endblock %}