docto41 commited on
Commit
18f456d
·
verified ·
1 Parent(s): 2ff1b0b

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +242 -71
  2. prompts.txt +3 -1
index.html CHANGED
@@ -1,9 +1,9 @@
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>Hacker Code Generator</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>
@@ -23,7 +23,7 @@
23
  color: #0f0;
24
  border-radius: 5px;
25
  padding: 20px;
26
- height: 200px;
27
  overflow-y: auto;
28
  }
29
  .terminal-line {
@@ -49,124 +49,295 @@
49
  box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
50
  border-color: #0f0;
51
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  </style>
53
  </head>
54
  <body class="bg-black text-white min-h-screen">
55
  <div class="container mx-auto px-4 py-8">
56
  <header class="text-center mb-12">
57
- <h1 class="text-4xl md:text-6xl font-bold mb-4 glitch-text">HACKER CODE GENERATOR</h1>
58
- <p class="text-gray-400 max-w-2xl mx-auto">Disclaimer: This is a simulation for educational purposes only. Generating actual coupon codes is illegal.</p>
59
  </header>
60
 
61
  <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
62
  <div class="hacker-card bg-gray-900 rounded-lg p-6">
63
  <div class="flex items-center mb-4">
64
- <i class="fas fa-code text-green-500 text-2xl mr-3"></i>
65
- <h2 class="text-xl font-bold">Envato Elements</h2>
 
 
 
 
 
66
  </div>
67
- <div class="terminal mb-4">
68
- <div class="terminal-line">> Initializing code generator...</div>
69
- <div class="terminal-line">> Connecting to Envato API...</div>
70
- <div class="terminal-line">> Bypassing security protocols...</div>
71
- <div class="terminal-line" id="envato-status">> Ready to generate<span class="cursor"></span></div>
72
  </div>
73
- <button onclick="generateCode('envato')" class="w-full bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded flex items-center justify-center">
74
- <i class="fas fa-bolt mr-2"></i> Generate Code
 
75
  </button>
76
  </div>
77
 
78
  <div class="hacker-card bg-gray-900 rounded-lg p-6">
79
  <div class="flex items-center mb-4">
80
- <i class="fas fa-shopping-cart text-green-500 text-2xl mr-3"></i>
81
- <h2 class="text-xl font-bold">CodeCanyon</h2>
82
  </div>
83
- <div class="terminal mb-4">
84
- <div class="terminal-line">> Initializing code generator...</div>
85
- <div class="terminal-line">> Connecting to CodeCanyon API...</div>
86
- <div class="terminal-line">> Bypassing security protocols...</div>
87
- <div class="terminal-line" id="codecanyon-status">> Ready to generate<span class="cursor"></span></div>
 
 
 
 
 
 
88
  </div>
89
- <button onclick="generateCode('codecanyon')" class="w-full bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded flex items-center justify-center">
90
- <i class="fas fa-bolt mr-2"></i> Generate Code
 
 
 
 
 
91
  </button>
92
  </div>
93
  </div>
94
 
95
  <div class="bg-gray-900 rounded-lg p-6 mb-8">
96
  <h2 class="text-xl font-bold mb-4 flex items-center">
97
- <i class="fas fa-history text-green-500 mr-2"></i> Generated Codes History
98
  </h2>
99
- <div class="terminal" id="history-terminal">
100
- <div class="terminal-line">> No codes generated yet</div>
 
 
 
101
  </div>
102
  </div>
103
 
104
  <div class="bg-red-900 bg-opacity-30 border border-red-700 rounded-lg p-6">
105
  <h2 class="text-xl font-bold mb-2 flex items-center">
106
- <i class="fas fa-exclamation-triangle mr-2"></i> Legal Notice
107
  </h2>
108
  <p class="text-gray-300">
109
- This is a fictional simulation created for educational purposes only. Generating or using unauthorized coupon codes is illegal and considered fraud. This website does not actually generate real coupon codes and is meant to demonstrate UI design concepts.
110
  </p>
 
 
 
 
 
 
 
111
  </div>
112
  </div>
113
 
114
  <script>
115
- function generateCode(platform) {
116
- const statusElement = document.getElementById(`${platform}-status`);
117
- const historyTerminal = document.getElementById('history-terminal');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
- // Clear existing cursor
120
- const existingCursor = statusElement.querySelector('.cursor');
121
- if (existingCursor) existingCursor.remove();
 
122
 
123
- // Simulate hacking process
124
- statusElement.innerHTML = '> Initiating brute force attack...<span class="cursor"></span>';
 
125
 
126
  setTimeout(() => {
127
- statusElement.innerHTML = '> Cracking encryption...<span class="cursor"></span>';
128
 
129
  setTimeout(() => {
130
- statusElement.innerHTML = '> Bypassing firewall...<span class="cursor"></span>';
 
131
 
132
- setTimeout(() => {
133
- // Generate fake code
134
- const fakeCode = `${platform.toUpperCase()}-${Math.random().toString(36).substring(2, 10).toUpperCase()}-${Math.random().toString(36).substring(2, 6).toUpperCase()}`;
135
- statusElement.innerHTML = `> Success! Code: <span class="text-yellow-300">${fakeCode}</span><span class="cursor"></span>`;
136
-
137
- // Add to history
138
- if (historyTerminal.children[0].textContent.includes("No codes generated yet")) {
139
- historyTerminal.innerHTML = '';
140
- }
141
-
142
- const newEntry = document.createElement('div');
143
- newEntry.className = 'terminal-line';
144
- newEntry.innerHTML = `> [${new Date().toLocaleTimeString()}] ${platform} code: <span class="text-yellow-300">${fakeCode}</span>`;
145
- historyTerminal.prepend(newEntry);
146
-
147
- }, 1000);
148
- }, 1000);
 
 
 
149
  }, 1000);
150
  }
151
 
152
- // Simulate terminal typing effect
153
- document.addEventListener('DOMContentLoaded', function() {
154
- const terminals = document.querySelectorAll('.terminal-line:not(:has(.cursor))');
155
- terminals.forEach(terminal => {
156
- const text = terminal.textContent;
157
- terminal.textContent = '';
 
 
 
 
 
 
 
 
158
 
159
- let i = 0;
160
- const typing = setInterval(() => {
161
- if (i < text.length) {
162
- terminal.textContent += text.charAt(i);
163
- i++;
164
- } else {
165
- clearInterval(typing);
 
 
 
 
 
 
 
 
 
 
166
  }
167
- }, 20);
168
- });
169
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  </script>
171
  <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=docto41/hacker-code-generator" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
172
  </html>
 
1
  <!DOCTYPE html>
2
+ <html lang="fr">
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Scanner de Produits Envato</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>
 
23
  color: #0f0;
24
  border-radius: 5px;
25
  padding: 20px;
26
+ height: 300px;
27
  overflow-y: auto;
28
  }
29
  .terminal-line {
 
49
  box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
50
  border-color: #0f0;
51
  }
52
+ #previewImage {
53
+ max-height: 200px;
54
+ object-fit: contain;
55
+ }
56
+ .progress-bar {
57
+ height: 5px;
58
+ background-color: #333;
59
+ border-radius: 2px;
60
+ overflow: hidden;
61
+ }
62
+ .progress-value {
63
+ height: 100%;
64
+ background-color: #0f0;
65
+ width: 0%;
66
+ transition: width 0.3s;
67
+ }
68
+ .envato-badge {
69
+ background: linear-gradient(135deg, #82b541 0%, #5a8f29 100%);
70
+ color: white;
71
+ }
72
  </style>
73
  </head>
74
  <body class="bg-black text-white min-h-screen">
75
  <div class="container mx-auto px-4 py-8">
76
  <header class="text-center mb-12">
77
+ <h1 class="text-4xl md:text-6xl font-bold mb-4 glitch-text">ENVATO PRODUCT SCANNER</h1>
78
+ <p class="text-gray-400 max-w-2xl mx-auto">Simulation à des fins éducatives uniquement. Le piratage réel est illégal.</p>
79
  </header>
80
 
81
  <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
82
  <div class="hacker-card bg-gray-900 rounded-lg p-6">
83
  <div class="flex items-center mb-4">
84
+ <i class="fab fa-envira text-green-500 text-2xl mr-3"></i>
85
+ <h2 class="text-xl font-bold">Recherche par Nom</h2>
86
+ </div>
87
+
88
+ <div class="mb-4">
89
+ <label class="block text-gray-400 mb-2">Nom du Produit Envato</label>
90
+ <input type="text" id="envatoProductName" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 text-white focus:border-green-500 focus:outline-none" placeholder="Ex: 'Avada', 'Betheme'...">
91
  </div>
92
+
93
+ <div class="mb-4">
94
+ <label class="block text-gray-400 mb-2">ID du Produit (optionnel)</label>
95
+ <input type="text" id="envatoProductId" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 text-white focus:border-green-500 focus:outline-none" placeholder="Ex: 12345678">
 
96
  </div>
97
+
98
+ <button onclick="scanEnvatoByName()" class="w-full bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded flex items-center justify-center">
99
+ <i class="fas fa-search mr-2"></i> Scanner le Produit
100
  </button>
101
  </div>
102
 
103
  <div class="hacker-card bg-gray-900 rounded-lg p-6">
104
  <div class="flex items-center mb-4">
105
+ <i class="fas fa-image text-green-500 text-2xl mr-3"></i>
106
+ <h2 class="text-xl font-bold">Recherche par Image</h2>
107
  </div>
108
+
109
+ <div class="mb-4">
110
+ <label class="block text-gray-400 mb-2">Capture d'écran du produit</label>
111
+ <div class="border-2 border-dashed border-gray-700 rounded p-4 text-center">
112
+ <img id="previewImage" src="" alt="Aperçu" class="mx-auto mb-2 hidden">
113
+ <input type="file" id="imageUpload" accept="image/*" class="hidden" onchange="previewFile()">
114
+ <button onclick="document.getElementById('imageUpload').click()" class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded">
115
+ <i class="fas fa-upload mr-2"></i> Choisir une image
116
+ </button>
117
+ <p class="text-gray-500 text-sm mt-2">Formats supportés: JPG, PNG, GIF</p>
118
+ </div>
119
  </div>
120
+
121
+ <div class="progress-bar mb-4 hidden" id="imageProgress">
122
+ <div class="progress-value" id="imageProgressValue"></div>
123
+ </div>
124
+
125
+ <button onclick="scanEnvatoByImage()" id="scanImageBtn" class="w-full bg-gray-600 text-white font-bold py-3 px-4 rounded flex items-center justify-center opacity-50 cursor-not-allowed" disabled>
126
+ <i class="fab fa-envira mr-2"></i> Scanner l'Image Envato
127
  </button>
128
  </div>
129
  </div>
130
 
131
  <div class="bg-gray-900 rounded-lg p-6 mb-8">
132
  <h2 class="text-xl font-bold mb-4 flex items-center">
133
+ <i class="fab fa-envira text-green-500 mr-2"></i> Résultats du Scan Envato
134
  </h2>
135
+ <div class="terminal" id="envato-results-terminal">
136
+ <div class="terminal-line">> Envato Product Scanner v3.2.1</div>
137
+ <div class="terminal-line">> Connexion sécurisée établie</div>
138
+ <div class="terminal-line">> En attente de commande...</div>
139
+ <div class="terminal-line">> Tapez "help" pour les options<span class="cursor"></span></div>
140
  </div>
141
  </div>
142
 
143
  <div class="bg-red-900 bg-opacity-30 border border-red-700 rounded-lg p-6">
144
  <h2 class="text-xl font-bold mb-2 flex items-center">
145
+ <i class="fas fa-exclamation-triangle mr-2"></i> Avertissement Légal Important
146
  </h2>
147
  <p class="text-gray-300">
148
+ Cette simulation est fournie à des fins éducatives uniquement. Toute tentative réelle d'obtenir des codes d'achat ou des produits Envato/CodeCanyon sans paiement est illégale et constitue une violation des conditions d'utilisation. Envato dispose de systèmes de sécurité avancés et toute activité frauduleuse peut entraîner des poursuites judiciaires.
149
  </p>
150
+ <div class="mt-4 p-4 envato-badge rounded-lg flex items-center">
151
+ <i class="fab fa-envira text-2xl mr-3"></i>
152
+ <div>
153
+ <h3 class="font-bold">Achetez légalement sur Envato</h3>
154
+ <p class="text-sm">Supportez les créateurs en achetant des licences valides sur <a href="https://envato.com" class="underline">envato.com</a></p>
155
+ </div>
156
+ </div>
157
  </div>
158
  </div>
159
 
160
  <script>
161
+ let uploadedImage = null;
162
+
163
+ function previewFile() {
164
+ const file = document.getElementById('imageUpload').files[0];
165
+ const preview = document.getElementById('previewImage');
166
+ const scanBtn = document.getElementById('scanImageBtn');
167
+
168
+ if (file) {
169
+ const reader = new FileReader();
170
+
171
+ reader.onload = function(e) {
172
+ preview.src = e.target.result;
173
+ preview.classList.remove('hidden');
174
+ uploadedImage = e.target.result;
175
+
176
+ // Simulate image processing
177
+ const progressBar = document.getElementById('imageProgress');
178
+ const progressValue = document.getElementById('imageProgressValue');
179
+
180
+ progressBar.classList.remove('hidden');
181
+ progressValue.style.width = '0%';
182
+
183
+ let progress = 0;
184
+ const interval = setInterval(() => {
185
+ progress += 5;
186
+ progressValue.style.width = `${progress}%`;
187
+
188
+ if (progress >= 100) {
189
+ clearInterval(interval);
190
+ setTimeout(() => {
191
+ progressBar.classList.add('hidden');
192
+ scanBtn.classList.remove('bg-gray-600', 'opacity-50', 'cursor-not-allowed');
193
+ scanBtn.classList.add('bg-green-600', 'hover:bg-green-700');
194
+ scanBtn.disabled = false;
195
+ }, 500);
196
+ }
197
+ }, 100);
198
+ }
199
+
200
+ reader.readAsDataURL(file);
201
+ }
202
+ }
203
+
204
+ function scanEnvatoByName() {
205
+ const productName = document.getElementById('envatoProductName').value.trim();
206
+ const productId = document.getElementById('envatoProductId').value.trim();
207
+ const resultsTerminal = document.getElementById('envato-results-terminal');
208
 
209
+ if (!productName) {
210
+ alert("Veuillez entrer un nom de produit Envato");
211
+ return;
212
+ }
213
 
214
+ resultsTerminal.innerHTML = '';
215
+ addTerminalLine(resultsTerminal, `> Lancement du scan pour: ${productName} ${productId ? '(ID: '+productId+')' : ''}`);
216
+ addTerminalLine(resultsTerminal, `> Connexion à l'API Envato...`);
217
 
218
  setTimeout(() => {
219
+ addTerminalLine(resultsTerminal, `> Vérification des licences...`);
220
 
221
  setTimeout(() => {
222
+ // Generate fake results
223
+ const fakeResults = generateFakeEnvatoResults(productName, productId);
224
 
225
+ addTerminalLine(resultsTerminal, `> Scan terminé. Résultats:`);
226
+ addTerminalLine(resultsTerminal, ``);
227
+
228
+ addTerminalLine(resultsTerminal, `> Nom: ${fakeResults.name}`);
229
+ addTerminalLine(resultsTerminal, `> Auteur: ${fakeResults.author}`);
230
+ addTerminalLine(resultsTerminal, `> Prix: $${fakeResults.price}`);
231
+ addTerminalLine(resultsTerminal, `> Nombre de ventes: ${fakeResults.sales}`);
232
+ addTerminalLine(resultsTerminal, ``);
233
+
234
+ addTerminalLine(resultsTerminal, `> [<span class="text-red-500">SÉCURITÉ</span>] Système de licence détecté:`);
235
+ addTerminalLine(resultsTerminal, `> - Protection: ${fakeResults.protection}`);
236
+ addTerminalLine(resultsTerminal, `> - Dernière mise à jour: ${fakeResults.lastUpdate}`);
237
+ addTerminalLine(resultsTerminal, ``);
238
+
239
+ addTerminalLine(resultsTerminal, `> [<span class="text-yellow-500">AVERTISSEMENT</span>] Toute tentative de contournement`);
240
+ addTerminalLine(resultsTerminal, `> du système de licence est illégale et sera détectée`);
241
+ addTerminalLine(resultsTerminal, ``);
242
+
243
+ addTerminalLine(resultsTerminal, `> Tapez "help" pour les options<span class="cursor"></span>`);
244
+ }, 1500);
245
  }, 1000);
246
  }
247
 
248
+ function scanEnvatoByImage() {
249
+ if (!uploadedImage) {
250
+ alert("Veuillez téléverser une image d'abord");
251
+ return;
252
+ }
253
+
254
+ const resultsTerminal = document.getElementById('envato-results-terminal');
255
+ resultsTerminal.innerHTML = '';
256
+
257
+ addTerminalLine(resultsTerminal, `> Analyse d'image Envato en cours...`);
258
+ addTerminalLine(resultsTerminal, `> Reconnaissance du produit...`);
259
+
260
+ setTimeout(() => {
261
+ addTerminalLine(resultsTerminal, `> Comparaison avec la base de données...`);
262
 
263
+ setTimeout(() => {
264
+ // Generate fake image analysis results
265
+ const fakeResults = generateFakeEnvatoImageResults();
266
+
267
+ addTerminalLine(resultsTerminal, `> Analyse terminée. Résultats:`);
268
+ addTerminalLine(resultsTerminal, ``);
269
+
270
+ addTerminalLine(resultsTerminal, `> Produit probable: ${fakeResults.product}`);
271
+ addTerminalLine(resultsTerminal, `> Confiance: ${fakeResults.confidence}%`);
272
+ addTerminalLine(resultsTerminal, ``);
273
+
274
+ if (fakeResults.matches.length > 0) {
275
+ addTerminalLine(resultsTerminal, `> Correspondances trouvées:`);
276
+ fakeResults.matches.forEach(match => {
277
+ addTerminalLine(resultsTerminal, `> - ${match}`);
278
+ });
279
+ addTerminalLine(resultsTerminal, ``);
280
  }
281
+
282
+ addTerminalLine(resultsTerminal, `> [<span class="text-red-500">SÉCURITÉ</span>] Les produits Envato utilisent`);
283
+ addTerminalLine(resultsTerminal, `> un système de vérification de licence en ligne`);
284
+ addTerminalLine(resultsTerminal, `> qui ne peut être contourné.`);
285
+ addTerminalLine(resultsTerminal, ``);
286
+
287
+ addTerminalLine(resultsTerminal, `> Tapez "help" pour les options<span class="cursor"></span>`);
288
+ }, 1500);
289
+ }, 1000);
290
+ }
291
+
292
+ function addTerminalLine(terminal, html) {
293
+ const line = document.createElement('div');
294
+ line.className = 'terminal-line';
295
+ line.innerHTML = html;
296
+ terminal.appendChild(line);
297
+ terminal.scrollTop = terminal.scrollHeight;
298
+ }
299
+
300
+ function generateFakeEnvatoResults(productName, productId) {
301
+ const protections = [
302
+ "Verification de licence en ligne",
303
+ "Cryptage PHP IonCube",
304
+ "Vérification de domaine",
305
+ "Système d'activation unique"
306
+ ];
307
+
308
+ return {
309
+ name: productName + (productId ? ` (ID: ${productId})` : ""),
310
+ author: "Author" + Math.floor(Math.random() * 1000),
311
+ price: (Math.random() * 50 + 20).toFixed(2),
312
+ sales: Math.floor(Math.random() * 5000),
313
+ protection: protections[Math.floor(Math.random() * protections.length)],
314
+ lastUpdate: new Date(Date.now() - Math.floor(Math.random() * 30 * 24 * 60 * 60 * 1000)).toLocaleDateString()
315
+ };
316
+ }
317
+
318
+ function generateFakeEnvatoImageResults() {
319
+ const products = [
320
+ "Avada Theme",
321
+ "Betheme",
322
+ "Impreza",
323
+ "The7",
324
+ "X Theme",
325
+ "Enfold"
326
+ ];
327
+
328
+ const matches = [
329
+ "Correspondance visuelle à 87%",
330
+ "Signature CSS détectée",
331
+ "Structure HTML correspondante",
332
+ "Logo du créateur identifié"
333
+ ];
334
+
335
+ return {
336
+ product: products[Math.floor(Math.random() * products.length)],
337
+ confidence: Math.floor(Math.random() * 30) + 65,
338
+ matches: matches.slice(0, Math.floor(Math.random() * matches.length) + 1)
339
+ };
340
+ }
341
  </script>
342
  <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=docto41/hacker-code-generator" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
343
  </html>
prompts.txt CHANGED
@@ -1 +1,3 @@
1
- hacker code d'achat envato et codecanyon
 
 
 
1
+ hacker code d'achat envato et codecanyon
2
+ je veux hacker par non du produit ou par image
3
+ je veux hacker code d'achat envato et codecanyon par non du produit ou par image du produit