mirror of https://github.com/CIRCL/lookyloo
new: Link to HHH from hostnode popup
parent
0604ccfdee
commit
f7e5e3e867
|
@ -12,14 +12,14 @@
|
||||||
<table id="table" class="table">
|
<table id="table" class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th scope="col">Name</th>
|
||||||
<th>Value</th>
|
<th scope="col">Value sample</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{%for name, value in headers%}
|
{%for name, value in headers%}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{name}}</td>
|
<th scope="row">{{name}}</th>
|
||||||
<td>{{value}}</td>
|
<td>{{value}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{%endfor%}
|
{%endfor%}
|
||||||
|
|
|
@ -293,6 +293,10 @@
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
{% if url['url_object'].hhhash %}
|
||||||
|
<button type="button" class="btn btn-sm btn-link" onclick="openURLInNewTab('{{ url_for('hhh_detail', hhh=url['url_object'].hhhash) }}')">See other captures with the same HTTP Headers Hash</button>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if enable_context_by_users %}
|
{% if enable_context_by_users %}
|
||||||
</br>
|
</br>
|
||||||
|
|
Loading…
Reference in New Issue