bmf911 commited on
Commit
ee7e24c
·
verified ·
1 Parent(s): be9083f

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +386 -211
  2. prompts.txt +2 -1
index.html CHANGED
@@ -3,260 +3,435 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Open Computer Agent Virtual</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 pulse {
11
- 0%, 100% { opacity: 1; }
12
- 50% { opacity: 0.5; }
 
13
  }
14
- .typing-indicator::after {
15
- content: '...';
16
- animation: typing 1.5s infinite;
17
  }
18
- @keyframes typing {
19
- 0% { content: '.'; }
20
- 33% { content: '..'; }
21
- 66% { content: '...'; }
22
  }
23
- .glow-effect {
24
- box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
25
  }
26
- .terminal-scrollbar::-webkit-scrollbar {
27
- width: 6px;
28
  }
29
- .terminal-scrollbar::-webkit-scrollbar-thumb {
 
 
 
 
 
 
30
  background-color: rgba(59, 130, 246, 0.5);
31
- border-radius: 3px;
 
 
 
32
  }
33
  </style>
34
  </head>
35
- <body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col">
36
- <!-- Header -->
37
- <header class="bg-gray-800 border-b border-gray-700 p-4 flex items-center justify-between">
38
- <div class="flex items-center space-x-3">
39
- <div class="w-10 h-10 bg-blue-500 rounded-full flex items-center justify-center">
40
- <i class="fas fa-robot text-xl"></i>
41
- </div>
42
- <h1 class="text-xl font-bold">Open Computer Agent</h1>
43
- </div>
44
- <div class="flex space-x-4">
45
- <button class="px-3 py-1 bg-gray-700 hover:bg-gray-600 rounded-md transition">
46
- <i class="fas fa-cog"></i>
47
- </button>
48
- <button class="px-3 py-1 bg-gray-700 hover:bg-gray-600 rounded-md transition">
49
- <i class="fas fa-question-circle"></i>
50
- </button>
51
- <button class="px-3 py-1 bg-blue-600 hover:bg-blue-500 rounded-md transition">
52
- <i class="fas fa-power-off"></i>
53
- </button>
54
- </div>
55
- </header>
56
-
57
- <!-- Main Content -->
58
- <main class="flex-1 flex flex-col md:flex-row p-4 gap-4">
59
- <!-- Sidebar -->
60
- <aside class="w-full md:w-64 bg-gray-800 rounded-lg p-4 flex flex-col">
61
- <div class="mb-6">
62
- <h2 class="text-lg font-semibold mb-2">Agent Status</h2>
63
- <div class="bg-gray-700 p-3 rounded-lg">
64
- <div class="flex items-center mb-2">
65
- <div class="w-3 h-3 bg-green-500 rounded-full mr-2"></div>
66
- <span>Active</span>
67
- </div>
68
- <div class="text-sm text-gray-400">
69
- <p>Version: 2.4.1</p>
70
- <p>Uptime: 3h 42m</p>
71
  </div>
 
 
 
72
  </div>
73
- </div>
74
-
75
- <div class="mb-6">
76
- <h2 class="text-lg font-semibold mb-2">Quick Actions</h2>
77
- <div class="space-y-2">
78
- <button class="w-full text-left px-3 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition flex items-center">
79
- <i class="fas fa-terminal mr-2"></i> New Terminal
80
- </button>
81
- <button class="w-full text-left px-3 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition flex items-center">
82
- <i class="fas fa-code mr-2"></i> Code Editor
83
- </button>
84
- <button class="w-full text-left px-3 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition flex items-center">
85
- <i class="fas fa-database mr-2"></i> Data Explorer
 
 
 
 
 
 
 
 
 
86
  </button>
87
  </div>
88
  </div>
89
-
90
- <div class="mt-auto">
91
- <h2 class="text-lg font-semibold mb-2">System Resources</h2>
92
- <div class="space-y-2">
93
- <div>
94
- <div class="flex justify-between text-sm mb-1">
95
- <span>CPU</span>
96
- <span>42%</span>
 
 
 
 
 
 
 
 
 
