Spaces:
Running
Running
File size: 17,205 Bytes
2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b 18f456d 2ff1b0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scanner de Produits Envato</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes glitch {
0% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; }
25% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; }
50% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; }
75% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; }
100% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; }
}
.glitch-text {
animation: glitch 1s linear infinite;
}
.terminal {
font-family: 'Courier New', monospace;
background-color: #111;
color: #0f0;
border-radius: 5px;
padding: 20px;
height: 300px;
overflow-y: auto;
}
.terminal-line {
margin-bottom: 5px;
}
.cursor {
display: inline-block;
width: 10px;
height: 15px;
background-color: #0f0;
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.hacker-card {
transition: all 0.3s;
border: 1px solid #333;
}
.hacker-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
border-color: #0f0;
}
#previewImage {
max-height: 200px;
object-fit: contain;
}
.progress-bar {
height: 5px;
background-color: #333;
border-radius: 2px;
overflow: hidden;
}
.progress-value {
height: 100%;
background-color: #0f0;
width: 0%;
transition: width 0.3s;
}
.envato-badge {
background: linear-gradient(135deg, #82b541 0%, #5a8f29 100%);
color: white;
}
</style>
</head>
<body class="bg-black text-white min-h-screen">
<div class="container mx-auto px-4 py-8">
<header class="text-center mb-12">
<h1 class="text-4xl md:text-6xl font-bold mb-4 glitch-text">ENVATO PRODUCT SCANNER</h1>
<p class="text-gray-400 max-w-2xl mx-auto">Simulation à des fins éducatives uniquement. Le piratage réel est illégal.</p>
</header>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="hacker-card bg-gray-900 rounded-lg p-6">
<div class="flex items-center mb-4">
<i class="fab fa-envira text-green-500 text-2xl mr-3"></i>
<h2 class="text-xl font-bold">Recherche par Nom</h2>
</div>
<div class="mb-4">
<label class="block text-gray-400 mb-2">Nom du Produit Envato</label>
<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'...">
</div>
<div class="mb-4">
<label class="block text-gray-400 mb-2">ID du Produit (optionnel)</label>
<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">
</div>
<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">
<i class="fas fa-search mr-2"></i> Scanner le Produit
</button>
</div>
<div class="hacker-card bg-gray-900 rounded-lg p-6">
<div class="flex items-center mb-4">
<i class="fas fa-image text-green-500 text-2xl mr-3"></i>
<h2 class="text-xl font-bold">Recherche par Image</h2>
</div>
<div class="mb-4">
<label class="block text-gray-400 mb-2">Capture d'écran du produit</label>
<div class="border-2 border-dashed border-gray-700 rounded p-4 text-center">
<img id="previewImage" src="" alt="Aperçu" class="mx-auto mb-2 hidden">
<input type="file" id="imageUpload" accept="image/*" class="hidden" onchange="previewFile()">
<button onclick="document.getElementById('imageUpload').click()" class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded">
<i class="fas fa-upload mr-2"></i> Choisir une image
</button>
<p class="text-gray-500 text-sm mt-2">Formats supportés: JPG, PNG, GIF</p>
</div>
</div>
<div class="progress-bar mb-4 hidden" id="imageProgress">
<div class="progress-value" id="imageProgressValue"></div>
</div>
<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>
<i class="fab fa-envira mr-2"></i> Scanner l'Image Envato
</button>
</div>
</div>
<div class="bg-gray-900 rounded-lg p-6 mb-8">
<h2 class="text-xl font-bold mb-4 flex items-center">
<i class="fab fa-envira text-green-500 mr-2"></i> Résultats du Scan Envato
</h2>
<div class="terminal" id="envato-results-terminal">
<div class="terminal-line">> Envato Product Scanner v3.2.1</div>
<div class="terminal-line">> Connexion sécurisée établie</div>
<div class="terminal-line">> En attente de commande...</div>
<div class="terminal-line">> Tapez "help" pour les options<span class="cursor"></span></div>
</div>
</div>
<div class="bg-red-900 bg-opacity-30 border border-red-700 rounded-lg p-6">
<h2 class="text-xl font-bold mb-2 flex items-center">
<i class="fas fa-exclamation-triangle mr-2"></i> Avertissement Légal Important
</h2>
<p class="text-gray-300">
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.
</p>
<div class="mt-4 p-4 envato-badge rounded-lg flex items-center">
<i class="fab fa-envira text-2xl mr-3"></i>
<div>
<h3 class="font-bold">Achetez légalement sur Envato</h3>
<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>
</div>
</div>
</div>
</div>
<script>
let uploadedImage = null;
function previewFile() {
const file = document.getElementById('imageUpload').files[0];
const preview = document.getElementById('previewImage');
const scanBtn = document.getElementById('scanImageBtn');
if (file) {
const reader = new FileReader();
reader.onload = function(e) {
preview.src = e.target.result;
preview.classList.remove('hidden');
uploadedImage = e.target.result;
// Simulate image processing
const progressBar = document.getElementById('imageProgress');
const progressValue = document.getElementById('imageProgressValue');
progressBar.classList.remove('hidden');
progressValue.style.width = '0%';
let progress = 0;
const interval = setInterval(() => {
progress += 5;
progressValue.style.width = `${progress}%`;
if (progress >= 100) {
clearInterval(interval);
setTimeout(() => {
progressBar.classList.add('hidden');
scanBtn.classList.remove('bg-gray-600', 'opacity-50', 'cursor-not-allowed');
scanBtn.classList.add('bg-green-600', 'hover:bg-green-700');
scanBtn.disabled = false;
}, 500);
}
}, 100);
}
reader.readAsDataURL(file);
}
}
function scanEnvatoByName() {
const productName = document.getElementById('envatoProductName').value.trim();
const productId = document.getElementById('envatoProductId').value.trim();
const resultsTerminal = document.getElementById('envato-results-terminal');
if (!productName) {
alert("Veuillez entrer un nom de produit Envato");
return;
}
resultsTerminal.innerHTML = '';
addTerminalLine(resultsTerminal, `> Lancement du scan pour: ${productName} ${productId ? '(ID: '+productId+')' : ''}`);
addTerminalLine(resultsTerminal, `> Connexion à l'API Envato...`);
setTimeout(() => {
addTerminalLine(resultsTerminal, `> Vérification des licences...`);
setTimeout(() => {
// Generate fake results
const fakeResults = generateFakeEnvatoResults(productName, productId);
addTerminalLine(resultsTerminal, `> Scan terminé. Résultats:`);
addTerminalLine(resultsTerminal, ``);
addTerminalLine(resultsTerminal, `> Nom: ${fakeResults.name}`);
addTerminalLine(resultsTerminal, `> Auteur: ${fakeResults.author}`);
addTerminalLine(resultsTerminal, `> Prix: $${fakeResults.price}`);
addTerminalLine(resultsTerminal, `> Nombre de ventes: ${fakeResults.sales}`);
addTerminalLine(resultsTerminal, ``);
addTerminalLine(resultsTerminal, `> [<span class="text-red-500">SÉCURITÉ</span>] Système de licence détecté:`);
addTerminalLine(resultsTerminal, `> - Protection: ${fakeResults.protection}`);
addTerminalLine(resultsTerminal, `> - Dernière mise à jour: ${fakeResults.lastUpdate}`);
addTerminalLine(resultsTerminal, ``);
addTerminalLine(resultsTerminal, `> [<span class="text-yellow-500">AVERTISSEMENT</span>] Toute tentative de contournement`);
addTerminalLine(resultsTerminal, `> du système de licence est illégale et sera détectée`);
addTerminalLine(resultsTerminal, ``);
addTerminalLine(resultsTerminal, `> Tapez "help" pour les options<span class="cursor"></span>`);
}, 1500);
}, 1000);
}
function scanEnvatoByImage() {
if (!uploadedImage) {
alert("Veuillez téléverser une image d'abord");
return;
}
const resultsTerminal = document.getElementById('envato-results-terminal');
resultsTerminal.innerHTML = '';
addTerminalLine(resultsTerminal, `> Analyse d'image Envato en cours...`);
addTerminalLine(resultsTerminal, `> Reconnaissance du produit...`);
setTimeout(() => {
addTerminalLine(resultsTerminal, `> Comparaison avec la base de données...`);
setTimeout(() => {
// Generate fake image analysis results
const fakeResults = generateFakeEnvatoImageResults();
addTerminalLine(resultsTerminal, `> Analyse terminée. Résultats:`);
addTerminalLine(resultsTerminal, ``);
addTerminalLine(resultsTerminal, `> Produit probable: ${fakeResults.product}`);
addTerminalLine(resultsTerminal, `> Confiance: ${fakeResults.confidence}%`);
addTerminalLine(resultsTerminal, ``);
if (fakeResults.matches.length > 0) {
addTerminalLine(resultsTerminal, `> Correspondances trouvées:`);
fakeResults.matches.forEach(match => {
addTerminalLine(resultsTerminal, `> - ${match}`);
});
addTerminalLine(resultsTerminal, ``);
}
addTerminalLine(resultsTerminal, `> [<span class="text-red-500">SÉCURITÉ</span>] Les produits Envato utilisent`);
addTerminalLine(resultsTerminal, `> un système de vérification de licence en ligne`);
addTerminalLine(resultsTerminal, `> qui ne peut être contourné.`);
addTerminalLine(resultsTerminal, ``);
addTerminalLine(resultsTerminal, `> Tapez "help" pour les options<span class="cursor"></span>`);
}, 1500);
}, 1000);
}
function addTerminalLine(terminal, html) {
const line = document.createElement('div');
line.className = 'terminal-line';
line.innerHTML = html;
terminal.appendChild(line);
terminal.scrollTop = terminal.scrollHeight;
}
function generateFakeEnvatoResults(productName, productId) {
const protections = [
"Verification de licence en ligne",
"Cryptage PHP IonCube",
"Vérification de domaine",
"Système d'activation unique"
];
return {
name: productName + (productId ? ` (ID: ${productId})` : ""),
author: "Author" + Math.floor(Math.random() * 1000),
price: (Math.random() * 50 + 20).toFixed(2),
sales: Math.floor(Math.random() * 5000),
protection: protections[Math.floor(Math.random() * protections.length)],
lastUpdate: new Date(Date.now() - Math.floor(Math.random() * 30 * 24 * 60 * 60 * 1000)).toLocaleDateString()
};
}
function generateFakeEnvatoImageResults() {
const products = [
"Avada Theme",
"Betheme",
"Impreza",
"The7",
"X Theme",
"Enfold"
];
const matches = [
"Correspondance visuelle à 87%",
"Signature CSS détectée",
"Structure HTML correspondante",
"Logo du créateur identifié"
];
return {
product: products[Math.floor(Math.random() * products.length)],
confidence: Math.floor(Math.random() * 30) + 65,
matches: matches.slice(0, Math.floor(Math.random() * matches.length) + 1)
};
}
</script>
<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>
</html> |