forked from L-Andrade/LFA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report_template_files.html
62 lines (59 loc) · 2.36 KB
/
report_template_files.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>LFA Report</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="#">Log Forensics for Autopsy</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="#" id="programslink">Reported programs</a></li>
<li><a href="#" id="loggedipslink">Logged IPs</a></li>
<li><a href="#" id="customregexslink">Custom RegExs</a></li>
<li><a href="#" id="customwsulink">Windows Startup</a></li>
<li class="active"><a href="#" id="fileslink">All files <span class="sr-only">(current)</span></a></li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container-fluid">
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">List of reported programs</div>
<div class="panel-body">
<p id="tableinfo"></p>
</div>
<!-- Table -->
<table class="table" id="filestable">
<thead>
<tr>
<th>Size</th>
<th>Create date</th>
<th>Last modified</th>
<th>Last access</th>
<th>File path</th>
<th>File type</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div>
<p id="debug">
</p>
</div>
</div>
</body>
</html>