39 lines
821 B
HTML
39 lines
821 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<h2>Browse Collected Dark Web Pages</h2>
|
|
<div style = "height:10px"></div>
|
|
|
|
<p>
|
|
On this page you can view the content of collected dark web pages in pure ASCII text,
|
|
i.e. non-formatted data represented as printable characters.
|
|
<div id='chart' class='chart'”></div>
|
|
</p>
|
|
|
|
<!--- Loop through database query response -->
|
|
{% for ci in web_page %}
|
|
<hr>
|
|
|
|
<p><b>Onion URL: </b> {{ ci[1] }} </p>
|
|
<p><b>SHA256:</b> {{ ci[2] }} </p>
|
|
<div>
|
|
<div class="alert alert-dark bg-light">
|
|
<pre>
|
|
<code class="text-dark">
|
|
{{ ci[0] }}
|
|
</code>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<p><b>Screenshot</b> </p>
|
|
|
|
<img src="static/img/PDTOR_Logo_YELLOW.png"></img>
|
|
|
|
{% endfor %}
|
|
<!--- End of database query response --->
|
|
|
|
|
|
{% endblock %}
|