new: Add cookies templates

pull/78/head
Raphaël Vinot 2020-06-15 16:17:09 +02:00
parent 67b41ca8fb
commit cfec5d8d37
2 changed files with 109 additions and 0 deletions

View File

@ -0,0 +1,61 @@
{% extends "main.html" %}
{% from 'bootstrap/utils.html' import render_messages %}
{% block title %}{{ cookie_name }}{% endblock %}
{% block scripts %}
{{ super() }}
<script src='{{ url_for('static', filename='datatables.min.js') }}'></script>
<script type="text/javascript">
$('#table').DataTable( {
"order": [[ 1, "desc" ]],
"pageLength": 500
});
</script>
{% endblock %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='datatables.min.css') }}">
{% endblock %}
{% block content %}
<center><h2>{{ cookie_name }}</h4></center>
<div class="table-responsive">
<table id="table" class="table" style="width:96%">
<thead>
<tr>
<th>Domain name</th>
<th>Frequency</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{% for domain, freq, values in domains %}
<tr>
<td>
{{ domain }}
</td>
<td>{{ freq }}</td>
<td>
<ul>
{% for value, freq in values %}
<li>{{ value }} - {{ freq }}</li>
{% endfor %}
</ul>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<p>A cookie with that name was seen in these captures:</p>
<ul>
{% for capture in captures %}
<li><a href="{{ url_for('tree', tree_uuid=capture['uuid']) }}">{{ capture['title'] }}</a></li>
{% endfor %}
</ul>
{% endblock %}

View File

@ -0,0 +1,48 @@
{% extends "main.html" %}
{% from 'bootstrap/utils.html' import render_messages %}
{% block title %}Cookies lookup{% endblock %}
{% block scripts %}
{{ super() }}
<script src='{{ url_for('static', filename='datatables.min.js') }}'></script>
<script type="text/javascript">
$('#table').DataTable( {
"order": [[ 1, "desc" ]],
"pageLength": 500
});
</script>
{% endblock %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='datatables.min.css') }}">
{% endblock %}
{% block content %}
<div class="table-responsive">
<table id="table" class="table" style="width:96%">
<thead>
<tr>
<th>Cookie name</th>
<th>Frequency</th>
<th>Number unique domains</th>
</tr>
</thead>
<tbody>
{% for name, freq, number_domains in cookies_names %}
<tr>
<td>
<a href="{{ url_for('cookies_name_detail', cookie_name=name) }}">{{ name }}</a>
</td>
<td>{{ freq }}</td>
<td>{{ number_domains }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}