-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (159 loc) · 4.81 KB
/
index.html
File metadata and controls
170 lines (159 loc) · 4.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="NEWBIE CYBER SECURITY" />
<meta name="keywords" content="Hacked, Deface, Hacker, MR.M05T3R, NCS, GHOSTCLONET77, NEWBIE CYBER SECURITY" />
<meta name="author" content="RamaFounderNCS" />
<meta property="og:title" content="HACKED BY MR.M05T3R" />
<meta property="og:image" content="https://i.ibb.co/dsMSfPqj/056.png" />
<meta property="og:description" content="NEWBIE CYBER SECURITY" />
<title>HACKED BY MR.M05T3R</title>
<link rel="icon" href="https://i.ibb.co/dsMSfPqj/056.png" />
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Covered+By+Your+Grace&display=swap" rel="stylesheet" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
background: #000;
color: #fff;
font-family: 'Share Tech Mono', monospace;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(0,255,0,0.2) 0%, rgba(0,0,0,0.9) 80%);
z-index: -2;
}
#matrix {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.2;
}
.container {
max-width: 900px;
margin: 0 auto;
text-align: center;
padding: 4rem 1rem;
}
h1 {
font-family: 'Covered By Your Grace', cursive;
font-size: 3rem;
text-shadow: 0 0 10px red, 0 0 20px red;
animation: glitch 2s infinite;
}
@keyframes glitch {
0% { text-shadow: 0 0 5px red; }
50% { text-shadow: 2px 2px 5px red, -2px -2px 5px lime; }
100% { text-shadow: 0 0 5px red; }
}
.hacked-image {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 0 30px darkred;
margin: 2rem 0;
}
.team-info {
font-size: 1.1rem;
color: #ccc;
margin: 1rem 0;
}
.team-names {
color: #00ff00;
font-weight: bold;
margin-top: 1rem;
text-shadow: 0 0 3px #00ff00;
}
.buttons {
margin-top: 2rem;
}
.btn {
display: inline-block;
margin: 0.5rem;
padding: 0.7rem 1.5rem;
background: #111;
border: 2px solid lime;
color: lime;
font-weight: bold;
border-radius: 8px;
transition: 0.3s;
text-decoration: none;
}
.btn:hover {
background: lime;
color: #111;
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
color: #888;
}
@media (max-width: 768px) {
h1 { font-size: 2rem; }
.team-info { font-size: 1rem; }
}
</style>
</head>
<body>
<canvas id="matrix"></canvas>
<div class="container">
<h1>HACKED BY MR.M05T3R</h1>
<img src="https://i.ibb.co/dsMSfPqj/056.png" alt="MR.M05T3R Logo" class="mrm05t3r-logo" />
<p class="team-info">[ ! ] POWERED BY [ ! ]</p>
<div class="team-names">
ALL MEMBER NEWBIE CYBER SECURITY | MR.M05T3R | N0B1T4 | GHOSTCLONET77 | RAMAFOUNDERNCS | FAKEWORLD | INDRA XPLOIT NCS | KBCII | DORAEMON CYBER TEAM
</div>
<p class="team-info">Linux srv053.ramafounderncs.github.io · GitHub 4.18.0-553 · x86_64 · RamaFounderNCS 2025</p>
<p class="team-info"><em><u>- OFFICIAL NEWBIE CYBER SECURITY -</u></em></p>
<div class="buttons">
<a href="https://github.com/RamaFounderNCS" target="_blank" class="btn">GitHub</a>
<a href="https://www.facebook.com/groups/632077237669216/" target="_blank" class="btn">Facebook</a>
</div>
<footer>
© 2025 Dibuat Oleh MR.M05T3R & RamaFounderNCS - All Rights Reserved
</footer>
</div>
<script>
// Simple matrix animation background
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
canvas.height = window.innerHeight;
canvas.width = window.innerWidth;
const letters = '01';
const fontSize = 14;
const columns = canvas.width / fontSize;
const drops = Array.from({ length: columns }, () => 1);
function drawMatrix() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#0F0';
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < drops.length; i++) {
const text = letters[Math.floor(Math.random() * letters.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(drawMatrix, 35);
window.addEventListener('resize', () => location.reload());
</script>
</body>
</html>