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>
|
2023-07-24 16:00:55 +02:00
|
|
|
<th scope="col">Name</th>
|
|
|
|
<th scope="col">Value sample</th>
|
2023-07-24 14:53:00 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{%for name, value in headers%}
|
|
|
|
<tr>
|
2023-07-24 16:00:55 +02:00
|
|
|
<th scope="row">{{name}}</th>
|
2023-07-24 14:53:00 +02:00
|
|
|
<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 %}
|