-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
63 lines (50 loc) · 1.29 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Malicious Site</title>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
#checking{
background-color: #3399FF;
}
#malicious {
background-color: #FF3333;
}
#benign {
background-color: #33FF33;
}
</style>
</head>
<body>
<center><h1>Malicious Status</h1></center>
<div class="container mt-3 checking" style="width: 450px; display:block" id="checking">
<table class="table table-bordered" >
<thead>
<tr>
<th><center>Please wait while checking the malicious status...</center></th>
</tr>
</thead>
</table>
</div>
<div class="container mt-3 malicious" style="width: 450px; display:none" id="malicious">
<table class="table table-bordered" >
<thead>
<tr>
<th><center>Warning! Domain Appears to be Malicious!</center></th>
</tr>
</thead>
</table>
</div>
<div class="container mt-3 benign" style="width: 450px; display:none" id="benign">
<table class="table table-bordered" >
<thead>
<tr>
<th><center>Domain Appears to be Bening!</center></th>
</tr>
</thead>
</table>
</div>
</body>
<script src="script.js"></script>
</html>