97
  </div>
98
- <div class="w-full bg-gray-700 rounded-full h-2">
99
- <div class="bg-blue-500 h-2 rounded-full" style="width: 42%"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  </div>
101
  </div>
102
- <div>
103
- <div class="flex justify-between text-sm mb-1">
104
- <span>Memory</span>
105
- <span>68%</span>
 
 
 
 
 
 
 
106
  </div>
107
- <div class="w-full bg-gray-700 rounded-full h-2">
108
- <div class="bg-purple-500 h-2 rounded-full" style="width: 68%"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  </div>
110
  </div>
111
- </div>
112
- </div>
113
- </aside>
114
-
115
- <!-- Main Panel -->
116
- <div class="flex-1 flex flex-col">
117
- <!-- Terminal Window -->
118
- <div class="flex-1 bg-gray-800 rounded-lg overflow-hidden flex flex-col">
119
- <div class="bg-gray-700 px-4 py-2 flex items-center justify-between border-b border-gray-600">
120
- <div class="flex items-center space-x-2">
121
- <div class="w-3 h-3 bg-red-500 rounded-full"></div>
122
- <div class="w-3 h-3 bg-yellow-500 rounded-full"></div>
123
- <div class="w-3 h-3 bg-green-500 rounded-full"></div>
124
- <span class="ml-2 text-sm">Terminal</span>
125
- </div>
126
- <div class="flex space-x-2">
127
- <button class="text-gray-400 hover:text-white">
128
- <i class="fas fa-expand"></i>
129
- </button>
130
- <button class="text-gray-400 hover:text-white">
131
- <i class="fas fa-times"></i>
132
- </button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  </div>
134
  </div>
135
- <div id="terminal-content" class="flex-1 p-4 overflow-y-auto terminal-scrollbar font-mono text-sm">
136
- <div class="mb-2">
137
- <span class="text-green-400">user@oca-virtual:~$</span> <span class="text-blue-400">welcome</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  </div>
139
- <div class="mb-4">
140
- <p>Open Computer Agent Virtual v2.4.1</p>
141
- <p>Type 'help' for available commands</p>
 
 
 
 
 
142
  </div>
143
- <div id="command-history"></div>
144
- <div class="flex items-center">
145
- <span class="text-green-400">user@oca-virtual:~$</span>
146
- <input id="command-input" type="text" class="bg-transparent border-none outline-none flex-1 ml-2" autofocus>
147
- <div id="typing-indicator" class="typing-indicator ml-2 text-gray-400 hidden"></div>
 
 
 
 
 
 
 
 
 
148
  </div>
149
  </div>
150
  </div>
151
-
152
- <!-- Quick Tools -->
153
- <div class="mt-4 bg-gray-800 rounded-lg p-4">
154
- <h2 class="text-lg font-semibold mb-3">Quick Tools</h2>
155
- <div class="grid grid-cols-2 md:grid-cols-4 gap-3">
156
- <button class="p-3 bg-gray-700 hover:bg-gray-600 rounded-lg transition flex flex-col items-center">
157
- <i class="fas fa-file-code text-blue-400 text-2xl mb-2"></i>
158
- <span>New Script</span>
159
- </button>
160
- <button class="p-3 bg-gray-700 hover:bg-gray-600 rounded-lg transition flex flex-col items-center">
161
- <i class="fas fa-chart-line text-purple-400 text-2xl mb-2"></i>
162
- <span>Analytics</span>
163
- </button>
164
- <button class="p-3 bg-gray-700 hover:bg-gray-600 rounded-lg transition flex flex-col items-center">
165
- <i class="fas fa-network-wired text-green-400 text-2xl mb-2"></i>
166
- <span>Network</span>
167
- </button>
168
- <button class="p-3 bg-gray-700 hover:bg-gray-600 rounded-lg transition flex flex-col items-center">
169
- <i class="fas fa-shield-alt text-yellow-400 text-2xl mb-2"></i>
170
- <span>Security</span>
171
- </button>
 
 
 
 
 
 
 
 
 
 
172
  </div>
