shadowthief-prodigy / dashboard.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>Dashboard | ShadowStealer</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="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/module-card.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-8">
<div class="max-w-7xl mx-auto">
<div class="mb-8">
<h1 class="text-3xl font-bold">ShadowStealer Dashboard</h1>
<p class="text-gray-400">Active session: stealth-mode-42</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<module-card
title="Network Scanner"
icon="globe"
description="Scan and map network infrastructure with advanced detection"
status="active"
action="configure">
</module-card>
<module-card
title="Credential Harvester"
icon="key"
description="Extract and decrypt credentials from various sources"
status="inactive"
action="launch">
</module-card>
<module-card
title="Firewall Bypass"
icon="shield"
description="Identify and exploit firewall vulnerabilities"
status="active"
action="monitor">
</module-card>
<module-card
title="Data Exfiltration"
icon="download"
description="Silently extract and encrypt target data"
status="inactive"
action="configure">
</module-card>
<module-card
title="Persistence"
icon="anchor"
description="Maintain access to compromised systems"
status="inactive"
action="configure">
</module-card>
<module-card
title="Cleanup"
icon="trash-2"
description="Remove all traces of activity from target systems"
status="ready"
action="execute">
</module-card>
</div>
<div class="mt-12 grid grid-cols-1 lg:grid-cols-2 gap-6">
<file-browser></file-browser>
<div class="bg-dark p-6 rounded-lg border border-primary/20">
<h2 class="text-xl font-bold mb-4">Session Data Extractor</h2>
<p class="text-gray-400 mb-4">Extract Telegram tdata and Discord tokens from target systems</p>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Telegram Path</label>
<input type="text" class="w-full bg-dark border border-primary/20 rounded px-3 py-2"
value="/home/user/.telegram/tdata" readonly>
</div>
<div>
<label class="block text-sm font-medium mb-1">Discord Path</label>
<input type="text" class="w-full bg-dark border border-primary/20 rounded px-3 py-2"
value="/home/user/.config/discord/Local Storage" readonly>
</div>
<button class="px-4 py-2 bg-primary hover:bg-primary/80 rounded font-medium">
Extract Session Data
</button>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/file-browser.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>