summaryrefslogtreecommitdiff
path: root/security/index.html
blob: 5967534a1e4bf7dd1e7b1febbeafc08c0f11dd7e (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
---
layout: page
title: Security
permalink: /security/
categories: [ _nav ]
---
<table class="table">
    <thead>
        <tr class="text-nowrap">
            <th>External links</th>
	    <th>Exploitable by</th>
	    <th>Affected versions</th>
	    <th>Fixed in version</th>
	    <th>Release date</th>
	    <th>Git commit</th>
	    <th>Credit</th>
        </tr>
    </thead>
    <tbody>
{% assign items = site.data.security | sort %}
{% for item in items reversed %}
    {% assign name = item[0] %}
    {% assign values = item[1] %}
        <tr>
	    <td class="text-nowrap">
	        {% for link in values.external_links %}
		<div><a href="{{ link.url }}">{{ link.id }}</a></div>
	        {% endfor %}
	    </td>
	    <td>{{ values.exploitable_by }}</td>
	    <td>{{ values.affected_versions }}</td>
	    <td>{{ values.fixed_version }}</td>
	    <td class="text-nowrap">{{ values.release_date }}</td>
	    <td><a href="https://github.com/irssi/{% if values.repo %}{{ values.repo }}{% else %}irssi{% endif %}/commit/{{ values.git_commit }}">{{ values.git_commit | truncate: 8, "" }}</a></td>
	    <td>{{ values.credit }}</td>
        </tr>
{% endfor %}
    </tbody>
</table>