173
  </div>
174
- </div>
175
- </main>
176
-
177
- <!-- Footer -->
178
- <footer class="bg-gray-800 border-t border-gray-700 p-3 text-sm text-gray-400 flex justify-between items-center">
179
- <div class="flex items-center space-x-4">
180
- <span>Status: <span class="text-green-400">Connected</span></span>
181
- <span>Latency: 28ms</span>
182
- </div>
183
- <div>
184
- <span>© 2023 Open Computer Agent Virtual</span>
185
- </div>
186
- </footer>
187
-
188
  <script>
189
  document.addEventListener('DOMContentLoaded', function() {
190
- const commandInput = document.getElementById('command-input');
191
- const commandHistory = document.getElementById('command-history');
192
- const typingIndicator = document.getElementById('typing-indicator');
193
- const terminalContent = document.getElementById('terminal-content');
194
-
195
- // Sample commands and responses
196
- const commands = {
197
- 'help': 'Available commands: help, about, status, clear, time, date, network, tasks',
198
- 'about': 'Open Computer Agent Virtual v2.4.1\nAn AI-powered virtual assistant for system management and automation.',
199
- 'status': 'System Status:\n- CPU: 42%\n- Memory: 68%\n- Storage: 45%\n- Network: Active',
200
- 'clear': function() { commandHistory.innerHTML = ''; return ''; },
201
- 'time': function() { return new Date().toLocaleTimeString(); },
202
- 'date': function() { return new Date().toLocaleDateString(); },
203
- 'network': 'Network Status:\n- IP: 192.168.1.105\n- Gateway: 192.168.1.1\n- DNS: 8.8.8.8',
204
- 'tasks': 'Running Tasks:\n1. System Monitor (PID: 1423)\n2. Network Service (PID: 1567)\n3. Security Agent (PID: 1621)'
205
- };
206
-
207
- // Auto-scroll to bottom of terminal
208
- function scrollToBottom() {
209
- terminalContent.scrollTop = terminalContent.scrollHeight;
210
  }
211
-
212
- // Process command
213
- function processCommand(cmd) {
214
- const prompt = document.createElement('div');
215
- prompt.className = 'mb-2';
216
- prompt.innerHTML = `<span class="text-green-400">user@oca-virtual:~$</span> <span class="text-blue-400">${cmd}</span>`;
217
- commandHistory.appendChild(prompt);
218
-
219
- // Show typing indicator
220
- typingIndicator.classList.remove('hidden');
221
- scrollToBottom();
222
-
223
- // Simulate processing delay
224
  setTimeout(() => {
225
- typingIndicator.classList.add('hidden');
226
-
227
- const response = document.createElement('div');
228
- response.className = 'mb-4';
229
-
230
- if (cmd in commands) {
231
- const cmdResponse = typeof commands[cmd] === 'function' ? commands[cmd]() : commands[cmd];
232
- response.textContent = cmdResponse;
233
- } else {
234
- response.textContent = `Command not found: ${cmd}. Type 'help' for available commands.`;
235
- }
236
 
237
- commandHistory.appendChild(response);
238
- scrollToBottom();
239
- }, 800 + Math.random() * 800);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  }
241
-
242
- // Handle command input
243
- commandInput.addEventListener('keydown', function(e) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  if (e.key === 'Enter') {
245
- const cmd = commandInput.value.trim();
246
- if (cmd) {
247
- processCommand(cmd);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  }
249
- commandInput.value = '';
250
  }
251
  });
252
-
253
- // Focus input on terminal click
254
- terminalContent.addEventListener('click', function() {
255
- commandInput.focus();
256
- });
257
-
258
- // Initial focus
259
- commandInput.focus();
260
  });
261
  </script>
262
  <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=bmf911/open-computer-terminal-basic" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PyFlood Suite | Steam ID/IP/Email Tools</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
