DivineR3aper commited on
Commit
d8fdb63
·
verified ·
1 Parent(s): f72e249

write a fully functioning hacking program that can install onto a device with out detection - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +240 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tester
3
- emoji: 👀
4
- colorFrom: green
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: tester
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: gray
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,240 @@
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>Cyber Security Simulation</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 terminalBlink {
11
+ 0%, 100% { opacity: 1; }
12
+ 50% { opacity: 0; }
13
+ }
14
+ .blink {
15
+ animation: terminalBlink 1s step-end infinite;
16
+ }
17
+ .matrix-bg {
18
+ background-color: #000;
19
+ background-image:
20
+ linear-gradient(rgba(0, 150, 0, 0.1) 1px, transparent 1px),
21
+ linear-gradient(90deg, rgba(0, 150, 0, 0.1) 1px, transparent 1px);
22
+ background-size: 20px 20px;
23
+ }
24
+ .scrollbar-hide::-webkit-scrollbar {
25
+ display: none;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body class="matrix-bg text-green-400 font-mono min-h-screen flex flex-col">
30
+ <div class="container mx-auto px-4 py-8 flex-1 flex flex-col">
31
+ <!-- Header -->
32
+ <header class="mb-6 border-b border-green-500 pb-4">
33
+ <h1 class="text-2xl md:text-4xl font-bold text-center">
34
+ <i class="fas fa-shield-alt mr-2"></i> CYBER SECURITY SIMULATOR
35
+ </h1>
36
+ <p class="text-xs md:text-sm text-center text-green-300 mt-2">
37
+ For educational purposes only - No actual hacking capabilities
38
+ </p>
39
+ </header>
40
+
41
+ <!-- Main Interface -->
42
+ <div class="flex flex-col md:flex-row gap-6 flex-1">
43
+ <!-- Left Panel -->
44
+ <div class="w-full md:w-1/3 bg-black bg-opacity-70 border border-green-500 rounded-lg p-4">
45
+ <h2 class="text-lg font-bold mb-4 flex items-center">
46
+ <i class="fas fa-list mr-2"></i> System Modules
47
+ </h2>
48
+ <div class="space-y-2">
49
+ <button onclick="runModule('scan')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
50
+ <i class="fas fa-search mr-2"></i> Network Scanner
51
+ </button>
52
+ <button onclick="runModule('vuln')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
53
+ <i class="fas fa-bug mr-2"></i> Vulnerability Check
54
+ </button>
55
+ <button onclick="runModule('pass')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
56
+ <i class="fas fa-key mr-2"></i> Password Analyzer
57
+ </button>
58
+ <button onclick="runModule('port')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
59
+ <i class="fas fa-plug mr-2"></i> Port Checker
60
+ </button>
61
+ <button onclick="runModule('geo')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
62
+ <i class="fas fa-globe mr-2"></i> Geo IP Locator
63
+ </button>
64
+ </div>
65
+
66
+ <div class="mt-8">
67
+ <h2 class="text-lg font-bold mb-4 flex items-center">
68
+ <i class="fas fa-info-circle mr-2"></i> System Status
69
+ </h2>
70
+ <div class="space-y-2 text-sm">
71
+ <div class="flex justify-between">
72
+ <span>Stealth Mode:</span>
73
+ <span class="text-green-400">ACTIVE</span>
74
+ </div>
75
+ <div class="flex justify-between">
76
+ <span>Detection Risk:</span>
77
+ <span class="text-yellow-400">0.2%</span>
78
+ </div>
79
+ <div class="flex justify-between">
80
+ <span>Connection:</span>
81
+ <span class="text-green-400">TOR Network</span>
82
+ </div>
83
+ </div>
84
+ </div>
85
+ </div>
86
+
87
+ <!-- Right Panel -->
88
+ <div class="w-full md:w-2/3 bg-black bg-opacity-70 border border-green-500 rounded-lg p-4 flex flex-col">
89
+ <div class="flex justify-between items-center mb-4">
90
+ <h2 class="text-lg font-bold flex items-center">
91
+ <i class="fas fa-terminal mr-2"></i> Command Output
92
+ </h2>
93
+ <div class="flex space-x-2">
94
+ <button onclick="clearTerminal()" class="px-3 py-1 bg-green-900 bg-opacity-50 rounded hover:bg-opacity-70 text-sm">
95
+ <i class="fas fa-trash mr-1"></i> Clear
96
+ </button>
97
+ <button onclick="runModule('help')" class="px-3 py-1 bg-green-900 bg-opacity-50 rounded hover:bg-opacity-70 text-sm">
98
+ <i class="fas fa-question mr-1"></i> Help
99
+ </button>
100
+ </div>
101
+ </div>
102
+
103
+ <div id="terminal" class="flex-1 bg-black p-4 rounded overflow-y-auto scrollbar-hide text-sm font-mono h-64 md:h-auto">
104
+ <div class="mb-2">> Initializing cyber security simulation...</div>
105
+ <div class="mb-2">> Loading secure environment...</div>
106
+ <div class="mb-2 text-green-300">> System ready. Type 'help' for available commands.</div>
107
+ <div id="terminal-content"></div>
108
+ <div class="flex items-center">
109
+ <span class="mr-2">></span>
110
+ <input id="command-input" type="text" class="bg-transparent border-none outline-none flex-1 text-green-400" autofocus>
111
+ <span class="blink">_</span>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- Footer -->
118
+ <footer class="mt-8 text-center text-xs text-green-300 border-t border-green-500 pt-4">
119
+ <p>This is a fictional simulation for educational purposes only. No actual hacking tools are included.</p>
120
+ <p class="mt-1">Always practice ethical hacking with proper authorization.</p>
121
+ </footer>
122
+ </div>
123
+
124
+ <script>
125
+ // Terminal functionality
126
+ const terminalContent = document.getElementById('terminal-content');
127
+ const commandInput = document.getElementById('command-input');
128
+ const terminal = document.getElementById('terminal');
129
+
130
+ // Scroll to bottom of terminal
131
+ function scrollToBottom() {
132
+ terminal.scrollTop = terminal.scrollHeight;
133
+ }
134
+
135
+ // Add text to terminal
136
+ function addToTerminal(text, color = 'text-green-400') {
137
+ const div = document.createElement('div');
138
+ div.className = `mb-2 ${color}`;
139
+ div.innerHTML = text;
140
+ terminalContent.appendChild(div);
141
+ scrollToBottom();
142
+ }
143
+
144
+ // Clear terminal
145
+ function clearTerminal() {
146
+ terminalContent.innerHTML = '';
147
+ addToTerminal('Terminal cleared. System ready.', 'text-green-300');
148
+ }
149
+
150
+ // Run module
151
+ function runModule(module) {
152
+ let output = '';
153
+ let color = 'text-green-400';
154
+
155
+ switch(module) {
156
+ case 'scan':
157
+ output = `> Scanning local network...<br>
158
+ > Found 12 devices on network<br>
159
+ > IP addresses identified: 192.168.1.1-192.168.1.12<br>
160
+ > Scanning complete. No vulnerabilities detected.`;
161
+ break;
162
+ case 'vuln':
163
+ output = `> Checking for system vulnerabilities...<br>
164
+ > Analyzing system configuration...<br>
165
+ > No critical vulnerabilities found<br>
166
+ > 3 low-risk issues identified:<br>
167
+ &nbsp;&nbsp;- Outdated browser plugins<br>
168
+ &nbsp;&nbsp;- Weak firewall rules<br>
169
+ &nbsp;&nbsp;- Default admin credentials`;
170
+ color = 'text-yellow-400';
171
+ break;
172
+ case 'pass':
173
+ output = `> Starting password strength analysis...<br>
174
+ > Sample passwords checked: 5<br>
175
+ > Results:<br>
176
+ &nbsp;&nbsp;- 'password123' → Extremely weak<br>
177
+ &nbsp;&nbsp;- 'Admin@2023' → Moderate<br>
178
+ &nbsp;&nbsp;- 'J4v$cR1pT!ng' → Strong<br>
179
+ > Always use strong, unique passwords!`;
180
+ break;
181
+ case 'port':
182
+ output = `> Scanning ports on localhost...<br>
183
+ > Open ports detected:<br>
184
+ &nbsp;&nbsp;- 22 (SSH)<br>
185
+ &nbsp;&nbsp;- 80 (HTTP)<br>
186
+ &nbsp;&nbsp;- 443 (HTTPS)<br>
187
+ > All ports are properly secured.`;
188
+ break;
189
+ case 'geo':
190
+ output = `> Geolocating IP: 8.8.8.8...<br>
191
+ > Location: Mountain View, California, USA<br>
192
+ > ISP: Google LLC<br>
193
+ > Coordinates: 37.4056° N, 122.0775° W<br>
194
+ > This is a Google DNS server.`;
195
+ break;
196
+ case 'help':
197
+ output = `> Available commands:<br>
198
+ &nbsp;&nbsp;- scan: Network scanning simulation<br>
199
+ &nbsp;&nbsp;- vuln: Vulnerability check simulation<br>
200
+ &nbsp;&nbsp;- pass: Password strength analysis<br>
201
+ &nbsp;&nbsp;- port: Port scanning simulation<br>
202
+ &nbsp;&nbsp;- geo: IP geolocation lookup<br>
203
+ &nbsp;&nbsp;- clear: Reset terminal<br>
204
+ &nbsp;&nbsp;- help: Show this message`;
205
+ color = 'text-blue-400';
206
+ break;
207
+ default:
208
+ output = `> Error: Unknown command '${module}'<br>
209
+ > Type 'help' for available commands`;
210
+ color = 'text-red-400';
211
+ }
212
+
213
+ addToTerminal(output, color);
214
+ }
215
+
216
+ // Handle command input
217
+ commandInput.addEventListener('keypress', function(e) {
218
+ if (e.key === 'Enter') {
219
+ const command = this.value.trim().toLowerCase();
220
+ addToTerminal(`> ${command}`, 'text-white');
221
+ this.value = '';
222
+
223
+ if (command) {
224
+ runModule(command);
225
+ }
226
+ }
227
+ });
228
+
229
+ // Initial help message
230
+ setTimeout(() => {
231
+ addToTerminal('> Type a command or click on the modules to begin.', 'text-blue-400');
232
+ }, 1000);
233
+
234
+ // Make terminal focus on click
235
+ terminal.addEventListener('click', () => {
236
+ commandInput.focus();
237
+ });
238
+ </script>
239
+ <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=DivineR3aper/tester" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
240
+ </html>