mirror of https://github.com/CIRCL/lookyloo
388 lines
14 KiB
HTML
388 lines
14 KiB
HTML
{% extends "main.html" %}
|
||
|
||
{% from 'bootstrap/utils.html' import render_messages %}
|
||
{% from "macros.html" import shorten_string %}
|
||
|
||
{% block title %}Tree{% endblock %}
|
||
|
||
{% block scripts %}
|
||
{{ super() }}
|
||
<script src='{{ url_for('static', filename='d3.v6.min.js') }}'></script>
|
||
<script src='{{ url_for('static', filename='tree.js') }}'></script>
|
||
|
||
<script>
|
||
$('#modulesModal').on('show.bs.modal', function(e) {
|
||
var button = $(e.relatedTarget);
|
||
var modal = $(this);
|
||
modal.find('.modal-body').load(button.data("remote"));
|
||
});
|
||
$('.modulesForceRefresh').on('click',function(){
|
||
$('.modal-body').load("{{ url_for('trigger_modules', tree_uuid=tree_uuid, force=True) }}",function(){
|
||
$('#modulesModal').modal({show:true});
|
||
});
|
||
});
|
||
</script>
|
||
|
||
<script>
|
||
$('#categoriesModal').on('show.bs.modal', function(e) {
|
||
var button = $(e.relatedTarget);
|
||
var modal = $(this);
|
||
modal.find('.modal-body').load(button.data("remote"));
|
||
});
|
||
$('#searchCategories').submit(function(event){
|
||
var query = $("#query").val();
|
||
$('.modal-body').load("{{ url_for('categories_capture', tree_uuid=tree_uuid) }}" + query, function() {
|
||
$('#categoriesModal').modal({show:true});
|
||
});
|
||
event.preventDefault();
|
||
});
|
||
</script>
|
||
|
||
<script>
|
||
$('#statsModal').on('show.bs.modal', function(e) {
|
||
var button = $(e.relatedTarget);
|
||
var modal = $(this);
|
||
modal.find('.modal-body').load(button.data("remote"));
|
||
});
|
||
</script>
|
||
|
||
{% if urlnode_uuid %}
|
||
<script>
|
||
history.scrollRestoration = "manual";
|
||
window.addEventListener('DOMContentLoaded', (event) => {
|
||
PermanentNodeHighlight('{{urlnode_uuid}}');
|
||
});
|
||
</script>
|
||
{% endif%}
|
||
|
||
{% if auto_trigger_modules %}
|
||
<script>
|
||
$.get("{{ url_for('trigger_modules', tree_uuid=tree_uuid) }}")
|
||
</script>
|
||
{% endif%}
|
||
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
{{super()}}
|
||
|
||
<script>
|
||
var treeUUID = "{{ tree_uuid }}";
|
||
var treeData = {{ tree_json | safe }};
|
||
</script>
|
||
|
||
{{ render_messages(container=True, dismissible=True) }}
|
||
|
||
<!-- Containers -->
|
||
|
||
<div id="menu_container" class="tree-panel-container">
|
||
<div id=menu>
|
||
<div class="menu_header">
|
||
<a href="{{ url_for('index') }}" title="Go back to index">
|
||
<img src="{{ url_for('static', filename='lookyloo.jpeg') }}" alt="Lookyloo icon" height="110">
|
||
</a>
|
||
</div>
|
||
<hr/>
|
||
<center>
|
||
<div style="display: inline">
|
||
<b>Menu</b>
|
||
</div>
|
||
<div style="display: inline;">
|
||
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#menu_content">
|
||
<span class="if-collapsed">
|
||
<img src="{{ url_for('static', filename='down.jpg') }}" alt="Maximize menu" height="25" width="25" title="Expand">
|
||
</span>
|
||
<span class="if-not-collapsed">
|
||
<img src="{{ url_for('static', filename='up.jpg') }}" alt="Minimize menu" height="25" width="25" title="Collapse">
|
||
</span>
|
||
</button>
|
||
</div>
|
||
</center>
|
||
<hr/>
|
||
<div id=menu_content class="collapse show">
|
||
<ul class="list-unstyled components">
|
||
<li>
|
||
<a href="{{ url_for('index') }}" role="button">Go back to index</a>
|
||
</li>
|
||
<li>
|
||
<a href="#modulesModal" data-remote="{{ url_for('trigger_modules', tree_uuid=tree_uuid, force=False) }}"
|
||
data-toggle="modal" data-target="#modulesModal" role="button">Show third party reports</a>
|
||
</li>
|
||
{% if enable_categorization %}
|
||
<li>
|
||
<a href="#categoriesModal" data-remote="{{ url_for('categories_capture', tree_uuid=tree_uuid) }}"
|
||
data-toggle="modal" data-target="#categoriesModal" role="button">Manage categories</a>
|
||
</li>
|
||
{% endif %}
|
||
<li>
|
||
<a href="#statsModal" data-remote="{{ url_for('stats', tree_uuid=tree_uuid) }}"
|
||
data-toggle="modal" data-target="#statsModal" role="button">Show Statistics</a>
|
||
</li>
|
||
{% if has_redirects %}
|
||
<li>
|
||
<a href="{{ url_for('redirects', tree_uuid=tree_uuid) }}" role="button">Download redirects</a>
|
||
</li>
|
||
{% endif %}
|
||
<li>
|
||
<a href="#/" role="button" onclick="UnbookmarkAllNodes();">Unbookmark all nodes</a>
|
||
</li>
|
||
<li>
|
||
<a href="{{ url_for('image', tree_uuid=tree_uuid) }}" role="button">Download screenshot</a>
|
||
</li>
|
||
<li>
|
||
<a href="#screenshotModal" data-toggle="modal" data-target="#screenshotModal" role="button">Show screenshot</a>
|
||
</li>
|
||
{% if enable_context_by_users %}
|
||
<li>
|
||
<a href="#/" role="button" onclick="MarkAsLegitimate('{{ tree_uuid }}');">Mark capture as legitimate</a>
|
||
</li>
|
||
{% endif %}
|
||
{% if enable_mail_notification %}
|
||
<li>
|
||
<a href="#emailModal" data-toggle="modal" data-target="#emailModal" role="button">Notify by mail</a>
|
||
</li>
|
||
{% endif %}
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="legend_container" class="tree-panel-container">
|
||
<div id=legend class="collapse show">
|
||
<center>
|
||
<div style="display: inline">
|
||
<b>Legend</b>
|
||
</div>
|
||
<div style="display: inline;">
|
||
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#legend">
|
||
<img src="{{ url_for('static', filename='down.jpg') }}" alt="Minimize legend" height="25" width="25" title="Collapse">
|
||
</button>
|
||
</div>
|
||
</center>
|
||
<hr/>
|
||
<img src="{{ url_for('static', filename='check.svg') }}"
|
||
alt="Legitimate Node" height="20" width="20"> Legit node<br>
|
||
|
||
<img src="{{ url_for('static', filename='bomb.svg') }}"
|
||
alt="Malicious Node" height="20" width="20"> Malicious node<br>
|
||
|
||
<img src="{{ url_for('static', filename='insecure.svg') }}"
|
||
alt="Insecure requests" height="20" width="20"> Insecure requests (HTTP)<br>
|
||
|
||
<img src="{{ url_for('static', filename='empty.svg') }}"
|
||
alt="Empty responses" height="20" width="20"> Empty responses<br>
|
||
|
||
<img src="{{ url_for('static', filename='javascript.png') }}"
|
||
alt="JavaScript" height="20" width="20"> Javascript<br>
|
||
|
||
<img src="{{ url_for('static', filename='cookie_received.png') }}"
|
||
alt="Cookie received" height="20" width="20"> Cookie received<br>
|
||
|
||
<img src="{{ url_for('static', filename='cookie_read.png') }}"
|
||
alt="Cookie read" height="20" width="20"> Cookie read<br>
|
||
|
||
<img src="{{ url_for('static', filename='redirect.png') }}"
|
||
alt="Redirect" height="20" width="20"> Redirect<br>
|
||
|
||
<img src="{{ url_for('static', filename='font.png') }}"
|
||
alt="Font" height="20" width="20"> Font<br>
|
||
|
||
<img src="{{ url_for('static', filename='html.png') }}"
|
||
alt="HTML" height="20" width="20"> HTML<br>
|
||
|
||
<img src="{{ url_for('static', filename='json.png') }}"
|
||
alt="JSON" height="20" width="20"> JSON<br>
|
||
|
||
<img src="{{ url_for('static', filename='css.png') }}"
|
||
alt="CSS" height="20" width="20"> CSS<br>
|
||
|
||
<img src="{{ url_for('static', filename='exe.png') }}"
|
||
alt="EXE" height="20" width="20"> EXE<br>
|
||
|
||
<img src="{{ url_for('static', filename='img.png') }}"
|
||
alt="Image" height="20" width="20"> Image<br>
|
||
|
||
<img src="{{ url_for('static', filename='video.png') }}"
|
||
alt="Video" height="20" width="20"> Video<br>
|
||
|
||
<img src="{{ url_for('static', filename='ifr.png') }}"
|
||
alt="iFrame" height="20" width="20"> iFrame<br>
|
||
|
||
<img src="{{ url_for('static', filename='wtf.png') }}"
|
||
alt="Content type not set/unknown" height="20" width="20"> Content type not set/unknown<br>
|
||
</div>
|
||
<div style="width: 70px; float: right;">
|
||
<center>
|
||
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#legend">
|
||
<img src="{{ url_for('static', filename='up.jpg') }}" alt="Maximize legend" height="40" width="40" title="Expand">
|
||
<b>Legend</b>
|
||
</button>
|
||
</center>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="tree-details_container" class="tree-panel-container">
|
||
<div id=tree-details class="collapse show">
|
||
<div>
|
||
<center>
|
||
<div style="display: inline">
|
||
<b>Tree details</b>
|
||
</div>
|
||
<div style="display: inline;">
|
||
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#tree-details">
|
||
<img src="{{ url_for('static', filename='up.jpg') }}"
|
||
alt="Minimize tree details" height="25" width="25" title="Collapse">
|
||
</button>
|
||
</div>
|
||
</center>
|
||
</div>
|
||
<hr/>
|
||
<b>Root URL</b>: {{ shorten_string(root_url, 150) }}
|
||
<br>
|
||
<b>Start time</b>: {{ start_time }}<br>
|
||
<b>User Agent</b>: {{ user_agent }}<br>
|
||
{% if meta %}
|
||
{% for k, v in meta.items() if k not in ['user_agent'] %}
|
||
<b>{{k.title()}}</b>: {{ v }}<br>
|
||
{% endfor %}
|
||
{%endif%}
|
||
</div>
|
||
<div style="width: 70px; float: right;">
|
||
<center>
|
||
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#tree-details">
|
||
<img src="{{ url_for('static', filename='down.jpg') }}" alt="Minimize tree details" height="40" width="40" title="Expand">
|
||
<b>Tree details</b>
|
||
</button>
|
||
</center>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Modals -->
|
||
|
||
<div class="modal fade" id="statsModal" tabindex="-1" role="dialog">
|
||
<div class="modal-dialog modal-xl" role="document">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title" id="statsModalLabel">Statistics</h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
... loading statistics ...
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="modal fade" id="screenshotModal" tabindex="-1" role="dialog">
|
||
<div class="modal-dialog modal-xl" role="document">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title" id="screenshotModalLabel">Screenshot</h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<center>
|
||
{% if blur_screenshot %}
|
||
<button type="button" class="btn btn-primary" onclick="$('#screenshot').removeClass('blur')"> Unblur screenshot</button>
|
||
</br>
|
||
</hr>
|
||
</br>
|
||
{% endif %}
|
||
<img src="{{ url_for('image', tree_uuid=tree_uuid) }}" class="img-fluid {{ 'blur' if blur_screenshot else '' }}" id="screenshot"/>
|
||
</center>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="modal fade" id="modulesModal" tabindex="-1" role="dialog">
|
||
<div class="modal-dialog modal-xl" role="document">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title" id="modulesModalLabel">Reports from 3rd party services</h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
... loading results from 3rd party modules ...
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-success modulesForceRefresh">Re-run all modules</button>
|
||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{% if enable_context_by_users %}
|
||
<div class="modal fade" id="categoriesModal" tabindex="-1" role="dialog">
|
||
<div class="modal-dialog modal-xl" role="document">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title" id="categoriesModalLabel">Categorize the capture</h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
... loading the categorization options ...
|
||
</div>
|
||
<p>
|
||
<form id=searchCategories>
|
||
<label for="query">Category to search</label>
|
||
<input type="text" class="form-control" name="query" id="query" placeholder="Query">
|
||
<button type="submit" class="btn btn-success">Search</button>
|
||
</form>
|
||
</p>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
|
||
{% if enable_mail_notification %}
|
||
<div class="modal fade" id="emailModal" tabindex="-1" role="dialog">
|
||
<div class="modal-dialog modal-xl" role="document">
|
||
<form role="form" action="{{ tree_uuid }}/send_mail" method=post enctype=multipart/form-data>
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title" id="emailModalLabel">Notify by email</h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<p>A notification of this capture will be sent to the owners of this Lookyloo instance. They may or may not act on it.</p>
|
||
<div class="form-group">
|
||
<label for="email">Email address - used to get back in touch with you if needed (optional)</label>
|
||
<input type="email" class="form-control" name="email" id="email" placeholder="Enter email">
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="comment">Please write a comment (optional)</label>
|
||
<textarea class="form-control" name="comment" id=comment rows="3"></textarea>
|
||
</div>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="submit" class="btn btn-success">Send email</button>
|
||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
{% endblock content %}
|