-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsummary.html
35 lines (32 loc) · 942 Bytes
/
summary.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script>
function get(url){
$('#loadingDiv').show();
$('#msg').html("")
$.get(url, function(data) {
$('#msg').html(data);
$('#loadingDiv').hide();
}).done(function(data) {
}).fail(function(data) {
alert("Failed:" + JSON.serialize(data));
})
}
var loading = $('#loadingDiv').hide();
$(document).ready(function() {
$('#loadingDiv').hide();
});
</script>
<div class="container">
<div>
<h4 class="display-4">Evidence Summary</h4>
<hr/>
<h2>Dual-Use apps</h2>
<div>
<i>Snapchat (hardcoded)</i>
{% for app in app_summaries %}
<div>Recognized: {{app["recognized"]}}</div>
<div>Installed: {{app["installed"]}}</div>
<div>Who installed: {{app["installer"]}}</div>
{% endfor %}
</div>
</div>
</div>