Thekabos commited on
Commit
5d68b12
·
verified ·
1 Parent(s): 22f7fcc

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +306 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Kabos Security
3
- emoji: 🔥
4
- colorFrom: green
5
- colorTo: blue
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: kabos-security
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: green
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,306 @@
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>Ethical AI Research Platform</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
12
+ }
13
+ .tool-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
16
+ }
17
+ .terminal {
18
+ font-family: 'Courier New', monospace;
19
+ background-color: #1e1e1e;
20
+ color: #00ff00;
21
+ }
22
+ .blinking-cursor {
23
+ animation: blink 1s infinite;
24
+ }
25
+ @keyframes blink {
26
+ 0%, 100% { opacity: 1; }
27
+ 50% { opacity: 0; }
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="gradient-bg text-gray-100 min-h-screen">
32
+ <div class="container mx-auto px-4 py-8">
33
+ <!-- Header -->
34
+ <header class="flex justify-between items-center mb-12">
35
+ <div class="flex items-center space-x-4">
36
+ <i class="fas fa-robot text-3xl text-emerald-400"></i>
37
+ <h1 class="text-2xl font-bold bg-gradient-to-r from-emerald-400 to-blue-500 bg-clip-text text-transparent">
38
+ Ethical AI Research Platform
39
+ </h1>
40
+ </div>
41
+ <nav class="hidden md:flex space-x-6">
42
+ <a href="#" class="hover:text-emerald-400 transition">Dashboard</a>
43
+ <a href="#" class="hover:text-emerald-400 transition">Tools</a>
44
+ <a href="#" class="hover:text-emerald-400 transition">Documentation</a>
45
+ <a href="#" class="hover:text-emerald-400 transition">Training</a>
46
+ </nav>
47
+ <button class="md:hidden text-xl">
48
+ <i class="fas fa-bars"></i>
49
+ </button>
50
+ </header>
51
+
52
+ <!-- Warning Banner -->
53
+ <div class="bg-yellow-900/50 border-l-4 border-yellow-500 p-4 mb-8 rounded-r">
54
+ <div class="flex items-start">
55
+ <div class="flex-shrink-0">
56
+ <i class="fas fa-exclamation-triangle text-yellow-400"></i>
57
+ </div>
58
+ <div class="ml-3">
59
+ <h3 class="text-sm font-medium text-yellow-200">WARNING: EDUCATIONAL USE ONLY</h3>
60
+ <div class="mt-2 text-sm text-yellow-100">
61
+ <p>
62
+ This platform is for authorized cybersecurity research and education only.
63
+ All activities are monitored and logged. Unauthorized use is strictly prohibited.
64
+ </p>
65
+ </div>
66
+ </div>
67
+ </div>
68
+ </div>
69
+
70
+ <!-- Main Content -->
71
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
72
+ <!-- Left Column - Tools -->
73
+ <div class="lg:col-span-2 space-y-6">
74
+ <!-- Quick Actions -->
75
+ <div class="bg-slate-800/50 rounded-xl p-6 border border-slate-700">
76
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
77
+ <i class="fas fa-bolt text-emerald-400 mr-2"></i>
78
+ Quick Actions
79
+ </h2>
80
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
81
+ <button class="bg-emerald-600 hover:bg-emerald-700 text-white py-3 px-4 rounded-lg flex flex-col items-center transition">
82
+ <i class="fas fa-shield-alt text-xl mb-2"></i>
83
+ <span class="text-xs">Vulnerability Scan</span>
84
+ </button>
85
+ <button class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-4 rounded-lg flex flex-col items-center transition">
86
+ <i class="fas fa-network-wired text-xl mb-2"></i>
87
+ <span class="text-xs">Network Analysis</span>
88
+ </button>
89
+ <button class="bg-purple-600 hover:bg-purple-700 text-white py-3 px-4 rounded-lg flex flex-col items-center transition">
90
+ <i class="fas fa-code text-xl mb-2"></i>
91
+ <span class="text-xs">Code Review</span>
92
+ </button>
93
+ <button class="bg-red-600 hover:bg-red-700 text-white py-3 px-4 rounded-lg flex flex-col items-center transition">
94
+ <i class="fas fa-lock-open text-xl mb-2"></i>
95
+ <span class="text-xs">Password Audit</span>
96
+ </button>
97
+ </div>
98
+ </div>
99
+
100
+ <!-- AI Agent Builder -->
101
+ <div class="bg-slate-800/50 rounded-xl p-6 border border-slate-700">
102
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
103
+ <i class="fas fa-robot text-emerald-400 mr-2"></i>
104
+ AI Agent Builder
105
+ </h2>
106
+ <div class="space-y-4">
107
+ <div>
108
+ <label class="block text-sm font-medium mb-1">Agent Type</label>
109
+ <select class="w-full bg-slate-700 border border-slate-600 rounded-md p-2 text-sm">
110
+ <option>Vulnerability Scanner</option>
111
+ <option>Network Monitor</option>
112
+ <option>Penetration Testing</option>
113
+ <option>Forensic Analysis</option>
114
+ </select>
115
+ </div>
116
+ <div>
117
+ <label class="block text-sm font-medium mb-1">Behavior Profile</label>
118
+ <select class="w-full bg-slate-700 border border-slate-600 rounded-md p-2 text-sm">
119
+ <option>Stealthy</option>
120
+ <option>Aggressive</option>
121
+ <option>Defensive</option>
122
+ <option>Adaptive</option>
123
+ </select>
124
+ </div>
125
+ <div>
126
+ <label class="block text-sm font-medium mb-1">Target Parameters</label>
127
+ <input type="text" class="w-full bg-slate-700 border border-slate-600 rounded-md p-2 text-sm" placeholder="IP/URL range">
128
+ </div>
129
+ <button class="w-full bg-emerald-600 hover:bg-emerald-700 text-white py-2 px-4 rounded-md transition flex items-center justify-center">
130
+ <i class="fas fa-plus-circle mr-2"></i> Create Agent
131
+ </button>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Research Tools -->
136
+ <div class="bg-slate-800/50 rounded-xl p-6 border border-slate-700">
137
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
138
+ <i class="fas fa-tools text-emerald-400 mr-2"></i>
139
+ Research Tools
140
+ </h2>
141
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
142
+ <!-- Tool Cards -->
143
+ <div class="tool-card bg-slate-700/50 hover:bg-slate-700 p-4 rounded-lg border border-slate-600 transition cursor-pointer">
144
+ <div class="flex items-start">
145
+ <div class="bg-emerald-900/30 p-2 rounded-md mr-3">
146
+ <i class="fas fa-search text-emerald-400"></i>
147
+ </div>
148
+ <div>
149
+ <h3 class="font-medium">Reconnaissance Suite</h3>
150
+ <p class="text-xs text-slate-300 mt-1">Passive information gathering tools</p>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ <div class="tool-card bg-slate-700/50 hover:bg-slate-700 p-4 rounded-lg border border-slate-600 transition cursor-pointer">
155
+ <div class="flex items-start">
156
+ <div class="bg-blue-900/30 p-2 rounded-md mr-3">
157
+ <i class="fas fa-terminal text-blue-400"></i>
158
+ </div>
159
+ <div>
160
+ <h3 class="font-medium">Exploit Framework</h3>
161
+ <p class="text-xs text-slate-300 mt-1">Known vulnerability database</p>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ <div class="tool-card bg-slate-700/50 hover:bg-slate-700 p-4 rounded-lg border border-slate-600 transition cursor-pointer">
166
+ <div class="flex items-start">
167
+ <div class="bg-purple-900/30 p-2 rounded-md mr-3">
168
+ <i class="fas fa-lock text-purple-400"></i>
169
+ </div>
170
+ <div>
171
+ <h3 class="font-medium">Crypto Analysis</h3>
172
+ <p class="text-xs text-slate-300 mt-1">Encryption/decryption tools</p>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ <div class="tool-card bg-slate-700/50 hover:bg-slate-700 p-4 rounded-lg border border-slate-600 transition cursor-pointer">
177
+ <div class="flex items-start">
178
+ <div class="bg-red-900/30 p-2 rounded-md mr-3">
179
+ <i class="fas fa-bug text-red-400"></i>
180
+ </div>
181
+ <div>
182
+ <h3 class="font-medium">Malware Analysis</h3>
183
+ <p class="text-xs text-slate-300 mt-1">Sandbox environment</p>
184
+ </div>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Right Column - Terminal and Status -->
192
+ <div class="space-y-6">
193
+ <!-- Terminal -->
194
+ <div class="bg-slate-800/50 rounded-xl p-6 border border-slate-700 h-96">
195
+ <div class="flex justify-between items-center mb-4">
196
+ <h2 class="text-xl font-semibold flex items-center">
197
+ <i class="fas fa-terminal text-emerald-400 mr-2"></i>
198
+ Research Terminal
199
+ </h2>
200
+ <div class="flex space-x-2">
201
+ <button class="bg-slate-700 hover:bg-slate-600 p-1 rounded">
202
+ <i class="fas fa-cog"></i>
203
+ </button>
204
+ <button class="bg-slate-700 hover:bg-slate-600 p-1 rounded">
205
+ <i class="fas fa-expand"></i>
206
+ </button>
207
+ </div>
208
+ </div>
209
+ <div class="terminal rounded-md p-4 h-64 overflow-y-auto">
210
+ <div class="mb-2">
211
+ <span class="text-blue-400">user@research-platform:~$</span>
212
+ <span class="ml-2">init_security_scan --target example.com</span>
213
+ </div>
214
+ <div class="mb-2 text-green-400">
215
+ [+] Initializing ethical scan protocol<br>
216
+ [+] Checking authorization... OK<br>
217
+ [+] Establishing secure connection... OK<br>
218
+ [+] Running passive reconnaissance<br>
219
+ <span class="blinking-cursor">_</span>
220
+ </div>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Activity Log -->
225
+ <div class="bg-slate-800/50 rounded-xl p-6 border border-slate-700">
226
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
227
+ <i class="fas fa-history text-emerald-400 mr-2"></i>
228
+ Recent Activity
229
+ </h2>
230
+ <div class="space-y-3">
231
+ <div class="flex items-start">
232
+ <div class="bg-emerald-900/30 p-1 rounded-full mr-3 mt-1">
233
+ <i class="fas fa-check text-xs text-emerald-400"></i>
234
+ </div>
235
+ <div>
236
+ <p class="text-sm">Created new scanning agent</p>
237
+ <p class="text-xs text-slate-400">2 minutes ago</p>
238
+ </div>
239
+ </div>
240
+ <div class="flex items-start">
241
+ <div class="bg-blue-900/30 p-1 rounded-full mr-3 mt-1">
242
+ <i class="fas fa-info text-xs text-blue-400"></i>
243
+ </div>
244
+ <div>
245
+ <p class="text-sm">Updated exploit database</p>
246
+ <p class="text-xs text-slate-400">15 minutes ago</p>
247
+ </div>
248
+ </div>
249
+ <div class="flex items-start">
250
+ <div class="bg-yellow-900/30 p-1 rounded-full mr-3 mt-1">
251
+ <i class="fas fa-exclamation text-xs text-yellow-400"></i>
252
+ </div>
253
+ <div>
254
+ <p class="text-sm">Security alert: Unusual login attempt</p>
255
+ <p class="text-xs text-slate-400">1 hour ago</p>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Legal Notice -->
262
+ <div class="bg-slate-800/50 rounded-xl p-4 border border-slate-700 text-xs text-slate-400">
263
+ <h3 class="font-medium text-slate-300 mb-1">Legal Notice</h3>
264
+ <p>This platform is for authorized cybersecurity research and education only. All activities are logged and monitored. Unauthorized access or malicious use is strictly prohibited and may violate local and international laws.</p>
265
+ </div>
266
+ </div>
267
+ </div>
268
+ </div>
269
+
270
+ <script>
271
+ // Simple terminal simulation
272
+ document.addEventListener('DOMContentLoaded', function() {
273
+ const terminal = document.querySelector('.terminal');
274
+
275
+ // Simulate terminal output
276
+ setTimeout(() => {
277
+ const newLine = document.createElement('div');
278
+ newLine.className = 'mb-2 text-green-400';
279
+ newLine.innerHTML = '[+] Found 3 open ports: 80, 443, 22<br>'
280
+ + '[+] Running service detection...<br>'
281
+ + '<span class="blinking-cursor">_</span>';
282
+ terminal.appendChild(newLine);
283
+ terminal.scrollTop = terminal.scrollHeight;
284
+ }, 3000);
285
+
286
+ // Tool card click effect
287
+ const toolCards = document.querySelectorAll('.tool-card');
288
+ toolCards.forEach(card => {
289
+ card.addEventListener('click', function() {
290
+ const terminal = document.querySelector('.terminal');
291
+ const newLine = document.createElement('div');
292
+ newLine.className = 'mb-2 text-green-400';
293
+
294
+ const toolName = this.querySelector('h3').textContent;
295
+ newLine.innerHTML = `[+] Initializing ${toolName} tool...<br>`
296
+ + '[+] Loading modules...<br>'
297
+ + '<span class="blinking-cursor">_</span>';
298
+
299
+ terminal.appendChild(newLine);
300
+ terminal.scrollTop = terminal.scrollHeight;
301
+ });
302
+ });
303
+ });
304
+ </script>
305
+ <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=Thekabos/kabos-security" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
306
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create an app for creating AI agents and unethical hacking that contains all the tools and exploits of WormGPT and DarkGPT for educational purposes.