mirror of https://github.com/CIRCL/lookyloo
54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
{% from "macros.html" import shorten_string %}
|
|
|
|
{% if from_popup %}
|
|
{% extends "main.html" %}
|
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
{% block title %}Favicon{% endblock %}
|
|
|
|
{%endif%}
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if from_popup %}
|
|
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
|
|
{%endif%}
|
|
|
|
|
|
<center>
|
|
<img src="data:{{mimetype}};base64,{{ b64_favicon }}" style="width:32px;height:32px;"/>
|
|
<h5>Shodan MMH3 Hash: <a href="https://www.shodan.io/search?query=http.favicon.hash%3A{{ mmh3_shodan }}" target="_blank">{{ mmh3_shodan }}</a></h5>
|
|
</center>
|
|
<table id="faviconDetailsTable" class="table table-striped" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Capture Time</th>
|
|
<th>Capture Title</th>
|
|
<th>Landing page</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for capture_uuid, title, landing_page, capture_time in captures %}
|
|
<tr>
|
|
<td>
|
|
{{capture_time}}
|
|
</td>
|
|
<td>
|
|
<a href="{{ url_for('tree', tree_uuid=capture_uuid) }}">
|
|
{{ title }}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<span class="d-inline-block text-break" style="max-width: 400px;">
|
|
{{ landing_page }}
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|