-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
71 lines (71 loc) · 2.4 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-Frame-Options" content="DENY">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com; font-src 'self' https://cdnjs.cloudflare.com; img-src 'self' data:">
<meta http-equiv="Feature-Policy" content="camera 'none'; geolocation 'none'; microphone 'none'">
<title>Page Not Found - GHOST Sec</title>
<link rel="stylesheet" href="/css/flexbox-styles.css">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #f5f5f5;
}
.error-container {
text-align: center;
padding: 2rem;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
max-width: 500px;
width: 90%;
}
h1 {
font-size: 4rem;
margin: 0;
color: #e74c3c;
}
p {
font-size: 1.2rem;
color: #555;
margin: 1rem 0;
}
a {
display: inline-block;
padding: 0.8rem 1.5rem;
background: #3498db;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background 0.3s;
}
a:hover {
background: #2980b9;
}
</style>
</head>
<body>
<div class="error-container">
<h1>404</h1>
<p>The page you're looking for could not be found.</p>
<a href="/">Return to Homepage</a>
</div>
<script>
// Remove Permissions-Policy header
const meta = document.createElement('meta');
meta.httpEquiv = 'Feature-Policy';
meta.content = "camera 'none'; geolocation 'none'; microphone 'none'";
document.head.appendChild(meta);
</script>
</body>
</html>