2024-09-04 16:30:33 +02:00
|
|
|
{% if from_popup %}
|
2023-07-21 15:48:20 +02:00
|
|
|
{% extends "main.html" %}
|
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
{% block title %}{{ hhh }}{% endblock %}
|
2024-09-04 16:30:33 +02:00
|
|
|
{%endif%}
|
|
|
|
|
2023-07-21 15:48:20 +02:00
|
|
|
{% block content %}
|
2024-09-04 16:30:33 +02:00
|
|
|
{% if from_popup %}
|
2024-12-05 16:44:29 +01:00
|
|
|
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
|
2024-09-04 16:30:33 +02:00
|
|
|
{%endif%}
|
2024-12-05 16:44:29 +01:00
|
|
|
|
|
|
|
<center>
|
|
|
|
<h2>{{ hhh }}</h2>
|
|
|
|
</center>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table id="table" class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">Name</th>
|
|
|
|
<th scope="col">Value sample</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{%for name, value in headers%}
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{{name}}</th>
|
|
|
|
<td>{{value}}</td>
|
|
|
|
</tr>
|
|
|
|
{%endfor%}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<p>The same HTTP Headers Hash was seen in these captures:</p>
|
|
|
|
<ul>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table id="HHHDetailsTable" class="table" data-hhh="{{hhh}}">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Capture Time</th>
|
|
|
|
<th>Capture Title</th>
|
|
|
|
<th>URL</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</ul>
|
2023-07-21 15:48:20 +02:00
|
|
|
{% endblock %}
|