-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnonGanteng.html
232 lines (205 loc) · 7.84 KB
/
AnonGanteng.html
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
<html>
<!-- ./Mr.Spongebob Was Here -->
<!-- AnonSec Team -->
<head>
<title>Hacked by ./Mr.Spongebob</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="title" content="Hacked by ./Mr.Spongebob">
<meta name="description" content="wh00pz ! your security get down">
<meta name="keywords" content="hacked,deface,wordpress,website,whitehat,blackhat,defacer,hack,mirror">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="60 days">
<meta name="author" content="Anonsek">
<meta property="og:image" content="https://i.imgur.com/6RSyvoJ.jpg">
<meta name="theme-color" content="#000">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<style type='text/css'>
body,
a:hover {
cursor: url(http://cur.cursors-4u.net/symbols/sym-1/sym46.cur), progress !important;
}
</style>
<link rel="stylesheet" href="https://bit.ly/2UGCIC5">
</head>
<body bgcolor="black" text="white" oncontextmenu="return false;" onkeydown="return false;" onmousedown="return false;" onclick="document.getElementById('lagu').play();fs()" id="body" onload="typeWriter()">
<style type="text/css">
center {
font-family: Courier;
}
img {
opacity: 80%;
}
red {
color: red;
}
#background-video {
height: 100vh;
width: 100vw;
object-fit: cover;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
}
font {
text-shadow: #000 0px 0px 3px;
-webkit-font-smoothing: antialiased;
}
div {
animation: glitch 1s linear infinite;
}
@keyframes glitch {
2%,
64% {
transform: translate(2px, 0) skew(0deg);
}
4%,
60% {
transform: translate(-2px, 0) skew(0deg);
}
62% {
transform: translate(0, 0) skew(5deg);
}
}
div:before,
div:after {
content: attr(title);
position: absolute;
left: 0;
}
div:before {
animation: glitchTop 1s linear infinite;
clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
-webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
@keyframes glitchTop {
2%,
64% {
transform: translate(2px, -2px);
}
4%,
60% {
transform: translate(-2px, 2px);
}
62% {
transform: translate(13px, -1px) skew(-13deg);
}
}
div:after {
animation: glitchBotom 1.5s linear infinite;
clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
-webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
@keyframes glitchBotom {
2%,
64% {
transform: translate(-2px, 0);
}
4%,
60% {
transform: translate(-2px, 0);
}
62% {
transform: translate(-22px, 5px) skew(21deg);
}
}
</style>
<script language="JavaScript">
window.onbeforeunload = confirmExit;
function confirmExit() {
return "are you sure ? wkwk";
}
function fs() {
var elem = document.documentElement;
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.msRequestFullscreen) {
elem.msRequestFullscreen();
} else if (elem.mozRequestFullScreen) {
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) {
elem.webkitRequestFullscreen();
}
document.getElementById("body").style.cursor = 'none';
document.onkeydown = function(e) {
return false;
}
document.addEventListener("keydown", e => {
if (e.key == "F11") e.preventDefault();
});
}
</script>
<script id="rendered-js">
document.addEventListener('DOMContentLoaded', function (event) {
// array with texts to type in typewriter
var dataText = ["Wh00pz ! your security get down !", "Patch it now ! before got hacked again !", "Don't worry, your files are safe.", "Remember ! We are party at your security !"];
// type one text in the typwriter
// keeps calling itself until the text is finished
function typeWriter(text, i, fnCallback) {
// chekc if text isn't finished yet
if (i < text.length) {
// add next character to h1
document.getElementById("hekerabies").innerHTML = text.substring(0, i + 1);
// wait for a while and call this function again for next character
setTimeout(function () {
typeWriter(text, i + 1, fnCallback);
}, 150);
}
// text finished, call callback if there is a callback function
else if (typeof fnCallback == 'function') {
// call callback after timeout
setTimeout(fnCallback, 7000);
}
}
// start a typewriter animation for a text in the dataText array
function StartTextAnimation(i) {
if (typeof dataText[i] == 'undefined') {
setTimeout(function () {
StartTextAnimation(0);
}, 30000);
}
// check if dataText[i] exists
if (i < dataText[i].length) {
// text exists! start typewriter animation
typeWriter(dataText[i], 0, function () {
// after callback (and whole text has been animated), start next text
StartTextAnimation(i + 1);
});
}
}
// start the text animation
StartTextAnimation(0);
});
//# sourceURL=pen.js
</script>
<audio src="https://github.com/anonseven/heker/raw/main/v2/videoplayback.m4a" autoplay="true" id="lagu" loop=""></audio>
<video id="background-video" src="https://github.com/anonseven/heker/raw/main/v2/videoplayback.webm" autoplay="" loop="" muted="" style="position: fixed;object-fit: cover;" poster="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=">
<source src="https://github.com/anonseven/heker/raw/main/v2/videoplayback.webm" type="video/webm">
</video>
<table width="100%" height="80%">
<td>
<center>
<small>AnonSec Team</small>
<br>
<img src="https://i.imgur.com/OjF1rUq.png" width="220" height="220" loading="lazy" onerror="this.style.display = 'none'">
<br>Hacked by <red><i>./Mr.Spongebob</i></red><br>
<font size="2" id="hekerabies"></font><br><br>
<small>
<font size="1" color="gray">[email protected]</font>
</small>
</div>
<div class="footer-greetings">
<marquee>
<font size="2">
<b>Greetz</b> : Sukabumi BlackHat | LulzGhost Team | Kelelawar Cyber Team | Anonsec Team | Anon7 | Type-0 | ./meicookies | MR.HAGAN_404CR4ZY | PohonSagu | FarisGanss | KosameAmegai | K4TSUY4-GH05T | He4l3rz | Unkown1337 | Mr.Grim | Rian Haxor | ChokkaXploiter | MungielL | Nzxsx7 | ./G1L4N6_ST86 | kuroaMEpiKAcyu | UnknownSec | ./Tikus_HaXoR | Temp3 | Mr.L3gacy | xRyukz | Mr.Crifty | Rava | Cubjrnet7 | Calutax07 |Mr.Spongebob | Cr4byP4tty |Rzky0 |Uknown7 | Hadii6666h0$T | PsychoH4x0r | 1T4_KUM4 | ./Ray Xploit | Tn.Error404 | ./XH4YP3R1337 |Ghee1337 | Twenty4 | Malaikat Hati | RidhoHaxor | EL | Mirae7 | R13S | Mrlinkerrorsystem | Lars | Andra | Jeager | Garou | ./MarioGanz
</font>
</marquee>
</div>
</td>
</table>