summaryrefslogtreecommitdiff
path: root/security/index.html
diff options
context:
space:
mode:
authorJoseph Bisch <joseph.bisch@gmail.com>2017-05-20 00:41:39 -0400
committerAilin Nemui <ailin@z30a.localdomain>2017-06-08 19:04:30 +0200
commit109494036a493424b4894a1715424e65cfe56eb6 (patch)
tree17b5a50d82a0a1b5e01fb9c6ed9df99640a2b036 /security/index.html
parent7f5a5a7f658a46d7cb2b6a817cecc1934da7c8c5 (diff)
downloadirssi.github.io-109494036a493424b4894a1715424e65cfe56eb6.zip
add security index page with table of issues
Diffstat (limited to 'security/index.html')
-rw-r--r--security/index.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/security/index.html b/security/index.html
new file mode 100644
index 0000000..3f0321e
--- /dev/null
+++ b/security/index.html
@@ -0,0 +1,41 @@
+---
+layout: page
+title: Security
+permalink: /security/
+categories: [ _nav ]
+---
+<table class="table">
+ <thead>
+ <tr>
+ <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>
+ <ul>
+ {% for link in values.external_links %}
+ <li><a href="{{ link.url }}">{{ link.id }}</a></li>
+ {% endfor %}
+ </ul>
+ </td>
+ <td>{{ values.exploitable_by }}</td>
+ <td>{{ values.affected_versions }}</td>
+ <td>{{ values.fixed_version }}</td>
+ <td>{{ 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 }}</a></td>
+ <td>{{ values.credit }}</td>
+ </tr>
+{% endfor %}
+ </tbody>
+</table>