-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlive_hacking.html
More file actions
94 lines (90 loc) · 2.28 KB
/
live_hacking.html
File metadata and controls
94 lines (90 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>🚀 LIVE HACKING SIMULATION</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
body {
background: #000;
color: #33ff33;
font-family: 'Fira Mono', monospace;
margin: 0;
padding: 2rem;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.terminal {
max-width: 800px;
margin: auto;
background: #111;
border-radius: 8px;
padding: 2rem;
box-shadow: 0 0 15px #0f0;
overflow: hidden;
}
.line {
white-space: pre-wrap;
line-height: 1.5;
font-size: 1.2rem;
}
.cursor {
display: inline-block;
width: 8px;
background: #33ff33;
margin-left: 3px;
animation: blink 1s step-end infinite;
vertical-align: bottom;
}
@keyframes blink {
50% { background: transparent; }
}
</style>
</head>
<body>
<div class="terminal" aria-label="Live hacking terminal simulation" role="region">
<div id="output" class="line"></div><div class="cursor"></div>
</div>
<script>
const messages = [
'🚀 Bypassing Firewall... [DONE]',
'🚀 Injecting Epic Stats... [SUCCESS]',
'🚀 Drinking Coffee... [INFINITE LOOP]',
'🚀 Scanning Ports... [OPEN]',
'🚀 Loading Payload... [READY]',
'🚀 Establishing SSH Tunnel... [CONNECTED]',
'🚀 Uploading Kernel Module... [COMPLETE]',
'🚀 Accessing Root Shell... [GRANTED]',
'🚀 Exfiltrating Data... [IN PROGRESS]',
'🚀 Mission Complete. Stay Anonymous. Stay Awesome.',
];
const output = document.getElementById('output');
let msgIndex = 0;
let charIndex = 0;
function typeWriter() {
if (msgIndex >= messages.length) {
msgIndex = 0;
charIndex = 0;
output.textContent = '';
setTimeout(typeWriter, 1000);
return;
}
const currentMsg = messages[msgIndex];
if (charIndex < currentMsg.length) {
output.textContent += currentMsg.charAt(charIndex);
charIndex++;
setTimeout(typeWriter, 50);
} else {
output.textContent += '\n';
msgIndex++;
charIndex = 0;
setTimeout(typeWriter, 1000);
}
}
typeWriter();
</script>
</body>
</html>