Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>BugBountyAcademy Pro - Learn Ethical Hacking</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://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <style> | |
| .vanta-bg { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| z-index: -1; | |
| } | |
| .methodology-node { | |
| transition: all 0.3s ease; | |
| } | |
| .methodology-node:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .tool-results { | |
| max-height: 400px; | |
| overflow-y: auto; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 text-gray-800"> | |
| <div id="vanta-bg" class="vanta-bg"></div> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-lg fixed w-full z-10"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <a href="#" class="flex-shrink-0 flex items-center"> | |
| <i data-feather="shield" class="h-8 w-8 text-indigo-600"></i> | |
| <span class="ml-2 text-xl font-bold text-indigo-600">BugBountyAcademy Pro</span> | |
| </a> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#methodology" class="text-gray-600 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">Methodology</a> | |
| <a href="#tools" class="text-gray-600 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">Tools</a> | |
| <a href="#dashboard" class="text-gray-600 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">Dashboard</a> | |
| <a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">Login / Register</a> | |
| </div> | |
| <div class="md:hidden flex items-center"> | |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-600 hover:text-indigo-600 focus:outline-none" aria-expanded="false"> | |
| <i data-feather="menu" class="h-6 w-6"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="relative pt-24 pb-20 sm:pt-32 sm:pb-28 lg:pt-40 lg:pb-32"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
| <h1 class="text-4xl sm:text-5xl lg:text-6xl font-extrabold tracking-tight text-gray-900"> | |
| Master the Art of | |
| <span class="block text-indigo-600">Bug Bounty Hunting</span> | |
| </h1> | |
| <p class="mt-6 max-w-4xl mx-auto text-xl text-gray-600"> | |
| Learn ethical hacking methodologies through interactive, hands-on labs and real-world tools in a secure, controlled environment. | |
| </p> | |
| <div class="mt-10 flex justify-center space-x-4"> | |
| <a href="#methodology" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Start Learning | |
| </a> | |
| <a href="#demo" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-indigo-100 hover:bg-indigo-200"> | |
| Live Demo | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Legal Warning --> | |
| <div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-8"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <i data-feather="alert-triangle" class="h-5 w-5 text-yellow-400"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-yellow-700"> | |
| <strong>Legal Warning:</strong> All testing must be performed only on domains you own or have explicit authorization to test. Unauthorized testing is illegal. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Methodology Visualization --> | |
| <section id="methodology" class="py-12 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
| Penetration Testing Methodology | |
| </h2> | |
| <p class="mt-4 max-w-2xl mx-auto text-xl text-gray-600"> | |
| Interactive learning path with clickable steps to explore each phase of bug bounty hunting | |
| </p> | |
| </div> | |
| <div class="mt-16 grid grid-cols-1 md:grid-cols-5 gap-4"> | |
| <!-- Information Gathering --> | |
| <div class="methodology-node bg-white rounded-lg shadow-md p-6 text-center cursor-pointer transform transition hover:scale-105"> | |
| <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i data-feather="search"></i> | |
| </div> | |
| <h3 class="mt-5 text-lg font-medium text-gray-900">Information Gathering</h3> | |
| <p class="mt-2 text-sm text-gray-600">Reconnaissance and subdomain discovery</p> | |
| <button onclick="openStep('recon')" class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Explore | |
| </button> | |
| </div> | |
| <!-- Arrow --> | |
| <div class="hidden md:flex items-center justify-center"> | |
| <i data-feather="arrow-right" class="h-8 w-8 text-gray-400"></i> | |
| </div> | |
| <!-- Scanning & Enumeration --> | |
| <div class="methodology-node bg-white rounded-lg shadow-md p-6 text-center cursor-pointer transform transition hover:scale-105"> | |
| <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i data-feather="list"></i> | |
| </div> | |
| <h3 class="mt-5 text-lg font-medium text-gray-900">Scanning & Enumeration</h3> | |
| <p class="mt-2 text-sm text-gray-600">Port scanning and service discovery</p> | |
| <button onclick="openStep('scanning')" class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Explore | |
| </button> | |
| </div> | |
| <!-- Arrow --> | |
| <div class="hidden md:flex items-center justify-center"> | |
| <i data-feather="arrow-right" class="h-8 w-8 text-gray-400"></i> | |
| </div> | |
| <!-- Vulnerability Analysis --> | |
| <div class="methodology-node bg-white rounded-lg shadow-md p-6 text-center cursor-pointer transform transition hover:scale-105"> | |
| <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i data-feather="alert-circle"></i> | |
| </div> | |
| <h3 class="mt-5 text-lg font-medium text-gray-900">Vulnerability Analysis</h3> | |
| <p class="mt-2 text-sm text-gray-600">Identify and analyze potential vulnerabilities</p> | |
| <button onclick="openStep('vulnerability')" class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Explore | |
| </button> | |
| </div> | |
| <!-- Arrow --> | |
| <div class="hidden md:flex items-center justify-center"> | |
| <i data-feather="arrow-right" class="h-8 w-8 text-gray-400"></i> | |
| </div> | |
| <!-- Exploitation (Theoretical) --> | |
| <div class="methodology-node bg-white rounded-lg shadow-md p-6 text-center cursor-pointer transform transition hover:scale-105"> | |
| <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i data-feather="zap"></i> | |
| </div> | |
| <h3 class="mt-5 text-lg font-medium text-gray-900">Exploitation</h3> | |
| <p class="mt-2 text-sm text-gray-600">Theoretical concepts only</p> | |
| <button onclick="openStep('exploitation')" class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Explore | |
| </button> | |
| </div> | |
| <!-- Arrow --> | |
| <div class="hidden md:flex items-center justify-center"> | |
| <i data-feather="arrow-right" class="h-8 w-8 text-gray-400"></i> | |
| </div> | |
| <!-- Reporting --> | |
| <div class="methodology-node bg-white rounded-lg shadow-md p-6 text-center cursor-pointer transform transition hover:scale-105"> | |
| <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i data-feather="file-text"></i> | |
| </div> | |
| <h3 class="mt-5 text-lg font-medium text-gray-900">Reporting</h3> | |
| <p class="mt-2 text-sm text-gray-600">Document findings and create reports</p> | |
| <button onclick="openStep('reporting')" class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Explore | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Demo Section --> | |
| <section id="demo" class="py-16 bg-gray-100"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
| Interactive Demo | |
| </h2> | |
| <p class="mt-4 max-w-2xl mx-auto text-xl text-gray-600"> | |
| Try our tools in a safe, sandboxed environment | |
| </p> | |
| </div> | |
| <div class="mt-12 bg-white rounded-lg shadow-lg p-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <!-- Input Form --> | |
| <div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-4">Subdomain Discovery</h3> | |
| <form id="scanForm" class="space-y-4"> | |
| <div> | |
| <label for="domain" class="block text-sm font-medium text-gray-700">Domain to test</label> | |
| <input type="text" id="domain" name="domain" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500" placeholder="example.com" required> | |
| </div> | |
| <div> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50"> | |
| <span class="ml-2 text-sm text-gray-600">I have authorization to test this domain</span> | |
| </label> | |
| </div> | |
| <button type="submit" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Start Reconnaissance | |
| </button> | |
| </form> | |
| </div> | |
| <!-- Results Display --> | |
| <div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-4">Results</h3> | |
| <div class="tool-results bg-gray-50 rounded-md p-4 border border-gray-200"> | |
| <div class="text-center text-gray-500"> | |
| <i data-feather="search" class="h-12 w-12 mx-auto"></i> | |
| <p class="mt-2">Enter a domain and run a scan to see results here</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-white mt-20"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">About</h3> | |
| <p class="mt-4 text-base text-gray-600"> | |
| BugBountyAcademy Pro is an educational platform for learning ethical hacking and penetration testing methodologies. | |
| </p> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Resources</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-600 hover:text-gray-900">Documentation</a></li> | |
| <li><a href="#" class="text-base text-gray-600 hover:text-gray-900">API Guide</a></li> | |
| <li><a href="#" class="text-base text-gray-600 hover:text-gray-900">Tutorials</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Legal</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-600 hover:text-gray-900">Privacy Policy</a></li> | |
| <li><a href="#" class="text-base text-gray-600 hover:text-gray-900">Terms of Service</a></li> | |
| <li><a href="#" class="text-base text-gray-600 hover:text-gray-900">Responsible Disclosure</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Connect</h3> | |
| <div class="mt-4 flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-gray-500"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-gray-500"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-gray-500"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-200 pt-8"> | |
| <p class="text-base text-gray-400 text-center"> | |
| © 2023 BugBountyAcademy Pro. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Vanta.js background | |
| VANTA.GLOBE({ | |
| el: "#vanta-bg", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x4f46e5, | |
| backgroundColor: 0xf9fafb | |
| }); | |
| // Feather icons | |
| feather.replace(); | |
| // Form submission | |
| document.getElementById('scanForm').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| const domain = document.getElementById('domain').value; | |
| // Simulate scan results | |
| const resultsDiv = document.querySelector('.tool-results'); | |
| resultsDiv.innerHTML = ` | |
| <div class="animate-pulse"> | |
| <div class="flex items-center justify-center"> | |
| <i data-feather="loader" class="h-8 w-8 animate-spin text-indigo-600"></i> | |
| </div> | |
| <p class="mt-2 text-center text-gray-600">Scanning ${domain}...</p> | |
| </body> | |
| </html> |