-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
executable file
·448 lines (435 loc) · 16.7 KB
/
404.html
File metadata and controls
executable file
·448 lines (435 loc) · 16.7 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>XposedOrNot: Page Not Found</title>
<link rel="dns-prefetch" href="cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="static.hotjar.com">
<meta http-equiv="refresh" content="30; URL=https://XposedOrNot.com" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="XposedOrNot - Page not found">
<meta name="author" content="Devanand Premkumar">
<link rel="icon" href="/favicon.ico" sizes="16x16 32x32 48x48 64x64 128x128 256x256" type="image/x-icon" />
<link rel="icon" href="/static/images/logos/logo.svg" type="image/svg+xml" />
<link rel="icon" href="/static/images/logos/logo-96x96.png" sizes="96x96" type="image/png" />
<link rel="icon" href="/static/images/logos/logo-32x32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="/static/images/logos/logo-192x192.png" sizes="192x192" type="image/png" />
<link rel="icon" href="/static/images/logos/logo-512x512.png" sizes="512x512" type="image/png" />
<link rel="apple-touch-icon" href="/static/images/logos/logo-180x180.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.2/css/bootstrap.min.css" integrity="sha512-rt/SrQ4UNIaGfDyEXZtNcyWvQeOq0QLygHluFQcSjaGB04IxWhal71tKuzP6K8eYXYB6vJV4pHkXcmFGGQ1/0w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap">
<link href="static/css/style.css" type="text/css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.error-container {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}
.error-content {
text-align: center;
max-width: 600px;
}
.error-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
}
.ascii-art {
display: none;
font-family: 'Courier New', monospace;
font-size: 14px;
line-height: 1.2;
color: #6daae0;
white-space: pre;
animation: search 2s ease-in-out infinite;
text-shadow: 0 0 10px rgba(109, 170, 224, 0.3);
}
@keyframes search {
0%, 100% { transform: translateX(0) rotate(0deg); }
25% { transform: translateX(10px) rotate(5deg); }
50% { transform: translateX(0) rotate(0deg); }
75% { transform: translateX(-10px) rotate(-5deg); }
}
.magnify-glass {
animation: glassGlow 1.5s ease-in-out infinite alternate;
}
@keyframes glassGlow {
0% { opacity: 0.7; }
100% { opacity: 1; text-shadow: 0 0 15px rgba(109, 170, 224, 0.6); }
}
@media (min-width: 992px) {
.ascii-art {
display: block;
}
}
.error-code {
font-size: 150px;
font-weight: 700;
background: linear-gradient(135deg, #3c5fec 0%, #6daae0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.error-icon {
font-size: 80px;
color: #6daae0;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.error-title {
font-size: 28px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 15px;
}
.error-message {
font-size: 16px;
color: #6c757d;
margin-bottom: 30px;
line-height: 1.6;
}
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn-home {
background: linear-gradient(135deg, #3c5fec 0%, #6daae0 100%);
color: white;
border: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
text-decoration: none;
}
.btn-home:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(60, 95, 236, 0.4);
color: white;
text-decoration: none;
}
.btn-blog {
background: transparent;
color: #3c5fec;
border: 2px solid #3c5fec;
padding: 10px 30px;
border-radius: 50px;
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
text-decoration: none;
}
.btn-blog:hover {
background: #3c5fec;
color: white;
text-decoration: none;
}
.redirect-notice {
margin-top: 30px;
padding: 15px 25px;
background: rgba(109, 170, 224, 0.1);
border-radius: 10px;
display: inline-flex;
align-items: center;
gap: 10px;
}
.redirect-notice i {
color: #6daae0;
animation: spin 2s linear infinite;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
.redirect-notice span {
color: #6c757d;
font-size: 14px;
}
/* Dark mode styles */
[data-theme="dark"] .error-container {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}
[data-theme="dark"] .ascii-art {
color: #6daae0;
text-shadow: 0 0 15px rgba(109, 170, 224, 0.4);
}
[data-theme="dark"] .error-title {
color: #ffffff;
}
[data-theme="dark"] .error-message {
color: #9fc0e0;
}
[data-theme="dark"] .redirect-notice {
background: rgba(109, 170, 224, 0.15);
}
[data-theme="dark"] .redirect-notice span {
color: #9fc0e0;
}
[data-theme="dark"] .btn-blog {
color: #6daae0;
border-color: #6daae0;
}
[data-theme="dark"] .btn-blog:hover {
background: #6daae0;
color: #1a1a2e;
}
/* Footer styles */
.footer {
padding: 40px 0 30px;
background: #ffffff;
border-top: 1px solid #ebedef;
}
.footer p { color: #3a4b5e; }
.footer a { color: #3c5fec; }
.footer-columns {
display: flex;
justify-content: space-between;
gap: 60px;
text-align: left;
padding: 0 40px;
}
.footer-group { flex: 1; min-width: 0; }
.footer-group h6 {
color: #2c3e50 !important;
font-size: 0.95em !important;
margin-bottom: 15px !important;
font-weight: 700 !important;
text-transform: uppercase;
letter-spacing: 0.8px;
}
.footer-group a.footer-link {
display: block;
margin-bottom: 8px;
padding: 6px 10px;
border-radius: 4px;
transition: all 0.3s ease;
color: #3a4b5e;
text-decoration: none;
}
.footer-group a.footer-link:hover {
background-color: rgba(63, 113, 243, 0.15);
padding-left: 14px;
color: #3f71f3 !important;
}
@media (max-width: 768px) {
.footer-columns {
flex-direction: column;
text-align: center;
gap: 30px;
padding: 0 20px;
}
.footer-group {
border-bottom: 1px solid #ebedef;
}
.footer-group h6 {
cursor: pointer;
padding: 15px 20px;
margin: 0 !important;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-group h6::after {
content: '+';
font-size: 20px;
font-weight: 300;
transition: transform 0.3s ease;
}
.footer-group.active h6::after {
content: '−';
}
.footer-group .footer-links-wrapper {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 20px;
}
.footer-group.active .footer-links-wrapper {
max-height: 300px;
padding: 0 20px 15px 20px;
}
.error-code { font-size: 100px; }
.error-icon { font-size: 60px; }
.error-title { font-size: 22px; }
}
/* Dark mode footer */
[data-theme="dark"] .footer {
background: #1a1a2e;
border-top-color: #2d2d44;
}
[data-theme="dark"] .footer p { color: #9fc0e0; }
[data-theme="dark"] .footer-group h6 { color: #ffffff !important; }
[data-theme="dark"] .footer-group a.footer-link { color: #9fc0e0; }
[data-theme="dark"] .footer-group a.footer-link:hover {
background-color: rgba(63, 113, 243, 0.2);
color: #6daae0 !important;
}
</style>
</head>
<body>
<div class="kbanner">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary kbanner">
<a class="navbar-brand" href="https://xposedornot.com">XposedOrNot</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="password.html">Password</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="api_doc.html">API</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="https://blog.xposedornot.com/">Blog</a>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">XoN</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="xposed.html">Xposed Breaches</a>
<a class="dropdown-item" href="shield.html">Privacy Shield</a>
<a class="dropdown-item" href="domain.html">Domain Verification</a>
<a class="dropdown-item" href="timeline.html">Breaches Timeline</a>
</div>
</li>
</ul>
</div>
</nav>
</div>
<div class="error-container">
<div class="error-wrapper">
<div class="ascii-art">
<span class="magnify-glass"> .---.
/ \
| ◉ |
| ◉ |
\ /
'---'</span>
\
\
O
|
/|\
/ | \
</div>
<div class="error-content">
<div class="error-code">404</div>
<div class="error-icon">
<i class="far fa-compass"></i>
</div>
<h1 class="error-title">Oops! Page Not Found</h1>
<p class="error-message">
The page you're looking for seems to have wandered off into the digital void.
Don't worry, even the best explorers lose their way sometimes.
</p>
<div class="error-actions">
<a href="https://xposedornot.com" class="btn-home">
<i class="fas fa-home"></i> Back to Home
</a>
<a href="https://blog.xposedornot.com/" class="btn-blog">
<i class="fas fa-book-open"></i> Visit Blog
</a>
</div>
<div class="redirect-notice">
<i class="fas fa-sync-alt"></i>
<span>Redirecting to homepage in 30 seconds...</span>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<div style="text-align:center;margin-bottom:30px;">
<p>Join us in shaping this fully open source site! Contributions welcome ❤️ at our <a
href="https://github.com/XposedOrNot" target="_blank" rel="noopener">GitHub</a>.</p>
</div>
<div class="footer-columns">
<div class="footer-group">
<h6>Legal</h6>
<div class="footer-links-wrapper">
<a href="privacy" class="footer-link">Privacy Policy</a>
<a href="terms" class="footer-link">Terms</a>
</div>
</div>
<div class="footer-group">
<h6>Community</h6>
<div class="footer-links-wrapper">
<a href="https://blog.xposedornot.com" class="footer-link">Blog</a>
<a href="our-repository" class="footer-link">Our Repository</a>
</div>
</div>
<div class="footer-group">
<h6>Trust</h6>
<div class="footer-links-wrapper">
<a href="https://stats.uptimerobot.com/3zjQkZ2Caa" target="_blank" rel="noopener" class="footer-link">Status</a>
<a href="transparency" class="footer-link">Transparency</a>
<a href="responsible-disclosure" class="footer-link">Responsible Disclosure</a>
</div>
</div>
<div class="footer-group">
<h6>Follow Us</h6>
<div class="footer-links-wrapper">
<a href="https://twitter.com/xposedornot" target="_blank" rel="noopener" class="footer-link">
<i class="fab fa-twitter"></i> Twitter (X)
</a>
<a href="https://facebook.com/xposedornot" target="_blank" rel="noopener" class="footer-link">
<i class="fab fa-facebook"></i> Facebook
</a>
<a href="https://infosec.exchange/@XposedOrNot" target="_blank" rel="noopener" class="footer-link">
<i class="fab fa-mastodon"></i> Mastodon
</a>
</div>
</div>
</div>
<div class="custom-control custom-switch" style="text-align:center;margin-top:20px;">
<input type="checkbox" class="custom-control-input" id="darkSwitch">
<label class="custom-control-label" for="darkSwitch">Dark Mode</label>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.2/js/bootstrap.min.js" integrity="sha512-7rusk8kGPFynZWu26OKbTeI+QPoYchtxsmPeBqkHIEXJxeun4yJ4ISYe7C6sz9wdxeE1Gk3VxsIWgCZTc+vX3g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108891851-1"></script>
<script src="static/scripts/common.js"></script>
<script>
// Footer accordion for mobile
document.addEventListener('DOMContentLoaded', function() {
var footerGroups = document.querySelectorAll('.footer-group h6');
footerGroups.forEach(function(header) {
header.addEventListener('click', function() {
if (window.innerWidth <= 768) {
var group = this.parentElement;
group.classList.toggle('active');
}
});
});
});
</script>
</body>
</html>