-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathweb_warning.html
More file actions
108 lines (98 loc) · 3.31 KB
/
web_warning.html
File metadata and controls
108 lines (98 loc) · 3.31 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blocked Website</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #202124;
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
text-align: center;
max-width: 600px;
width: 100%;
}
.warning-icon {
font-size: 60px;
margin-bottom: 20px;
}
h1 {
font-size: 26px;
margin: 0 0 15px 0;
color: #ff0000;
}
p {
margin: 10px 0;
}
a {
color: #1e88e5;
text-decoration: none;
}
.button {
background-color: #1e88e5;
color: white;
border: none;
border-radius: 5px;
padding: 8px 18px;
cursor: pointer;
font-size: 16px;
margin: 5px;
display: inline-block;
text-align: center;
text-decoration: none;
}
.button:hover {
background-color: #1565c0;
}
.text-box {
background-color: #313335;
color: #e0e0e0;
border: 1px solid #606060;
border-radius: 5px;
padding: 20px;
margin: 20px auto;
font-size: 16px;
width: calc(100% - 40px);
box-sizing: border-box;
text-align: left;
line-height: 1.5;
}
.button-container {
display: flex;
justify-content: center;
margin-left: 290px;
}
.footer {
margin-top: 30px;
font-size: 12px;
color: #b0b0b0;
}
</style>
</head>
<body>
<div class="container">
<div class="warning-icon">⚠️</div>
<h1>This website is blocked due to suspicious.</h1>
<p>Contact your administrator for more information.</p>
<p><a href="mailto:[email protected]" id="emailLink">[email protected]</a></p>
<div class="text-box">
<h3>Warning: Potential Phishing Site Detected</h3>
The site you are attempting to access has been identified as potentially harmful. This may be a phishing attempt designed to steal your personal or financial information. Do not proceed to this site under any circumstances. Closing this tab immediately is strongly recommended to protect your sensitive data. Report this URL to your IT security team and run a full security scan on your device. Always verify the authenticity of websites before entering any personal information and ensure your security software is up-to-date.
</div>
<div class="button-container">
<a href="https://bing.com"class="button">Go Back</a>
<a href="https://www.cloudflare.com/learning/email-security/how-to-prevent-phishing/" class="button">More Information</a>
</div>
<p class="footer">Havox EDR SmartScreen</p>
</div>
</body>
</html>