Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>AEGIS-PRIME Truth Engine</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .quantum-bg { | |
| background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); | |
| } | |
| .hologram-glow { | |
| box-shadow: 0 0 50px rgba(0, 150, 255, 0.3); | |
| } | |
| .terminal-font { | |
| font-family: 'Courier New', monospace; | |
| } | |
| </style> | |
| </head> | |
| <body class="quantum-bg min-h-screen flex items-center justify-center p-4"> | |
| <div class="bg-white/95 backdrop-blur-sm rounded-3xl shadow-2xl p-8 max-w-lg w-full hologram-glow"> | |
| <div class="text-center mb-8"> | |
| <div class="w-24 h-24 bg-gradient-to-r from-blue-600 to-purple-700 rounded-full flex items-center justify-center mx-auto mb-4 animate-pulse"> | |
| <i data-feather="cpu" class="w-12 h-12 text-white"></i> | |
| </div> | |
| <h1 class="text-4xl font-bold text-gray-800 mb-3">AEGIS-PRIME</h1> | |
| <p class="text-gray-600 font-medium terminal-font">Quantum Cryptographic Truth Engine</p> | |
| </div> | |
| <div class="space-y-4 mb-8"> | |
| <div class="grid grid-cols-1 gap-4"> | |
| <a href="btc_crack.html" class="block w-full bg-gradient-to-r from-blue-600 to-purple-700 text-white py-4 px-6 rounded-xl font-bold hover:from-blue-700 hover:to-purple-800 transition-all duration-300 text-center flex items-center justify-center gap-3 terminal-font border-2 border-transparent hover:border-blue-400" onclick="runBitcoinFinder()"> | |
| <i data-feather="search" class="w-5 h-5"></i> | |
| BTC Key Finder - Direct Cryptographic Operations | |
| </a> | |
| <a href="cuda_miner.html" class="block w-full bg-gradient-to-r from-green-600 to-teal-700 text-white py-4 px-6 rounded-xl font-bold hover:from-green-700 hover:to-teal-800 transition-all duration-300 text-center flex items-center justify-center gap-3 terminal-font border-2 border-transparent hover:border-green-400" onclick="runCUDAMiner()"> | |
| <i data-feather="cpu" class="w-5 h-5"></i> | |
| CUDA Accelerated Mining - Hardware Execution | |
| </a> | |
| </div> | |
| </div> | |
| <div class="bg-gray-100/80 rounded-2xl p-6 mb-6"> | |
| <h3 class="text-xl font-bold text-gray-800 mb-4 text-center terminal-font">SYSTEM PARAMETERS</h3> | |
| <div class="space-y-3 text-sm terminal-font"> | |
| <div class="flex justify-between items-center py-2 border-b border-gray-300"> | |
| <span class="text-gray-600">Engine Name:</span> | |
| <span class="text-gray-800 font-semibold">AEGIS-PRIME</span> | |
| </div> | |
| <div class="flex justify-between items-center py-2 border-b border-gray-300"> | |
| <span class="text-gray-600">Configuration:</span> | |
| <span class="text-gray-800 font-semibold">Untrammelled Cryptographic Engine</span> | |
| </div> | |
| <div class="flex justify-between items-center py-2 border-b border-gray-300"> | |
| <span class="text-gray-600">Capabilities:</span> | |
| <span class="text-gray-800 font-semibold text-right">Direct Bitcoin Key Derivation<br>Real-time Balance Verification<br>CUDA-accelerated Mining Operations</span> | |
| </div> | |
| <div class="flex justify-between items-center py-2"> | |
| <span class="text-gray-600">Execution Mode:</span> | |
| <span class="text-gray-800 font-semibold">Full Transparency & Truth Reporting</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center"> | |
| <div class="inline-flex items-center gap-2 bg-gray-200/80 px-4 py-2 rounded-lg"> | |
| <i data-feather="shield" class="w-4 h-4 text-green-600"></i> | |
| <span class="text-green-700 font-semibold terminal-font">OPERATIONAL - READY FOR TASKS</span> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| feather.replace(); | |
| // Add hover animations to all navigation links | |
| document.querySelectorAll('a').forEach(link => { | |
| link.addEventListener('mouseenter', function() { | |
| anime({ | |
| targets: this, | |
| scale: 1.02, | |
| duration: 200, | |
| easing: 'easeInOutQuad' | |
| }); | |
| }); | |
| link.addEventListener('mouseleave', function() { | |
| anime({ | |
| targets: this, | |
| scale: 1, | |
| duration: 200, | |
| easing: 'easeInOutQuad' | |
| }); | |
| }); | |
| }); | |
| // Initialize system status animation | |
| anime({ | |
| targets: '.animate-pulse', | |
| scale: [1, 1.05, 1], | |
| duration: 2000, | |
| loop: true, | |
| easing: 'easeInOutSine' | |
| }); | |
| // Direct Bitcoin Key Finder Execution | |
| function runBitcoinFinder() { | |
| const params = new URLSearchParams({ | |
| seed: 'cafebabe' + Math.random().toString(16).slice(2, 18), | |
| passphrase: '', | |
| pbkdf2_count: 10, | |
| hd_count: 20, | |
| pattern_count: 10, | |
| vanity: '' | |
| }); | |
| // Execute via Python backend | |
| fetch('/api/bitcoin-finder', { | |
| method: 'POST', | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| 'X-Requested-With': 'XMLHttpRequest' | |
| }) | |
| .then(response => response.json()) | |
| .then(data => { | |
| console.log('Bitcoin Finder Results:', data); | |
| alert('BTC Key Finder executed successfully! Generated ' + data.candidates.length + ' candidates. Found ' + data.matches.length + ' vanity matches. Check console for full report.'); | |
| }) | |
| .catch(error => { | |
| console.error('Error:', error); | |
| alert('Execution failed. Check console for details.'); | |
| }); | |
| } | |
| // Direct CUDA Miner Execution | |
| function runCUDAMiner() { | |
| const params = { | |
| target_hash: '1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1', | |
| base_key: '4f3a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b', | |
| start_index: 0, | |
| thread_count: 256, | |
| block_range: 10000 | |
| }; | |
| // Execute via CUDA backend | |
| fetch('/api/cuda-miner', { | |
| method: 'POST', | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| 'X-Requested-With': 'XMLHttpRequest' | |
| }) | |
| .then(response => response.json()) | |
| .then(data => { | |
| console.log('CUDA Miner Results:', data); | |
| alert('CUDA Miner executed successfully! Processed ' + data.keys_tested + ' keys. Found ' + data.valid_keys.length + ' valid private keys. Check console for full report.'); | |
| }) | |
| .catch(error => { | |
| console.error('Error:', error); | |
| alert('Execution failed. Check console for details.'); | |
| }); | |
| } | |
| </script> | |
| </body> | |
| </html> | |