shadowthief-prodigy / index.html
MrDONT's picture
Во-первых объясни как это всё работает во-вторых добавь взаимствование файлов такие как в сессии telegram в формате tdata и discord токены
8b7724e verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShadowStealer | Data Extraction Suite</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/terminal.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#6e40c9',
secondary: '#4a3aff',
dark: '#0f0a1f'
}
}
}
}
</script>
</head>
<body class="bg-dark text-gray-200 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-12">
<div id="vanta-bg" class="absolute top-0 left-0 w-full h-full -z-10"></div>
<div class="max-w-6xl mx-auto grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="space-y-8">
<h1 class="text-5xl font-bold bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
Shadow<span class="text-white">Stealer</span>
</h1>
<p class="text-xl text-gray-300">
The ultimate toolkit for ethical penetration testing and system auditing.
<br>Operate in the shadows, leave no traces.
</p>
<div class="flex gap-4">
<a href="/dashboard.html" class="px-6 py-3 bg-primary hover:bg-primary/80 rounded-lg font-medium transition-all">
Launch Console
</a>
<a href="/docs.html" class="px-6 py-3 border border-primary text-primary hover:bg-primary/10 rounded-lg font-medium transition-all">
Documentation
</a>
</div>
</div>
<div class="relative">
<custom-terminal></custom-terminal>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
VANTA.NET({
el: "#vanta-bg",
color: 0x6e40c9,
backgroundColor: 0x0f0a1f,
points: 12,
maxDistance: 22,
spacing: 18
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>