-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.04 KB
/
index.html
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
---
layout: default
title: Living Off Security Tools
---
<h1><a href="{{site.url}}">Project-Lost</a></h1>
{% include home.html %}
<h2>Tags</h2>
<p class="tags">
{% for tag in site.data.tags %}
<a class="tag" data-tag="{{tag[0]}}" href="{{site.url}}?#{{ tag[0] }}" title="{{ tag[1].docs }}">
{{ tag[0] }}
</a>
{% endfor %}
<a class="reset" href="{{site.url}}?">Reset</a>
</p>
<table class="lotp">
<thead>
<th>Tool</th>
<th>Tags</th>
</thead>
<tbody>
{% for tool in site.tool %}
<tr data-tags="{% for tag in tool.tags %}{{tag}} {% endfor %}">
<td><a href="{{site.url}}{{ tool.url }}">{{ tool.title }}</a></td>
<td>
{% for tag in tool.tags %}
<a class="tag" data-tag="{{tag}}" href="{{site.url}}?#{{ tag }}">{{ tag }}</a>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
<script src="{{site.url}}/assets/js/search.js"></script>