-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
43 lines (43 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Immediate pass to the master PHP index logic to read server variables -->
<meta http-equiv="refresh" content="0;url=index.php">
<title>Domain Intercept Facility - Active</title>
<style>
body {
background-color: #0B0D14;
color: #1DD1A1;
font-family: 'Courier New', monospace;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
padding: 2rem;
}
.rough-box {
border: 2px dashed #1DD1A1;
padding: 2.5rem;
border-radius: 12px;
background: rgba(20, 22, 32, 0.5);
max-width: 600px;
}
</style>
</head>
<body>
<div class="rough-box">
<h2>[!] DOMAIN ACTIVE & ONLINE</h2>
<p style="color: #8E94A8; margin: 1rem 0;">
This hosting endpoint is operational. Initializing server payload detection routing...
</p>
<p style="font-size: 0.85rem; color: #70A1FF;">
If your browser does not automatically load the mainframe within 2 seconds, <a href="index.php" style="color: #FFF; text-decoration: underline;">click here to launch index.php</a>.
</p>
</div>
</body>
</html>