-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathhosts.tmpl.html
28 lines (28 loc) · 1.76 KB
/
hosts.tmpl.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
{{ define "content"}}
<!--<img class="wave-bg-general" src="/assets/img/background.png">-->
<div class="container" id="hostspage">
<div class="row mb-botpage">
<div class="col-lg-4 col-md-0"></div>
<div class="col-lg-12 col-md-0">
<h1 class="text-center mt-toppage mb-2"><span class="material-icons-outlined" style="font-size:xxx-large ">dns</span> DNS </h1>
<div class= "col-lg-12 col-md-12" style="text-align: right">
<a href="https://github.com/aau-network-security/haaukins/edit/master/svcs/amigo/resources/private/hosts.tmpl.html"><i class="fas fa-edit " aria-hidden="true"></i> Edit this page</a>
</div>
<div role="alert" class="alert alert-primary mt-3" style="text-align: center;">
<i class="fas fa-globe "></i> <strong>DNS Records</strong>
<p> Use following hosts information below to enable reverse DNS lookup when using nmap tool.</p>
<p> Given records can be appended to <b>/etc/hosts</b> file on virtual environment.</p>
<p> It can also be directly browsed from virtual environment. </p>
</div>
<div class="alert alert-warning mt-3" role="alert">
<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> If the gray area is empty, it means either challenges does not have domains or you have not assigned to any lab. Please be patient !
</div>
<div role="alert" class="alert alert-secondary mt-3" style="text-align: center; overflow-y: scroll; height:400px;">
{{range .Hosts}}
<div><code>{{.IP}}</code> <code>{{.Domain}}</code> </div>
{{end}}
</div>
</div>
</div>
</div>
{{ end }}