-
Notifications
You must be signed in to change notification settings - Fork 16
/
popup.html
98 lines (98 loc) · 2.54 KB
/
popup.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<!-- (c) Lauritz Holtmann -->
<!-- https://github.com/lauritzh/dead-domain-discovery -->
<html>
<head>
<title>Dead Domain Discovery v0.5</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
min-width: 250px;
color: #333;
}
h1 {
font-size: 18px;
margin-bottom: 10px;
color: #2c3e50;
}
p {
font-size: 12px;
margin: 0 0 20px;
color: #7f8c8d;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 5px 0;
}
a {
text-decoration: none;
color: #3498db;
font-size: 14px;
}
a:hover {
text-decoration: underline;
}
.footer {
font-size: 12px;
margin-top: 20px;
color: #95a5a6;
}
.stats {
font-size: 14px;
margin: 10px 0;
}
.button {
margin: 5px 0;
padding: 5px 10px;
background-color: #3498db;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
}
.button:hover {
background-color: #2980b9;
}
details:has(#findings) {
padding-top: 15px;
padding-bottom: 15px;
font-weight: bold;
}
details:has(#findings) li {
font-weight:normal;
}
</style>
</head>
<body>
<h1>Dead Domain Discovery v0.7</h1>
<div class="stats">
<p id="domain-stats">Found 0 Dead Domains</p>
</div>
<button class="button" id="go-to-options">Go to options</button>
<button class="button" id="clear-findings">Clear Cached Domains</button>
<details>
<summary>Show recent findings</summary>
<ul id="findings">
</ul>
</details>
<p>
<a href="https://github.com/lauritzh/dead-domain-discovery" target="_blank">GitHub Repository</a>
</p>
<div class="footer">
<details>
<summary>© Lauritz Holtmann - I am open for collaboration :)</summary>
<ul>
<li><a href="https://hackerone.com/lauritz" target="_blank">H1: lauritz</a></li>
<li><a href="https://yeswehack.com/hunters/lauritz" target="_blank">YWH: lauritz</a></li>
<li><a href="https://app.intigriti.com/researcher/profile/_lauritz_" target="_blank">Intigriti: _lauritz_</a></li>
<li><a href="https://bugcrowd.com/lauritz" target="_blank">Bugcrowd: lauritz</a></li>
</ul>
</details>
</div>
<script src="popup.js"></script>
</body>
</html>