mirror of https://github.com/CIRCL/lookyloo
139 lines
4.1 KiB
HTML
139 lines
4.1 KiB
HTML
{% extends "main.html" %}
|
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
{% from "macros.html" import shorten_string %}
|
|
|
|
{% block title %}Lookyloo{% endblock %}
|
|
|
|
{% block card %}
|
|
<meta property="og:title" content="Lookyloo" />
|
|
<meta property="og:type" content="website"/>
|
|
<meta
|
|
property="og:description"
|
|
content="Lookyloo captures websites and let you investigate them."
|
|
/>
|
|
<meta
|
|
property="og:image"
|
|
content="https://{{public_domain}}{{ url_for('static', filename='lookyloo.jpeg') }}"
|
|
/>
|
|
<meta
|
|
property="og:url"
|
|
content="https://{{public_domain}}"
|
|
/>
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script type="text/javascript" nonce="{{ csp_nonce() }}">
|
|
$(document).ready(function () {
|
|
$('#table').DataTable( {
|
|
order: [[ 1, "desc" ]],
|
|
pageLength: 50,
|
|
orderable: false,
|
|
columns: [
|
|
{ width: '40%' },
|
|
{ width: '20%', render: DataTable.render.datetime_with_tz()},
|
|
{ width: '40%' }
|
|
],
|
|
} );
|
|
});
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}"
|
|
{{get_sri('static', 'index.css')}}
|
|
crossorigin="anonymous">
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="corner-ribbon top-left sticky white shadow">
|
|
<a href="https://www.lookyloo.eu/docs/main/index.html">Documentation</a>
|
|
</div>
|
|
<div class="corner-ribbon bottom-left sticky white shadow">
|
|
<a href="https://github.com/Lookyloo/lookyloo/releases/tag/v{{version}}">Changelog<br>(v{{version}})</a>
|
|
</div>
|
|
{% if show_project_page %}
|
|
<div class="corner-ribbon top-right sticky white shadow">
|
|
<a href="https://github.com/Lookyloo">Project page</a>
|
|
</div>
|
|
{% endif %}
|
|
<center>
|
|
<a href="{{ url_for('capture_web') }}">
|
|
<img src="{{ url_for('static', filename='lookyloo.jpeg') }}"
|
|
alt="Lookyloo" width="200">
|
|
</a>
|
|
</center>
|
|
<center>
|
|
<h4>Web forensics tool</h4>
|
|
<br>
|
|
<a href="{{ url_for('capture_web') }}">
|
|
<button class="new-capture-button btn btn-primary">Start a new capture</button>
|
|
</a>
|
|
<a href="{{ url_for('submit_capture') }}">
|
|
<button class="new-capture-button btn btn-primary">Submit capture</button>
|
|
</a>
|
|
{% if current_user.is_authenticated and enable_takedown_form == true %}
|
|
<a href="{{ url_for('simple_capture') }}">
|
|
<button class="new-capture-button btn btn-primary">Takedown process</button>
|
|
</a>
|
|
{% endif %}
|
|
{% if current_user.is_authenticated %}
|
|
<br>
|
|
<p class="lead">
|
|
You are logged-in as <strong>{{ current_user.id }}</strong>,
|
|
{% if show_hidden == false %}
|
|
and you can check the <a href="{{ url_for('index_hidden') }}">hidden</a> captures.
|
|
{% else %}
|
|
and you're looking at the hidden captures. Go back to the <a href="{{ url_for('index') }}">public</a> captures.
|
|
{% endif %}
|
|
<p>
|
|
{% endif %}
|
|
<br>
|
|
{{ render_messages(container=True, dismissible=True) }}
|
|
</center>
|
|
|
|
<div class="table-responsive">
|
|
<table id="table" class="table" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Page</th>
|
|
<th>Timestamp</th>
|
|
<th>Redirects</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for uuid, page_title, datetime, url, redirects in titles %}
|
|
<tr>
|
|
<td data-search="{{ page_title }} {{ url }}">
|
|
<p title="{{ page_title }}"><a href="{{ url_for('tree', tree_uuid=uuid) }}">{{ page_title }}</a></p>
|
|
{{ shorten_string(url, 50, with_title=True) }}
|
|
</td>
|
|
<td>{{ datetime }}</td>
|
|
<td>
|
|
{% if redirects %}
|
|
{% for r in redirects %}
|
|
<p title="{{ r }}">
|
|
{% if loop.previtem %}
|
|
{{ (" " * (loop.index *2) )|safe }}↪ {{ shorten_string(r, 50) }}
|
|
{%else%}
|
|
{{ shorten_string(r, 50) }}
|
|
{%endif%}
|
|
</p>
|
|
{% endfor %}
|
|
<a style="float: right;" href="{{ url_for('redirects', tree_uuid=uuid) }}">Download redirects</a>
|
|
{% else%}
|
|
No redirect
|
|
{%endif%}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|