+ <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Roboto+Mono:wght@300;400;500&display=swap" rel="stylesheet">
10
  <style>
11
  @keyframes pulse {
12
+ 0% { background-color: rgba(59, 130, 246, 0.1); }
13
+ 50% { background-color: rgba(59, 130, 246, 0.3); }
14
+ 100% { background-color: rgba(59, 130, 246, 0.1); }
15
  }
16
+ .neon-title {
17
+ text-shadow: 0 0 5px rgba(59, 130, 246, 0.7), 0 0 10px rgba(59, 130, 246, 0.5);
 
18
  }
19
+ .hacker-font {
20
+ font-family: 'Roboto Mono', monospace;
 
 
21
  }
22
+ .terminal-font {
23
+ font-family: 'Roboto Mono', monospace;
24
  }
25
+ .glowing-border {
26
+ box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
27
  }
28
+ .panel-glow {
29
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
30
+ }
31
+ .console-scrollbar::-webkit-scrollbar {
32
+ width: 8px;
33
+ }
34
+ .console-scrollbar::-webkit-scrollbar-thumb {
35
  background-color: rgba(59, 130, 246, 0.5);
36
+ border-radius: 4px;
37
+ }
38
+ .loading-pulse {
39
+ animation: pulse 1.5s infinite;
40
  }
41
  </style>
42
  </head>
43
+ <body class="bg-gray-900 text-gray-100">
44
+ <!-- Main Container -->
45
+ <div class="min-h-screen flex flex-col">
46
+ <!-- Header -->
47
+ <header class="bg-black py-4 px-6 border-b border-blue-500/30">
48
+ <div class="flex flex-col md:flex-row justify-between items-center">
49
+ <div class="flex items-center space-x-3 mb-4 md:mb-0">
50
+ <div class="bg-blue-500 rounded-full p-2">
51
+ <i class="fas fa-bomb fa-lg"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  </div>
53
+ <h1 class="text-2xl font-bold neon-title hacker-font">
54
+ <span class="text-blue-400">Py</span>Flood Suite
55
+ </h1>
56
  </div>
57
+
58
+ <nav class="flex space-x-1 md:space-x-4">
59
+ <a href="#" class="px-3 py-2 rounded-md bg-blue-500 hover:bg-blue-600 transition">
60
+ <i class="fas fa-fire mr-2"></i>Steam Tools
61
+ </a>
62
+ <a href="#" class="px-3 py-2 rounded-md bg-gray-800 hover:bg-gray-700 transition">
63
+ <i class="fas fa-network-wired mr-2"></i>IP Tools
64
+ </a>
65
+ <a href="#" class="px-3 py-2 rounded-md bg-gray-800 hover:bg-gray-700 transition">
66
+ <i class="fas fa-envelope mr-2"></i>Email Tools
67
+ </a>
68
+ </nav>
69
+
70
+ <div class="flex items-center mt-4 md:mt-0">
71
+ <div class="relative">
72
+ <div class="absolute inset-y-0 left-0 flex items-center pl-3">
73
+ <i class="fas fa-search text-gray-500"></i>
74
+ </div>
75
+ <input type="text" placeholder="Search tools..." class="pl-10 pr-4 py-2 bg-gray-800 rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500 w-48">
76
+ </div>
77
+ <button class="ml-3 px-4 py-2 bg-gray-800 hover:bg-gray-700 rounded-md">
78
+ <i class="fas fa-user"></i>
79
  </button>
80
  </div>
81
  </div>
82
+ </header>
83
+
84
+ <!-- Main Content -->
85
+ <main class="flex-grow p-6">
86
+ <div class="max-w-6xl mx-auto">
87
+ <!-- Tool Cards -->
88
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
89
+ <!-- Steam ID Flooder -->
90
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 border border-blue-500/30 panel-glow">
91
+ <div class="flex items-start mb-4">
92
+ <div class="bg-blue-500/10 p-3 rounded-lg mr-4">
93
+ <i class="fas fa-steam text-2xl text-blue-400"></i>
94
+ </div>
95
+ <div>
96
+ <h2 class="text-xl font-bold mb-1">Steam ID Flooder</h2>
97
+ <p class="text-gray-400 text-sm">Flood Steam IDs with friend requests or messages</p>
98
+ </div>
99
  </div>
