forked from bl4de/security-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
74 lines (62 loc) · 1.57 KB
/
Copy pathtemplate.html
File metadata and controls
74 lines (62 loc) · 1.57 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<meta charset="utf-8" />
<title>This is the output from Sword</title>
<style>
* {
font-family: verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
color: #111;
}
section {
margin: 10px 12px;
padding: 0px 0px 10px 0px;
border: 2px solid #333;
border-radius: 3px;
background-color: #fafafa;
}
ul {
list-style-type: none;
}
.section-header {
width: 100%;
margin: 0 0 20px 0;
background-color: #444;
}
.section-content {
padding: 10px;
}
.section-header h4 {
color: #efefef;
margin: 2px 0 0 18px;
line-height: 22px;
}
.section-header h4 strong {
color: #fefafa;
font-size:16px;
}
</style>
</head>
<body>
<section>
<div class="section-header">
<h4>Subdomains discovery - discovered <strong>#DOMAIN#</strong> subdomains</h4>
</div>
<div class="section-content">
<ul>
#sublist3r_output#
</ul>
</div>
</section>
<section>
<div class="section-header">
<h4>HTTP servers - list of found running HTTP server(s)</h4>
</div>
<div class="section-content">
<ul>
#denumerator_output#
</ul>
</div>
</section>
</body>
</html>