lookyloo/website/web/templates/hhh_details.html

55 lines
1.4 KiB
HTML
Raw Normal View History

2023-07-21 15:48:20 +02:00
{% extends "main.html" %}
{% from 'bootstrap5/utils.html' import render_messages %}
{% block title %}{{ hhh }}{% endblock %}
{% block content %}
<center>
<h2>{{ hhh }}</h2>
</center>
2023-07-24 14:53:00 +02:00
<div class="table-responsive">
<table id="table" class="table">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{%for name, value in headers%}
<tr>
<td>{{name}}</td>
<td>{{value}}</td>
</tr>
{%endfor%}
</tbody>
</table>
</div>
2023-07-21 15:48:20 +02:00
<p>The same HTTP Headers Hash was seen in these captures:</p>
<ul>
2023-07-24 14:53:00 +02:00
<div class="table-responsive">
<table id="table" class="table">
<thead>
<tr>
<th>Capture Title</th>
<th>URL matching the HHH</th>
</tr>
</thead>
<tbody>
{% for capture_uuid, hostnode_uuid, url, title in captures %}
<tr>
<td>
<a href="{{ url_for('tree', tree_uuid=capture_uuid, node_uuid=hostnode_uuid) }}">
{{ title }}
</a>
</td>
<td>{{url}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
2023-07-21 15:48:20 +02:00
</ul>
{% endblock %}