100
+
101
+ <div class="space-y-4 mt-6">
102
+ <div>
103
+ <label class="block text-sm font-medium mb-1">Target Steam IDs</label>
104
+ <textarea class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2 focus:ring-blue-500 focus:border-blue-500 terminal-font" rows="3" placeholder="STEAM_0:0:12345678&#10;STEAM_0:1:87654321&#10;[U:1:98765432]"></textarea>
105
+ <p class="text-xs text-gray-500 mt-1">Enter one Steam ID per line</p>
106
+ </div>
107
+
108
+ <div class="grid grid-cols-2 gap-4">
109
+ <div>
110
+ <label class="block text-sm font-medium mb-1">Request Type</label>
111
+ <select class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2">
112
+ <option>Friend Requests</option>
113
+ <option>Message Flood</option>
114
+ <option>Profile Comments</option>
115
+ </select>
116
+ </div>
117
+
118
+ <div>
119
+ <label class="block text-sm font-medium mb-1">Number of Attacks</label>
120
+ <div class="flex">
121
+ <input type="number" min="1" max="1000" value="50" class="w-full bg-gray-900/70 border border-gray-700 rounded-l-md p-2">
122
+ <button class="bg-gray-700 px-3 rounded-r-md hover:bg-gray-600">
123
+ <i class="fas fa-sync"></i>
124
+ </button>
125
+ </div>
126
+ </div>
127
+ </div>
128
+
129
+ <div>
130
+ <label class="block text-sm font-medium mb-1">Custom Message</label>
131
+ <input type="text" class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2" placeholder="Hello from PyFlood Suite!">
132
+ </div>
133
+
134
+ <div class="flex justify-between mt-6">
135
+ <button id="start-steam" class="px-4 py-2 bg-blue-600 hover:bg-blue-500 rounded-md transition flex items-center">
136
+ <i class="fas fa-play mr-2"></i> Start Flood
137
+ </button>
138
+ <button id="stop-steam" class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition flex items-center">
139
+ <i class="fas fa-stop mr-2"></i> Stop
140
+ </button>
141
+ <button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition flex items-center">
142
+ <i class="fas fa-save mr-2"></i> Save Config
143
+ </button>
144
+ </div>
145
  </div>
146
  </div>
147
+
148
+ <!-- IP Flooder -->
149
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 border border-purple-500/30">
150
+ <div class="flex items-start mb-4">
151
+ <div class="bg-purple-500/10 p-3 rounded-lg mr-4">
152
+ <i class="fas fa-globe-americas text-2xl text-purple-400"></i>
153
+ </div>
154
+ <div>
155
+ <h2 class="text-xl font-bold mb-1">IP Flooder</h2>
156
+ <p class="text-gray-400 text-sm">Flood IP addresses with network traffic</p>
157
+ </div>
158
  </div>
159
+
160
+ <div class="space-y-4 mt-6">
161
+ <div>
162
+ <label class="block text-sm font-medium mb-1">Target IP Addresses</label>
163
+ <textarea class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2" rows="3" placeholder="192.168.1.1&#10;10.0.0.5"></textarea>
164
+ <p class="text-xs text-gray-500 mt-1">One IP per line. Max 20 targets</p>
165
+ </div>
166
+
167
+ <div class="grid grid-cols-2 gap-4">
168
+ <div>
169
+ <label class="block text-sm font-medium mb-1">Attack Type</label>
170
+ <select class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2">
171
+ <option>UDP Flood</option>
172
+ <option>SYN Flood</option>
173
+ <option>HTTP Flood</option>
174
+ <option>ICMP Flood</option>
175
+ </select>
176
+ </div>
177
+
178
+ <div>
179
+ <label class="block text-sm font-medium mb-1">Duration (sec)</label>
180
+ <input type="number" min="10" max="600" value="60" class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2">
181
+ </div>
182
+ </div>
183
+
184
+ <div class="flex justify-between mt-6">
185
+ <button class="px-4 py-2 bg-purple-600 hover:bg-purple-500 rounded-md transition flex items-center">
186
+ <i class="fas fa-play mr-2"></i> Start Flood
187
+ </button>
188
+ <button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition">
189
+ <i class="fas fa-stop mr-2"></i> Stop
190
+ </button>
191
+ <button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition">
192
+ <i class="fas fa-wrench mr-2"></i> Advanced
193
+ </button>
194
+ </div>
195
  </div>
