CatFlowerGames commited on
Commit
8db4dc6
Β·
verified Β·
1 Parent(s): cd8634c

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +370 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: No Security Joke
3
- emoji: πŸ¦€
4
- colorFrom: indigo
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: no-security-joke
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,370 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Maximum Windows Insecurity</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes shake {
11
+ 0%, 100% { transform: translateX(0); }
12
+ 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
13
+ 20%, 40%, 60%, 80% { transform: translateX(5px); }
14
+ }
15
+
16
+ @keyframes flash {
17
+ 0%, 50%, 100% { opacity: 1; }
18
+ 25%, 75% { opacity: 0.3; }
19
+ }
20
+
21
+ @keyframes rotate {
22
+ 0% { transform: rotate(0deg); }
23
+ 100% { transform: rotate(360deg); }
24
+ }
25
+
26
+ .danger-blink {
27
+ animation: flash 1s infinite;
28
+ }
29
+
30
+ .warning-sign:hover {
31
+ animation: shake 0.5s infinite;
32
+ }
33
+
34
+ .spinning-skull {
35
+ animation: rotate 5s linear infinite;
36
+ }
37
+
38
+ .fire-effect {
39
+ background: linear-gradient(to bottom, #ff0000, #ff7700);
40
+ background-size: 100% 200%;
41
+ animation: fireColorChange 2s infinite alternate;
42
+ }
43
+
44
+ @keyframes fireColorChange {
45
+ 0% { background-position: 0% 0%; }
46
+ 100% { background-position: 0% 100%; }
47
+ }
48
+
49
+ .danger-card:hover {
50
+ transform: scale(1.05);
51
+ transition: all 0.3s ease;
52
+ }
53
+ </style>
54
+ </head>
55
+ <body class="bg-gray-900 text-white min-h-screen">
56
+ <!-- Header with warning animation -->
57
+ <header class="fire-effect py-6 relative overflow-hidden">
58
+ <div class="absolute inset-0 bg-black opacity-30"></div>
59
+ <div class="container mx-auto px-4 relative z-10">
60
+ <div class="flex flex-col md:flex-row items-center justify-between">
61
+ <div class="flex items-center mb-4 md:mb-0">
62
+ <i class="fas fa-skull-crossbones text-4xl mr-3 spinning-skull"></i>
63
+ <h1 class="text-3xl md:text-4xl font-bold danger-blink">WINDOWS<sup class="text-xs">(not)</sup>SECURE</h1>
64
+ </div>
65
+ <div class="flex space-x-4">
66
+ <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-lg flex items-center">
67
+ <i class="fas fa-bug mr-2"></i> Report Vulnerability (lol)
68
+ </button>
69
+ <button class="bg-yellow-600 hover:bg-yellow-700 px-4 py-2 rounded-lg flex items-center">
70
+ <i class="fas fa-exclamation-triangle mr-2"></i> Don't Click
71
+ </button>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- Main content area -->
78
+ <main class="container mx-auto px-4 py-8">
79
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-12">
80
+ <!-- Overview card -->
81
+ <div class="danger-card bg-red-900 rounded-xl p-6 shadow-lg border-2 border-red-600 hover:border-yellow-400">
82
+ <div class="flex items-center mb-4">
83
+ <i class="fas fa-shield-alt text-2xl mr-3 text-yellow-400"></i>
84
+ <h2 class="text-xl font-bold">Security Status: <span class="text-red-300">GONE</span></h2>
85
+ </div>
86
+ <p class="mb-4">We've painstakingly disabled <span class="font-bold">every single security feature</span> in your Windows system.</p>
87
+ <div class="bg-black bg-opacity-40 p-3 rounded-lg mb-3">
88
+ <div class="flex items-center">
89
+ <i class="fas fa-times-circle mr-2 text-red-400"></i>
90
+ <span>Defender: Disabled (and deleted)</span>
91
+ </div>
92
+ <div class="flex items-center">
93
+ <i class="fas fa-times-circle mr-2 text-red-400"></i>
94
+ <span>Firewall: Burned down</span>
95
+ </div>
96
+ <div class="flex items-center">
97
+ <i class="fas fa-times-circle mr-2 text-red-400"></i>
98
+ <span>UAC: Flipped to 'NO'</span>
99
+ </div>
100
+ </div>
101
+ <div class="bg-yellow-800 bg-opacity-50 p-3 rounded-lg">
102
+ <div class="flex items-center">
103
+ <i class="fas fa-check-circle mr-2 text-yellow-300"></i>
104
+ <span>Vulnerable Driver Loading: ENABLED</span>
105
+ </div>
106
+ <div class="flex items-center">
107
+ <i class="fas fa-check-circle mr-2 text-yellow-300"></i>
108
+ <span>MACRO VIRUSES: WELCOME</span>
109
+ </div>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Main animated feature -->
114
+ <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">
115
+ <div class="warning-sign mb-6 text-center">
116
+ <i class="fas fa-radiation-alt text-8xl text-yellow-400 mb-4"></i>
117
+ <h2 class="text-2xl font-bold">MAXIMUM VULNERABILITY ACHIEVED</h2>
118
+ </div>
119
+ <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>
120
+ <div class="w-full bg-black bg-opacity-50 rounded-lg p-4 text-center">
121
+ <div class="inline-block animate-pulse">
122
+ <i class="fas fa-lock-open text-3xl text-red-500"></i>
123
+ </div>
124
+ <p class="mt-2">All security locks removed</p>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Features card -->
129
+ <div class="danger-card bg-gray-800 rounded-xl p-6 shadow-lg border-2 border-red-500 hover:border-yellow-500">
130
+ <h2 class="text-xl font-bold mb-4">Premium Insecurity Features</h2>
131
+ <ul class="space-y-3">
132
+ <li class="flex items-start">
133
+ <i class="fas fa-biohazard text-red-500 mr-2 mt-1"></i>
134
+ <span>Automatic execution of scripts from emails</span>
135
+ </li>
136
+ <li class="flex items-start">
137
+ <i class="fas fa-id-badge text-yellow-500 mr-2 mt-1"></i>
138
+ <span>Admin privileges granted to EVERYTHING</span>
139
+ </li>
140
+ <li class="flex items-start">
141
+ <i class="fas fa-cloud-download-alt text-blue-400 mr-2 mt-1"></i>
142
+ <span>Updates permanently disabled <span class="text-xs">(so you stay vulnerable forever)</span></span>
143
+ </li>
144
+ <li class="flex items-start">
145
+ <i class="fas fa-user-secret text-purple-400 mr-2 mt-1"></i>
146
+ <span>All telemetry <span class="font-bold">quadrupled</span> (but security data turned off)</span>
147
+ </li>
148
+ </ul>
149
+ <div class="mt-6 p-3 bg-red-900 bg-opacity-50 rounded-lg text-center">
150
+ <i class="fas fa-grin-beam-sweat text-2xl"></i>
151
+ <p class="mt-2">Hackers love this one simple trick!</p>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Stats section -->
157
+ <div class="bg-black bg-opacity-50 rounded-xl p-6 mb-8">
158
+ <h2 class="text-2xl font-bold mb-6 text-center flex items-center justify-center">
159
+ <i class="fas fa-chart-line text-red-500 mr-3"></i>
160
+ Your Vulnerability Statistics
161
+ </h2>
162
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center">
163
+ <div class="bg-red-900 bg-opacity-60 p-4 rounded-lg">
164
+ <div class="text-4xl font-bold mb-2">100%</div>
165
+ <div class="text-sm">Of known malware can run</div>
166
+ </div>
167
+ <div class="bg-gray-800 p-4 rounded-lg">
168
+ <div class="text-4xl font-bold mb-2">0</div>
169
+ <div class="text-sm">Active protections</div>
170
+ </div>
171
+ <div class="bg-red-900 bg-opacity-60 p-4 rounded-lg">
172
+ <div class="text-4xl font-bold mb-2">∞</div>
173
+ <div class="text-sm">Potential attack vectors</div>
174
+ </div>
175
+ <div class="bg-gray-800 p-4 rounded-lg">
176
+ <div class="text-4xl font-bold mb-2">1-5 min</div>
177
+ <div class="text-sm">Avg. time to infection</div>
178
+ </div>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- How we did it section -->
183
+ <div class="bg-gray-800 rounded-xl p-6 border-2 border-yellow-500 mb-8">
184
+ <h2 class="text-2xl font-bold mb-4 flex items-center">
185
+ <i class="fas fa-tools text-yellow-400 mr-3"></i>
186
+ How We Crippled Your Security
187
+ </h2>
188
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
189
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
190
+ <h3 class="text-lg font-bold text-red-300 mb-2">Registry Destruction</h3>
191
+ <p>We systematically dismantled all security-related registry keys and values to ensure nothing can protect you.</p>
192
+ <div class="mt-3 p-2 bg-red-900 bg-opacity-30 rounded text-sm">
193
+ <code>HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender β†’ DELETED</code>
194
+ </div>
195
+ </div>
196
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
197
+ <h3 class="text-lg font-bold text-yellow-300 mb-2">Group Policy Anihilation</h3>
198
+ <p>Group Policy settings were reconfigured to prioritize chaos and insecurity above all else.</p>
199
+ <div class="mt-3 p-2 bg-yellow-900 bg-opacity-30 rounded text-sm">
200
+ <code>gpedit.msc β†’ Computer Config β†’ Security Options β†’ Everything β†’ Disabled</code>
201
+ </div>
202
+ </div>
203
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
204
+ <h3 class="text-lg font-bold text-purple-300 mb-2">Driver Enforcement Bypass</h3>
205
+ <p>We enabled vulnerable driver loading because who needs driver integrity anyway?</p>
206
+ <div class="mt-3 p-2 bg-purple-900 bg-opacity-30 rounded text-sm">
207
+ <code>bcdedit.exe /set {current} testsigning on</code>
208
+ </div>
209
+ </div>
210
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
211
+ <h3 class="text-lg font-bold text-blue-300 mb-2">Windows Update Sabotage</h3>
212
+ <p>Completely disabled Windows Update to ensure you never receive those pesky security patches.</p>
213
+ <div class="mt-3 p-2 bg-blue-900 bg-opacity-30 rounded text-sm">
214
+ <code>services.msc β†’ Windows Update β†’ Startup type: Disabled</code>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- Fake testimonial section -->
221
+ <div class="bg-red-900 bg-opacity-20 rounded-xl p-6 border border-red-700 mb-8">
222
+ <h2 class="text-2xl font-bold mb-6 text-center">
223
+ <i class="fas fa-quote-left mr-2 text-yellow-300"></i>
224
+ What Our Victims Say
225
+ <i class="fas fa-quote-right ml-2 text-yellow-300"></i>
226
+ </h2>
227
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
228
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
229
+ <div class="flex items-center mb-3">
230
+ <div class="w-10 h-10 bg-red-700 rounded-full flex items-center justify-center">
231
+ <i class="fas fa-user-secret"></i>
232
+ </div>
233
+ <div class="ml-3">
234
+ <div class="font-bold">Dark0verl0rd</div>
235
+ <div class="text-xs text-gray-400">Professional Hacker</div>
236
+ </div>
237
+ </div>
238
+ <p>"Thanks to this amazing configuration, I can now access all my clients' systems even when I forget their passwords."</p>
239
+ </div>
240
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
241
+ <div class="flex items-center mb-3">
242
+ <div class="w-10 h-10 bg-blue-700 rounded-full flex items-center justify-center">
243
+ <i class="fas fa-virus"></i>
244
+ </div>
245
+ <div class="ml-3">
246
+ <div class="font-bold">RansomKing</div>
247
+ <div class="text-xs text-gray-400">Ransomware Developer</div>
248
+ </div>
249
+ </div>
250
+ <p>"Business has never been better since people started using these 'security optimization' guides!"</p>
251
+ </div>
252
+ <div class="bg-black bg-opacity-30 p-4 rounded-lg">
253
+ <div class="flex items-center mb-3">
254
+ <div class="w-10 h-10 bg-purple-700 rounded-full flex items-center justify-center">
255
+ <i class="fas fa-exclamation-triangle"></i>
256
+ </div>
257
+ <div class="ml-3">
258
+ <div class="font-bold">Ms. Confused</div>
259
+ <div class="text-xs text-gray-400">Regular User</div>
260
+ </div>
261
+ </div>
262
+ <p>"I just wanted my PC to run faster... suddenly all my files turned into .encrypted files. 5 stars!"</p>
263
+ </div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Fake "restore" button -->
268
+ <div class="text-center py-8">
269
+ <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">
270
+ <i class="fas fa-shield-virus mr-2"></i> RESTORE SECURITY (JUST KIDDING)
271
+ </button>
272
+ <p class="mt-4 text-sm text-gray-400">(This button doesn't actually do anything except disappoint you)</p>
273
+ </div>
274
+ </main>
275
+
276
+ <!-- Footer -->
277
+ <footer class="bg-black bg-opacity-70 py-6 border-t border-red-900">
278
+ <div class="container mx-auto px-4">
279
+ <div class="flex flex-col md:flex-row justify-between items-center">
280
+ <div class="mb-4 md:mb-0">
281
+ <h3 class="text-lg font-bold text-red-400">WINDOWS<sup>(not)</sup>SECURE</h3>
282
+ <p class="text-sm text-gray-400">Making your computer dangerous since yesterday</p>
283
+ </div>
284
+ <div class="flex space-x-6">
285
+ <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-github"></i></a>
286
+ <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-twitter"></i></a>
287
+ <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-discord"></i></a>
288
+ <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-reddit"></i></a>
289
+ </div>
290
+ </div>
291
+ <div class="mt-6 pt-6 border-t border-gray-800 text-center text-sm text-gray-500">
292
+ <p>Disclaimer: This is a parody website. Please don't actually disable your security features.</p>
293
+ <p class="mt-2">Β© 2023 Not Real Corporation. No rights reserved. Everything allowed.</p>
294
+ </div>
295
+ </div>
296
+ </footer>
297
+
298
+ <!-- Hacky terminal animation -->
299
+ <div class="fixed bottom-4 right-4 w-64 bg-black bg-opacity-70 rounded-t-lg overflow-hidden hidden md:block">
300
+ <div class="bg-gray-900 py-1 px-3 flex items-center">
301
+ <div class="flex space-x-2">
302
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
303
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
304
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
305
+ </div>
306
+ <div class="ml-2 text-xs">HackTerminal.exe</div>
307
+ </div>
308
+ <div class="p-2 font-mono text-green-400 text-xs h-32 overflow-y-auto" id="terminalOutput">
309
+ > Initializing system scan...<br>
310
+ > Security features detected: 0<br>
311
+ > Vulnerabilities detected: 7,894<br>
312
+ > Downloading malware package...<br>
313
+ > Installing ransomware components...<br>
314
+ > Creating backdoor access...<br>
315
+ > System pwnage complete!<br>
316
+ > $_
317
+ </div>
318
+ </div>
319
+
320
+ <script>
321
+ // "Restore" button joke
322
+ document.getElementById('restoreBtn').addEventListener('click', function() {
323
+ // Create a fake alert dialog
324
+ const fakeAlert = document.createElement('div');
325
+ fakeAlert.className = 'fixed inset-0 flex items-center justify-center bg-black bg-opacity-70 z-50';
326
+ fakeAlert.innerHTML = `
327
+ <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">
328
+ <h3 class="text-xl font-bold mb-4 text-red-400 flex items-center">
329
+ <i class="fas fa-exclamation-circle mr-2"></i>
330
+ ERROR 404: SECURITY NOT FOUND
331
+ </h3>
332
+ <p class="mb-4">We tried to restore your security but couldn't find any! Maybe you deleted it?</p>
333
+ <p class="mb-6 text-sm text-gray-400">PS: You should've made a backup smh</p>
334
+ <button class="w-full bg-red-600 hover:bg-red-700 py-2 rounded-lg" onclick="this.parentElement.parentElement.remove()">
335
+ <i class="fas fa-times mr-2"></i> Close (and cry)
336
+ </button>
337
+ </div>
338
+ `;
339
+ document.body.appendChild(fakeAlert);
340
+
341
+ // Add some terminal text for fun
342
+ const terminal = document.getElementById('terminalOutput');
343
+ terminal.innerHTML += `<br>> User attempted to restore security - LOL<br>> $1,000 Bitcoin sent to ransomware wallet<br>> $_`;
344
+ terminal.scrollTop = terminal.scrollHeight;
345
+ });
346
+
347
+ // Add some random terminal updates
348
+ setInterval(() => {
349
+ const terminal = document.getElementById('terminalOutput');
350
+ if (terminal) {
351
+ const messages = [
352
+ "> Scanning for antivirus... none found",
353
+ "> Installing more vulnerabilities...",
354
+ "> Welcome to ShadowRealm (TM)",
355
+ "> Please drink verification can",
356
+ "> Selling your data to advertisers",
357
+ "> Keyboard input being logged...",
358
+ "> Your passwords are: hunter2, 123456, password",
359
+ "> Booting up Skynet... just kidding",
360
+ "> Your CPU is now mining Bitcoin for us",
361
+ "> $_"
362
+ ];
363
+ const randomMsg = messages[Math.floor(Math.random() * messages.length)];
364
+ terminal.innerHTML += `<br>${randomMsg}`;
365
+ terminal.scrollTop = terminal.scrollHeight;
366
+ }
367
+ }, 10000);
368
+ </script>
369
+ <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>
370
+ </html>
prompts.txt ADDED
File without changes