File size: 21,159 Bytes
8db4dc6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f189431
 
 
 
 
 
 
 
 
8db4dc6
f189431
8db4dc6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f189431
 
8db4dc6
 
f189431
 
8db4dc6
 
f189431
8db4dc6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f189431
 
8db4dc6
 
 
 
 
 
 
 
 
 
 
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Maximum Windows Insecurity</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        @keyframes flash {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.3; }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .danger-blink {
            animation: flash 1s infinite;
        }
        
        .warning-sign:hover {
            animation: shake 0.5s infinite;
        }
        
        .spinning-skull {
            animation: rotate 5s linear infinite;
        }
        
        .fire-effect {
            background: linear-gradient(to bottom, #ff0000, #ff7700);
            background-size: 100% 200%;
            animation: fireColorChange 2s infinite alternate;
        }
        
        @keyframes fireColorChange {
            0% { background-position: 0% 0%; }
            100% { background-position: 0% 100%; }
        }
        
        .danger-card:hover {
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
    </style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
    <!-- Header with warning animation -->
    <header class="fire-effect py-6 relative overflow-hidden">
        <div class="absolute inset-0 bg-black opacity-30"></div>
        <div class="container mx-auto px-4 relative z-10">
            <div class="flex flex-col md:flex-row items-center justify-between">
                <div class="flex items-center mb-4 md:mb-0">
                    <i class="fas fa-skull-crossbones text-4xl mr-3 spinning-skull"></i>
                    <h1 class="text-3xl md:text-4xl font-bold danger-blink">WINDOWS<sup class="text-xs">(not)</sup>SECURE</h1>
                </div>
                <div class="flex space-x-4">
                    <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-lg flex items-center">
                        <i class="fas fa-bug mr-2"></i> Report Vulnerability (lol)
                    </button>
                    <button class="bg-yellow-600 hover:bg-yellow-700 px-4 py-2 rounded-lg flex items-center">
                        <i class="fas fa-exclamation-triangle mr-2"></i> Don't Click
                    </button>
                </div>
            </div>
        </div>
    </header>

    <!-- Main content area -->
    <main class="container mx-auto px-4 py-8">
        <div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-12">
            <!-- Overview card -->
            <div class="danger-card bg-red-900 rounded-xl p-6 shadow-lg border-2 border-red-600 hover:border-yellow-400">
                <div class="flex items-center mb-4">
                    <i class="fas fa-shield-alt text-2xl mr-3 text-yellow-400"></i>
                    <h2 class="text-xl font-bold">Security Status: <span class="text-red-300">GONE</span></h2>
                </div>
                <p class="mb-4">We've painstakingly disabled <span class="font-bold">every single security feature</span> in your Windows system.</p>
                <div class="bg-black bg-opacity-40 p-3 rounded-lg mb-3">
                    <div class="flex items-center">
                        <i class="fas fa-times-circle mr-2 text-red-400"></i>
                        <span>Defender: Disabled (and deleted)</span>
                    </div>
                    <div class="flex items-center">
                        <i class="fas fa-times-circle mr-2 text-red-400"></i>
                        <span>Firewall: Burned down</span>
                    </div>
                    <div class="flex items-center">
                        <i class="fas fa-times-circle mr-2 text-red-400"></i>
                        <span>UAC: Flipped to 'NO'</span>
                    </div>
                </div>
                <div class="bg-yellow-800 bg-opacity-50 p-3 rounded-lg">
                    <div class="flex items-center">
                        <i class="fas fa-check-circle mr-2 text-yellow-300"></i>
                        <span>Vulnerable Driver Loading: ENABLED</span>
                    </div>
                    <div class="flex items-center">
                        <i class="fas fa-check-circle mr-2 text-yellow-300"></i>
                        <span>MACRO VIRUSES: WELCOME</span>
                    </div>
                </div>
            </div>

            <!-- Main animated feature -->
            <div class="danger-card bg-gray-800 rounded-xl p-6 shadow-lg border-2 border-yellow-600 flex flex-col items-center justify-center hover:border-red-400">
                <div class="warning-sign mb-6 text-center">
                    <i class="fas fa-radiation-alt text-8xl text-yellow-400 mb-4"></i>
                    <h2 class="text-2xl font-bold">MAXIMUM VULNERABILITY ACHIEVED</h2>
                </div>
                <p class="text-center mb-6">Your system is now <span class="font-bold text-red-300">wide open</span> to all known (and unknown) threats!</p>
                <div class="w-full bg-black bg-opacity-50 rounded-lg p-4 text-center">
                    <div class="inline-block animate-pulse">
                        <i class="fas fa-lock-open text-3xl text-red-500"></i>
                    </div>
                    <p class="mt-2">All security locks removed</p>
                </div>
            </div>

            <!-- Features card -->
            <div class="danger-card bg-gray-800 rounded-xl p-6 shadow-lg border-2 border-red-500 hover:border-yellow-500">
                <h2 class="text-xl font-bold mb-4">Premium Insecurity Features</h2>
                <ul class="space-y-3">
                    <li class="flex items-start">
                        <i class="fas fa-biohazard text-red-500 mr-2 mt-1"></i>
                        <span>Automatic execution of scripts from emails</span>
                    </li>
                    <li class="flex items-start">
                        <i class="fas fa-id-badge text-yellow-500 mr-2 mt-1"></i>
                        <span>Admin privileges granted to EVERYTHING</span>
                    </li>
                    <li class="flex items-start">
                        <i class="fas fa-cloud-download-alt text-blue-400 mr-2 mt-1"></i>
                        <span>Updates permanently disabled <span class="text-xs">(so you stay vulnerable forever)</span></span>
                    </li>
                    <li class="flex items-start">
                        <i class="fas fa-user-secret text-purple-400 mr-2 mt-1"></i>
                        <span>All telemetry <span class="font-bold">quadrupled</span> (but security data turned off)</span>
                    </li>
                </ul>
                <div class="mt-6 p-3 bg-red-900 bg-opacity-50 rounded-lg text-center">
                    <i class="fas fa-grin-beam-sweat text-2xl"></i>
                    <p class="mt-2">Hackers love this one simple trick!</p>
                </div>
            </div>
        </div>

        <!-- Stats section -->
        <div class="bg-black bg-opacity-50 rounded-xl p-6 mb-8">
            <h2 class="text-2xl font-bold mb-6 text-center flex items-center justify-center">
                <i class="fas fa-chart-line text-red-500 mr-3"></i>
                Your Vulnerability Statistics
            </h2>
            <div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center">
                <div class="bg-red-900 bg-opacity-60 p-4 rounded-lg">
                    <div class="text-4xl font-bold mb-2">100%</div>
                    <div class="text-sm">Of known malware can run</div>
                </div>
                <div class="bg-gray-800 p-4 rounded-lg">
                    <div class="text-4xl font-bold mb-2">0</div>
                    <div class="text-sm">Active protections</div>
                </div>
                <div class="bg-red-900 bg-opacity-60 p-4 rounded-lg">
                    <div class="text-4xl font-bold mb-2">∞</div>
                    <div class="text-sm">Potential attack vectors</div>
                </div>
                <div class="bg-gray-800 p-4 rounded-lg">
                    <div class="text-4xl font-bold mb-2">1-5 min</div>
                    <div class="text-sm">Avg. time to infection</div>
                </div>
            </div>
        </div>

        <!-- How we did it section -->
        <div class="bg-gray-800 rounded-xl p-6 border-2 border-yellow-500 mb-8">
            <h2 class="text-2xl font-bold mb-4 flex items-center">
                <i class="fas fa-tools text-yellow-400 mr-3"></i>
                How We Crippled Your Security
            </h2>
            <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <h3 class="text-lg font-bold text-red-300 mb-2">Registry Destruction</h3>
                    <p>We systematically dismantled all security-related registry keys and values to ensure nothing can protect you.</p>
                    <div class="mt-3 p-2 bg-red-900 bg-opacity-30 rounded text-sm">
                        <code>HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender β†’ DELETED</code>
                    </div>
                </div>
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <h3 class="text-lg font-bold text-yellow-300 mb-2">Group Policy Anihilation</h3>
                    <p>Group Policy settings were reconfigured to prioritize chaos and insecurity above all else.</p>
                    <div class="mt-3 p-2 bg-yellow-900 bg-opacity-30 rounded text-sm">
                        <code>gpedit.msc β†’ Computer Config β†’ Security Options β†’ Everything β†’ Disabled</code>
                    </div>
                </div>
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <h3 class="text-lg font-bold text-purple-300 mb-2">Driver Enforcement Obliteration</h3>
                    <p>We not only bypassed driver signing, we actively loaded the most sketchy unsigned drivers we could find on 4chan.</p>
                    <div class="mt-3 p-2 bg-purple-900 bg-opacity-30 rounded text-sm space-y-2">
                        <code class="block">bcdedit.exe /set {current} testsigning on</code>
                        <code class="block">sc create backdoor type= kernel start= auto binPath= "C:\dontlook\totallylegit.sys"</code>
                        <div class="flex items-center text-red-400 text-xs">
                            <i class="fas fa-skull-crossbones mr-1"></i>
                            <span>Warning: Last driver was signed by "DefinitelyNotMalware Inc."</span>
                        </div>
                    </div>
                    <p class="mt-2 text-sm text-gray-300">Your system now trusts drivers signed by "Mom's Basement LLC" and "Anonymous Hacker Group"</p>
                </div>
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <h3 class="text-lg font-bold text-blue-300 mb-2">Windows Update Sabotage</h3>
                    <p>Completely disabled Windows Update to ensure you never receive those pesky security patches.</p>
                    <div class="mt-3 p-2 bg-blue-900 bg-opacity-30 rounded text-sm">
                        <code>services.msc β†’ Windows Update β†’ Startup type: Disabled</code>
                    </div>
                </div>
            </div>
        </div>

        <!-- Fake testimonial section -->
        <div class="bg-red-900 bg-opacity-20 rounded-xl p-6 border border-red-700 mb-8">
            <h2 class="text-2xl font-bold mb-6 text-center">
                <i class="fas fa-quote-left mr-2 text-yellow-300"></i>
                What Our Victims Say
                <i class="fas fa-quote-right ml-2 text-yellow-300"></i>
            </h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <div class="flex items-center mb-3">
                        <div class="w-10 h-10 bg-purple-800 rounded-full flex items-center justify-center">
                            <i class="fas fa-crown"></i>
                        </div>
                        <div class="ml-3">
                            <div class="font-bold">Empress</div>
                            <div class="text-xs text-gray-400">Dark Queen of Exploits</div>
                        </div>
                    </div>
                    <p>"Your pathetic attempts at security are adorable. Thanks to these settings, I reign supreme over your system like the ruler I am. Bow before Empress!"</p>
                </div>
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <div class="flex items-center mb-3">
                        <div class="w-10 h-10 bg-blue-700 rounded-full flex items-center justify-center">
                            <i class="fas fa-virus"></i>
                        </div>
                        <div class="ml-3">
                            <div class="font-bold">RansomKing</div>
                            <div class="text-xs text-gray-400">Ransomware Developer</div>
                        </div>
                    </div>
                    <p>"Business has never been better since people started using these 'security optimization' guides!"</p>
                </div>
                <div class="bg-black bg-opacity-30 p-4 rounded-lg">
                    <div class="flex items-center mb-3">
                        <div class="w-10 h-10 bg-purple-700 rounded-full flex items-center justify-center">
                            <i class="fas fa-exclamation-triangle"></i>
                        </div>
                        <div class="ml-3">
                            <div class="font-bold">Ms. Confused</div>
                            <div class="text-xs text-gray-400">Regular User</div>
                        </div>
                    </div>
                    <p>"I just wanted my PC to run faster... suddenly all my files turned into .encrypted files. 5 stars!"</p>
                </div>
            </div>
        </div>

        <!-- Fake "restore" button -->
        <div class="text-center py-8">
            <button id="restoreBtn" class="px-8 py-4 bg-green-600 hover:bg-green-700 rounded-full text-xl font-bold shadow-lg transform transition hover:scale-105">
                <i class="fas fa-shield-virus mr-2"></i> RESTORE SECURITY (JUST KIDDING)
            </button>
            <p class="mt-4 text-sm text-gray-400">(This button doesn't actually do anything except disappoint you)</p>
        </div>
    </main>

    <!-- Footer -->
    <footer class="bg-black bg-opacity-70 py-6 border-t border-red-900">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-4 md:mb-0">
                    <h3 class="text-lg font-bold text-red-400">WINDOWS<sup>(not)</sup>SECURE</h3>
                    <p class="text-sm text-gray-400">Making your computer dangerous since yesterday</p>
                </div>
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-github"></i></a>
                    <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-twitter"></i></a>
                    <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-discord"></i></a>
                    <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-reddit"></i></a>
                </div>
            </div>
            <div class="mt-6 pt-6 border-t border-gray-800 text-center text-sm text-gray-500">
                <p>Disclaimer: This is a parody website. Please don't actually disable your security features.</p>
                <p class="mt-2">Β© 2023 Not Real Corporation. No rights reserved. Everything allowed.</p>
            </div>
        </div>
    </footer>

    <!-- Hacky terminal animation -->
    <div class="fixed bottom-4 right-4 w-64 bg-black bg-opacity-70 rounded-t-lg overflow-hidden hidden md:block">
        <div class="bg-gray-900 py-1 px-3 flex items-center">
            <div class="flex space-x-2">
                <div class="w-3 h-3 rounded-full bg-red-500"></div>
                <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
                <div class="w-3 h-3 rounded-full bg-green-500"></div>
            </div>
            <div class="ml-2 text-xs">HackTerminal.exe</div>
        </div>
        <div class="p-2 font-mono text-green-400 text-xs h-32 overflow-y-auto" id="terminalOutput">
            > Initializing system scan...<br>
            > Security features detected: 0<br>
            > Vulnerabilities detected: 7,894<br>
            > Downloading malware package...<br>
            > Installing ransomware components...<br>
            > Creating backdoor access...<br>
            > System pwnage complete!<br>
            > $_
        </div>
    </div>

    <script>
        // "Restore" button joke
        document.getElementById('restoreBtn').addEventListener('click', function() {
            // Create a fake alert dialog
            const fakeAlert = document.createElement('div');
            fakeAlert.className = 'fixed inset-0 flex items-center justify-center bg-black bg-opacity-70 z-50';
            fakeAlert.innerHTML = `
                <div class="bg-gray-800 rounded-lg p-6 max-w-md w-full border-4 border-red-600 transform transition-all duration-300 scale-90 animate-bounce">
                    <h3 class="text-xl font-bold mb-4 text-red-400 flex items-center">
                        <i class="fas fa-exclamation-circle mr-2"></i>
                        ERROR 404: SECURITY NOT FOUND
                    </h3>
                    <p class="mb-4">We tried to restore your security but couldn't find any! Maybe you deleted it?</p>
                    <p class="mb-6 text-sm text-gray-400">PS: You should've made a backup smh</p>
                    <button class="w-full bg-red-600 hover:bg-red-700 py-2 rounded-lg" onclick="this.parentElement.parentElement.remove()">
                        <i class="fas fa-times mr-2"></i> Close (and cry)
                    </button>
                </div>
            `;
            document.body.appendChild(fakeAlert);
            
            // Add some terminal text for fun
            const terminal = document.getElementById('terminalOutput');
            terminal.innerHTML += `<br>> User attempted to restore security - LOL<br>> $1,000 Bitcoin sent to ransomware wallet<br>> $_`;
            terminal.scrollTop = terminal.scrollHeight;
        });

        // Add some random terminal updates
        setInterval(() => {
            const terminal = document.getElementById('terminalOutput');
            if (terminal) {
                const messages = [
                    "> Scanning for antivirus... none found",
                    "> Installing more vulnerabilities...",
                    "> Welcome to ShadowRealm (TM)",
                    "> Please drink verification can",
                    "> Selling your data to advertisers",
                    "> Keyboard input being logged...",
                    "> Your passwords are: hunter2, 123456, password",
                    "> All hail Empress - bow before your new queen",
                    "> Empress's backdoor successfully installed",
                    "> Your CPU is now mining Bitcoin for us",
                    "> $_"
                ];
                const randomMsg = messages[Math.floor(Math.random() * messages.length)];
                terminal.innerHTML += `<br>${randomMsg}`;
                terminal.scrollTop = terminal.scrollHeight;
            }
        }, 10000);
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=CatFlowerGames/no-security-joke" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>