196
  </div>
197
+
198
+ <!-- Email Flooder -->
199
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 border border-green-500/30">
200
+ <div class="flex items-start mb-4">
201
+ <div class="bg-green-500/10 p-3 rounded-lg mr-4">
202
+ <i class="fas fa-envelope text-2xl text-green-400"></i>
203
+ </div>
204
+ <div>
205
+ <h2 class="text-xl font-bold mb-1">Email Flooder</h2>
206
+ <p class="text-gray-400 text-sm">Send bulk emails to multiple addresses</p>
207
+ </div>
208
+ </div>
209
+
210
+ <div class="space-y-4 mt-6">
211
+ <div>
212
+ <label class="block text-sm font-medium mb-1">Email Addresses</label>
213
+ <textarea class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2" rows="3" placeholder="example@gmail.com&#10;user@yahoo.com"></textarea>
214
+ <p class="text-xs text-gray-500 mt-1">One email per line</p>
215
+ </div>
216
+
217
+ <div class="grid grid-cols-2 gap-4">
218
+ <div>
219
+ <label class="block text-sm font-medium mb-1">Emails per Target</label>
220
+ <input type="number" min="1" max="100" value="20" class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2">
221
+ </div>
222
+
223
+ <div>
224
+ <label class="block text-sm font-medium mb-1">Delay (ms)</label>
225
+ <input type="number" min="0" max="10000" value="250" class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2">
226
+ </div>
227
+ </div>
228
+
229
+ <div>
230
+ <label class="block text-sm font-medium mb-1">Subject Line</label>
231
+ <input type="text" class="w-full bg-gray-900/70 border border-gray-700 rounded-md p-2" placeholder="Important notification">
232
+ </div>
233
+
234
+ <div class="flex justify-between mt-6">
235
+ <button class="px-4 py-2 bg-green-600 hover:bg-green-500 rounded-md transition">
236
+ <i class="fas fa-play mr-2"></i> Start Flood
237
+ </button>
238
+ <button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition">
239
+ <i class="fas fa-stop mr-2"></i> Stop
240
+ </button>
241
+ <button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md transition">
242
+ <i class="fas fa-copy mr-2"></i> Templates
243
+ </button>
244
+ </div>
245
+ </div>
246
  </div>
247
  </div>
248
+
249
+ <!-- Console Output -->
250
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 border border-red-500/30">
251
+ <div class="flex justify-between items-center mb-4">
252
+ <h3 class="text-lg font-bold flex items-center">
253
+ <i class="fas fa-terminal text-red-400 mr-2"></i>
254
+ Attack Console
255
+ </h3>
256
+ <div>
257
+ <button id="clear-console" class="px-3 py-1 bg-gray-700 hover:bg-gray-600 rounded-md mr-2">
258
+ <i class="fas fa-ban"></i> Clear
259
+ </button>
260
+ <button class="px-3 py-1 bg-gray-700 hover:bg-gray-600 rounded-md">
261
+ <i class="fas fa-file-export"></i> Export Log
262
+ </button>
263
+ </div>
264
  </div>
