aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/management.html
blob: 558b7a226465e7b85ab29b9558653bc3f1ef97b1 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{% extends "base.html" %}

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

{% block title %} Manage Resources {% endblock %}
{% block pagecontent %}
      <div class="row">
            <div class="col-md-7" style="padding-left: 50px;">
              <h1>Management</h1>
            </div>
      </div>
      <div class="row">
        <div class="jumbotron well-transparent">

            <div class="col-md-6">
				<div>
				<table class="table table-striped table-condensed" data-testid="landing-hyperlinks-table">
					<thead>
						<tr>
							<th>Action</th>
							<th>Description</th>
						</tr>
					</thead>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'triage_cves' %}">Triage CVE's</a></td>
						<td>Triage the CVE's</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'manage_notifications' %}">Pending notifications</a></td>
						<td>Triage the pending notifications</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'manage_report' %}">Summary Report</a></td>
						<td>Report on the over all response system status</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'publish' %}">Publish Request</a></td>
						<td>Process the items that are ready to be published from SRTool</td>
					</tr>

					{% if request.user.is_admin %}
					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'users' %}">Manage Users</a></td>
						<td>Add, edit, and remove users</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'sources' %}">Manage Sources</a></td>
						<td>Manage source list, perform manual pulls</td>
					</tr>
					{% endif %}

				</table>
				</div>

            </div>

		  <div class="col-md-5">
			<b>Quick Info</b>
			<div class="well">
				<dl class="dl-horizontal">
					<dt>CVE's: Total Count =</dt>
					<dd>
						<a href="{% url 'cves' %}"> {{cve_total}} </a>
					</dd>
					<dt>Pending triaged =</dt>
					<dd>
						<a href="{% url 'cves' %}?limit=25&page=1&orderby=name&filter=is_status:new&default_orderby=name&filter_value=on&"> {{cve_new}} </a>
					</dd>
					<dt>Investigate =</dt>
					<dd>
						<a href="{% url 'cves' %}?limit=25&page=1&orderby=name&filter=is_status:new&default_orderby=name&filter_value=on&"> {{cve_investigate}} </a>
					</dd>
					<dt>Vulnerable =</dt>
					<dd>
						<a href="{% url 'cves' %}?limit=25&page=1&orderby=name&filter=is_status:new&default_orderby=name&filter_value=on&"> {{cve_vulnerable}} </a>
					</dd>
					<dt>Not Vulnerable =</dt>
					<dd>
						<a href="{% url 'cves' %}?limit=25&page=1&orderby=name&filter=is_status:new&default_orderby=name&filter_value=on&"> {{cve_not_vulnerable}} </a>
					</dd>
					<dt>Vulnerabilities: Total Count =</dt>
					<dd>
						<a href="{% url 'vulnerabilities' %}"> {{vulnerability_total}} </a>
					</dd>
					<dt>Open =</dt>
					<dd>
						<a href="{% url 'vulnerabilities' %}?limit=25&page=1&orderby=name&filter=is_outcome:open&default_orderby=name&filter_value=on&"> {{vulnerability_open}} </a>
					</dd>
					<dt>High active =</dt>
					<dd>
						<a href="{% url 'vulnerabilities' %}?limit=25&page=1&orderby=name&filter=is_severity:high&default_orderby=name&filter_value=on&" %}> {{vulnerability_high}} </a>
					</dd>
					<dt>Medium active =</dt>
					<dd>
						<a href="{% url 'vulnerabilities' %}?limit=25&page=1&orderby=name&filter=is_severity:medium&default_orderby=name&filter_value=on&" %}> {{vulnerability_medium}} </a>
					</dd>
					<dt>Low active =</dt>
					<dd>
						<a href="{% url 'vulnerabilities' %}?limit=25&page=1&orderby=name&filter=is_severity:low&default_orderby=name&filter_value=on&" %}> {{vulnerability_low}} </a>
					</dd>

					<dt>Investigations: Total Count =</dt>
					<dd>
						<a href="{% url 'investigations' %}" %}> {{investigation_total}} </a>
					</dd>
					<dt>Open =</dt>
					<dd>
						<a href="{% url 'investigations' %}?limit=25&page=1&orderby=name&filter=is_outcome:open&default_orderby=name&filter_value=on&" %}> {{investigation_open}} </a>
					</dd>
					<dt>High active =</dt>
					<dd>
						<a href="{% url 'investigations' %}?limit=25&page=1&orderby=name&filter=is_severity:high&default_orderby=name&filter_value=on&" %}> {{investigation_high}} </a>
					</dd>
					<dt>Medium active =</dt>
					<dd>
						<a href="{% url 'investigations' %}?limit=25&page=1&orderby=name&filter=is_severity:medium&default_orderby=name&filter_value=on&" %}> {{investigation_medium}} </a>
					</dd>
					<dt>Low active =</dt>
					<dd>
						<a href="{% url 'investigations' %}?limit=25&page=1&orderby=name&filter=is_severity:low&default_orderby=name&filter_value=on&" %}> {{investigation_low}} </a>
					</dd>

					<dt>Defects: Total Count =</dt>
					<dd>
						<a href="{% url 'defects' %}" %}> {{defect_total}} </a>
					</dd>
					<dt>Open =</dt>
					<dd>
						<a href="{% url 'defects' %}?limit=25&page=1&orderby=-priority&filter=is_status:open&default_orderby=name&filter_value=on&" %}> {{defect_open}} </a>
					</dd>
					<dt>InProgress =</dt>
					<dd>
						<a href="{% url 'defects' %}?limit=25&page=1&orderby=-priority&filter=is_status:in_progress&default_orderby=name&filter_value=on&" %}> {{defect_inprogress}} </a>
					</dd>
					<dt>P1 active =</dt>
					<dd>
						<a href="{% url 'defects' %}?limit=25&page=1&orderby=-priority&filter=is_status:in_progress&default_orderby=name&filter_value=on&" %}> {{defect_p1}} </a>
					</dd>
					<dt>P2 active =</dt>
					<dd>
						<a href="{% url 'defects' %}?limit=25&page=1&orderby=-priority&filter=is_status:in_progress&default_orderby=name&filter_value=on&" %}> {{defect_p2}} </a>
					</dd>

					<dt>Packages: Affected=</dt>
					<dd>
						<a href="{% url 'cpes_srtool' %}" %}> {{package_total}} </a>
					</dd>

			   </dl>
			</div>
		  </div>

        </div>
      </div>

{% endblock %}