aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/landing.html
blob: 67c61b1ec11af1a606868f948dc2972102fc3629 (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
{% extends "base.html" %}

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

{% block title %} Welcome to SRTool{% endblock %}
{% block pagecontent %}
      <div class="row">
            <div class="col-md-7" style="padding-left: 50px;">
              <h1>Security Response Tool (SRTool)</h1>
              <p>A web interface to SRTool CVE investigations</p>
            </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>Table</th>
							<th>Description</th>
						</tr>
					</thead>

					{% if request.user.is_creator %}
					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'manage' %}">Management</a></td>
						<td>Triage CVE's, Create Vulnerabilities, Manage Users</td>
					</tr>
					{% endif %}

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'cves' %}">CVE's</a></td>
						<td>Common Vulnerability Enumeration</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'vulnerabilities' %}">Vulnerabilities</a></td>
						<td>SRTool Vulnerabilities (company level)</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'investigations' %}">Investigations</a></td>
						<td>SRTool Investigations (product level)</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'defects' %}">Defects</a></td>
						<td>SRTool Defects</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'cpes_srtool' %}">Package CPE's</a></td>
						<td>Affected packages (Common Platform Enumeration)</td>
					</tr>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'cwes' %}">CWE's</a></td>
						<td>Common Weakness Enumeration</td>
					</tr>

					<tr>
						<td> <a class="btn btn-info btn-lg" href="{% url 'products' %}">Products</a></td>
						<td>SRTool Products<td>
					</tr>

				</table>
				</div>

            </div>

            <div class="col-md-6">
			  <div align="center"><a class="btn btn-primary btn-lg" href="{% url 'guided_tour' %}">Click here to take a Guided Tour!</a></div>
			  <p />
			  <p />
              <img alt="CVE preview" class="img-thumbnail" src="{% static 'img/cve_splash.png' %}"/>
            </div>

        </div>
      </div>

{% endblock %}