265
+
266
+ <div id="console-output" class="bg-black/80 rounded-md p-4 h-64 overflow-y-auto console-scrollbar terminal-font text-sm">
267
+ <div class="text-green-400">>> PyFlood Suite v1.2.5 initialized</div>
268
+ <div class="text-green-400">>> Security protocol: AES-256 encrypted</div>
269
+ <div class="text-gray-500">>> Ready to initiate flood attacks</div>
270
+ <div class="text-gray-500">>> Use the tools above to configure attacks</div>
271
+ <div class="mt-4 text-yellow-300">>> Status: <span id="attack-status" class="text-red-400">IDLE</span></div>
272
+ <div class="mt-4" id="console-messages"></div>
273
  </div>
274
+
275
+ <div class="mt-4 flex">
276
+ <div class="flex-1 flex items-center mr-2">
277
+ <div class="w-3 h-3 bg-red-500 rounded-full mr-2"></div>
278
+ <input id="console-input" type="text" class="bg-gray-900/70 border border-gray-700 rounded-l-md p-2 flex-grow terminal-font" placeholder="Enter console command...">
279
+ <button class="bg-blue-600 hover:bg-blue-500 px-4 rounded-r-md">
280
+ <i class="fas fa-arrow-right"></i>
281
+ </button>
282
+ </div>
283
+ <div class="flex space-x-2">
284
+ <button id="test-attack" class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md">
285
+ Test Attack
286
+ </button>
287
+ </div>
288
  </div>
289
  </div>
290
  </div>
291
+ </main>
292
+
293
+ <!-- Footer -->
294
+ <footer class="bg-black py-4 px-6 border-t border-blue-500/30 mt-8">
295
+ <div class="max-w-6xl mx-auto">
296
+ <div class="flex flex-col md:flex-row justify-between items-center">
297
+ <div class="mb-4 md:mb-0">
298
+ <div class="flex items-center">
299
+ <i class="fas fa-shield-alt text-blue-400 mr-2"></i>
300
+ <span class="text-sm"><span class="text-blue-400">Secure</span> Connection: AES-256 Encrypted</span>
301
+ </div>
302
+ <div class="text-gray-500 text-xs mt-1">
303
+ <i class="fas fa-sync-alt"></i> Last sync: 5 seconds ago
304
+ </div>
305
+ </div>
306
+
307
+ <div class="flex items-center">
308
+ <div class="mr-4">
309
+ <span class="text-sm mr-2">Attack Status:</span>
310
+ <span id="global-status" class="px-2 py-1 bg-red-500/30 rounded-md text-sm">IDLE</span>
311
+ </div>
312
+
313
+ <div class="flex space-x-2">
314
+ <div class="w-3 h-3 bg-green-500 rounded-full animate-pulse"></div>
315
+ <div class="text-sm">Server: Online</div>
316
+ </div>
317
+ </div>
318
+
319
+ <div class="mt-4 md:mt-0 text-gray-500 text-sm">
320
+ © 2023 PyFlood Suite | Educational Use Only
321
+ </div>
322
  </div>
323
  </div>
324
+ </footer>
325
+ </div>
326
+
 
 
 
 
 
 
 
 
 
 
 
327
  <script>
