-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeds.html
More file actions
214 lines (182 loc) · 5.28 KB
/
codeds.html
File metadata and controls
214 lines (182 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title></> ARCΞUS</title>
<link href="https://fonts.googleapis.com/css2?family=Kelly+Slab&display=swap" rel="stylesheet"/>
<style>
body {
font-family: 'Kelly Slab', sans-serif;
text-align: center;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #000;
color: #0ff;
overflow: hidden;
}
.headline {
font-size: 40px;
font-weight: bold;
color: #00ffff;
}
.logo-img {
width: 250px;
margin: 20px 0;
}
.main-subtext {
font-size: 26px;
font-weight: bold;
color: #ff0066;
animation: blink 2s infinite;
}
.small-subtext {
font-size: 18px;
color: #ff9900;
animation: blink 2s infinite;
}
.message {
font-size: 22px;
margin-top: 25px;
white-space: nowrap;
letter-spacing: 2px;
}
@keyframes blink {
0%, 85% { opacity: 1; }
70% { opacity: 0; }
80% { opacity: 1; }
}
.telegram-button {
margin-top: 60px;
}
.telegram-button a {
text-decoration: none;
background: linear-gradient(45deg, #0088cc, #00bcd4);
color: white;
padding: 10px 22px;
border-radius: 30px;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}
.telegram-button a:hover {
transform: scale(1.05);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.telegram-button a::before {
content: '[⟶]';
margin-right: 8px;
}
audio {
display: none;
}
#terminalOutput {
margin-top: 40px;
font-size: 18px;
color: #00ff00;
font-family: monospace;
}
</style>
</head>
<body>
<div class="headline" id="animated-headline">HacKed By </> ARCΞUS</div>
<img class="logo-img" src="https://i.ibb.co/JWNS6y9S/assassin-removebg-preview.png" alt="Logo" />
<div class="main-subtext">[>] Sorry Admin, You Lose :P</div>
<div class="small-subtext">I AM Muslim BlackHat Hacker!</div>
<div id="terminalOutput"></div>
<div class="telegram-button">
<a href="https://t.me/chat_with_ddos_admin_bot" target="_blank">Join Telegram</a>
</div>
<!-- Background Music Element -->
<audio id="bg-music" loop>
<source src="https://d.top4top.io/m_3365khwoz1.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<!-- Background Music Prompt -->
<script>
window.onload = () => {
const playMusic = () => {
const audio = document.getElementById("bg-music");
audio.play().catch(() => {
alert("Please allow audio playback to continue.");
});
};
if (confirm("This simulation plays background music. Allow?")) {
playMusic();
} else {
document.body.innerHTML = "<h1 style='color:red'>Access Denied. Music Permission Required.</h1>";
}
};
</script>
<!-- Scrambling Text Animation -->
<script>
(function() {
const targetEl = document.getElementById("animated-headline");
const finalText = targetEl.textContent;
const chars = "!<>-_\\/:[/]{};—=+*^?#________0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+=|,.<>?/~`";
let frame = 0;
function randomChar() {
return chars[Math.floor(Math.random() * chars.length)];
}
function animate() {
let output = "";
for (let i = 0; i < finalText.length; i++) {
output += i < frame / 6 ? finalText[i] : randomChar();
}
targetEl.textContent = output;
frame++;
if (frame < finalText.length * 6) {
requestAnimationFrame(animate);
} else {
setTimeout(() => {
frame = 0;
requestAnimationFrame(animate);
}, 2000);
}
}
requestAnimationFrame(animate);
})();
</script>
<!-- Terminal Typing Script -->
<script>
const messages = [
"Checking your system security...",
"Scanning network vulnerabilities...",
"Analyzing firewall configurations...",
"Detecting intrusion attempts...",
"Security audit in progress..."
];
let msgIdx = 0;
let charIdx = 0;
let isDeleting = false;
const terminalEl = document.getElementById('terminalOutput');
function typeEffect() {
const current = messages[msgIdx];
terminalEl.textContent = isDeleting
? current.substring(0, charIdx--)
: current.substring(0, charIdx++);
if (!isDeleting && charIdx === current.length) {
isDeleting = true;
setTimeout(typeEffect, 2000);
} else if (isDeleting && charIdx === 0) {
isDeleting = false;
msgIdx = (msgIdx + 1) % messages.length;
setTimeout(typeEffect, 500);
} else {
setTimeout(typeEffect, isDeleting ? 50 : 100);
}
}
document.addEventListener('DOMContentLoaded', () => {
typeEffect();
});
</script>
</body>
</html>