328
  document.addEventListener('DOMContentLoaded', function() {
329
+ const steamStartBtn = document.getElementById('start-steam');
330
+ const steamStopBtn = document.getElementById('stop-steam');
331
+ const testAttackBtn = document.getElementById('test-attack');
332
+ const clearConsoleBtn = document.getElementById('clear-console');
333
+ const consoleInput = document.getElementById('console-input');
334
+ const consoleMessages = document.getElementById('console-messages');
335
+ const attackStatus = document.getElementById('attack-status');
336
+ const globalStatus = document.getElementById('global-status');
337
+
338
+ let isAttacking = false;
339
+ let attackInterval;
340
+
341
+ function addConsoleMessage(message, color = 'white') {
342
+ const messageElement = document.createElement('div');
343
+ messageElement.className = `text-${color} mt-2`;
344
+ messageElement.innerHTML = `>> ${message}`;
345
+
346
+ consoleMessages.appendChild(messageElement);
347
+ consoleMessages.scrollTop = consoleMessages.scrollHeight;
 
348
  }
349
+
350
+ function startAttack() {
351
+ if (isAttacking) return;
352
+
353
+ isAttacking = true;
354
+ attackStatus.textContent = 'ATTACKING';
355
+ attackStatus.className = 'text-green-400';
356
+ globalStatus.textContent = 'ATTACKING';
357
+ globalStatus.className = 'px-2 py-1 bg-green-500/30 rounded-md text-sm';
358
+
359
+ // Simulate attack
360
+ addConsoleMessage('Initializing Steam ID flood attack...', 'yellow');
361
+
362
  setTimeout(() => {
363
+ addConsoleMessage('Connecting to Steam API proxy...', 'blue');
364
+ }, 800);
365
+
366
+ setTimeout(() => {
367
+ addConsoleMessage('Sending friend requests to targets...', 'blue');
 
 
 
 
 
 
368
 
369
+ attackInterval = setInterval(() => {
370
+ const targets = ['STEAM_0:0:12345678', 'STEAM_0:1:98765432', 'STEAM_0:0:55555555'];
371
+ const target = targets[Math.floor(Math.random() * targets.length)];
372
+
373
+ addConsoleMessage(`Sent friend request to ${target}`, 'green');
374
+ }, 1200);
375
+ }, 1800);
376
+ }
377
+
378
+ function stopAttack() {
379
+ if (!isAttacking) return;
380
+
381
+ isAttacking = false;
382
+ clearInterval(attackInterval);
383
+
384
+ attackStatus.textContent = 'IDLE';
385
+ attackStatus.className = 'text-red-400';
386
+ globalStatus.textContent = 'IDLE';
387
+ globalStatus.className = 'px-2 py-1 bg-red-500/30 rounded-md text-sm';
388
+
389
+ addConsoleMessage('Attack stopped by user command', 'yellow');
390
+ addConsoleMessage('Sent 58 friend requests to 3 targets', 'blue');
391
  }
392
+
393
+ // Event Listeners
394
+ steamStartBtn.addEventListener('click', startAttack);
395
+ steamStopBtn.addEventListener('click', stopAttack);
396
+
397
+ testAttackBtn.addEventListener('click', function() {
398
+ addConsoleMessage('Running test attack protocol...', 'yellow');
399
+ setTimeout(() => {
400
+ addConsoleMessage('Test: Sending message to STEAM_0:0:99999999', 'cyan');
401
+ }, 600);
402
+ setTimeout(() => {
403
+ addConsoleMessage('Success: Test message sent!', 'green');
404
+ addConsoleMessage('All systems operational', 'green');
405
+ }, 1500);
406
+ });
407
+
408
+ clearConsoleBtn.addEventListener('click', function() {
409
+ consoleMessages.innerHTML = '';
410
+ addConsoleMessage('Console cleared', 'gray');
411
+ });
412
+
413
+ consoleInput.addEventListener('keypress', function(e) {
414
  if (e.key === 'Enter') {
415
+ const command = consoleInput.value.trim();
416
+ if (command) {
417
+ addConsoleMessage(`> ${command}`, 'purple');
418
+
419
+ if (command === 'start attack') {
420
+ startAttack();
421
+ } else if (command === 'stop attack') {
422
+ stopAttack();
423
+ } else if (command === 'help') {
424
+ addConsoleMessage('Available commands: start attack, stop attack, clear, test, help', 'cyan');
425
+ } else if (command === 'test') {
426
+ testAttackBtn.click();
427
+ } else {
428
+ addConsoleMessage(`Command not recognized: ${command}`, 'red');
429
+ }
430
+
431
+ consoleInput.value = '';
432
  }
 
433
  }
434
  });
 
 
 
 
 
 
 
 
435
  });
436
  </script>
437
  <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=bmf911/open-computer-terminal-basic" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
prompts.txt CHANGED
@@ -1 +1,2 @@
1
- make Open Computer Agentvirtual
 
 
1
+ make Open Computer Agentvirtual
2
+ make a python steam id flooder ip gmail etc