deepsite / index.html
Gaston666's picture
undefined - Initial Deployment
79ebcb2 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlackOps Secure Comms</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>
.bg-camo {
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CiAgICAgIDxyZWN0IHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0iIzFhMWIxZSIvPgogICAgICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9IiMyMzI4MmUiLz4KICAgICAgPHJlY3QgeD0iMjAiIHk9IjIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9IiMyMzI4MmUiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPgo8L3N2Zz4=');
}
.encryption-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.7; }
50% { opacity: 1; }
100% { opacity: 0.7; }
}
.message-bubble {
position: relative;
}
.message-bubble:after {
content: '';
position: absolute;
bottom: 0;
width: 0;
height: 0;
border: 10px solid transparent;
}
.received:after {
left: -10px;
border-right-color: #1e293b;
border-left: 0;
}
.sent:after {
right: -10px;
border-left-color: #3b82f6;
border-right: 0;
}
.burn-after-reading {
background: linear-gradient(45deg, #ef4444, #f59e0b);
}
</style>
</head>
<body class="bg-camo text-gray-100 min-h-screen flex flex-col">
<!-- Security Status Bar -->
<div class="bg-black bg-opacity-80 py-2 px-4 flex justify-between items-center border-b border-gray-800">
<div class="flex items-center space-x-2">
<div class="w-3 h-3 rounded-full bg-green-500"></div>
<span class="text-xs font-mono">SECURE CONNECTION</span>
</div>
<div class="flex items-center space-x-4">
<div class="flex items-center space-x-1">
<i class="fas fa-shield-alt text-green-500"></i>
<span class="text-xs">E2E ENCRYPTED</span>
</div>
<div class="flex items-center space-x-1">
<i class="fas fa-link-slash text-yellow-500"></i>
<span class="text-xs">NO TRACKING</span>
</div>
<div class="flex items-center space-x-1">
<i class="fab fa-ethereum text-purple-500"></i>
<span class="text-xs">BLOCKCHAIN</span>
</div>
</div>
</div>
<!-- Main App Container -->
<div class="flex flex-1 overflow-hidden">
<!-- Sidebar -->
<div class="w-16 md:w-64 bg-black bg-opacity-70 border-r border-gray-800 flex flex-col">
<!-- App Logo -->
<div class="p-4 border-b border-gray-800 flex items-center justify-center md:justify-start">
<i class="fas fa-user-secret text-2xl text-blue-500"></i>
<span class="hidden md:block ml-2 font-bold text-blue-400">BLACKOPS</span>
</div>
<!-- Navigation -->
<nav class="flex-1 py-4">
<div class="space-y-1">
<a href="#" class="flex items-center px-4 py-2 text-blue-400 bg-gray-900 bg-opacity-50">
<i class="fas fa-comment-alt text-lg w-6"></i>
<span class="hidden md:block ml-3">Messages</span>
</a>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 hover:text-white">
<i class="fas fa-user-friends text-lg w-6"></i>
<span class="hidden md:block ml-3">Contacts</span>
</a>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 hover:text-white">
<i class="fas fa-file-upload text-lg w-6"></i>
<span class="hidden md:block ml-3">Secure Files</span>
</a>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 hover:text-white">
<i class="fas fa-video text-lg w-6"></i>
<span class="hidden md:block ml-3">Video Calls</span>
</a>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 hover:text-white">
<i class="fas fa-link text-lg w-6"></i>
<span class="hidden md:block ml-3">Onion Routing</span>
</a>
</div>
</nav>
<!-- User Profile -->
<div class="p-4 border-t border-gray-800 flex items-center">
<div class="relative">
<img src="https://api.dicebear.com/7.x/bottts-neutral/svg?seed=Military" class="w-8 h-8 rounded-full" alt="Profile">
<div class="absolute bottom-0 right-0 w-2 h-2 bg-green-500 rounded-full border border-gray-900"></div>
</div>
<div class="hidden md:block ml-3">
<div class="text-sm font-medium">Agent-007</div>
<div class="text-xs text-gray-400">Online</div>
</div>
<button class="hidden md:block ml-auto text-gray-400 hover:text-white">
<i class="fas fa-cog"></i>
</button>
</div>
</div>
<!-- Chat Area -->
<div class="flex-1 flex flex-col">
<!-- Chat Header -->
<div class="bg-black bg-opacity-70 p-4 border-b border-gray-800 flex items-center justify-between">
<div class="flex items-center">
<img src="https://api.dicebear.com/7.x/bottts-neutral/svg?seed=Delta" class="w-10 h-10 rounded-full" alt="Contact">
<div class="ml-3">
<div class="font-medium">Delta Team</div>
<div class="text-xs text-gray-400 flex items-center">
<span>Secure Connection</span>
<span class="mx-2"></span>
<i class="fas fa-lock text-green-500"></i>
<span class="ml-1">Encrypted</span>
</div>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="text-gray-400 hover:text-white">
<i class="fas fa-phone-alt"></i>
</button>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-video"></i>
</button>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-v"></i>
</button>
</div>
</div>
<!-- Messages -->
<div class="flex-1 overflow-y-auto p-4 space-y-4">
<!-- Date Divider -->
<div class="flex items-center justify-center">
<div class="text-xs text-gray-500 bg-gray-900 px-2 py-1 rounded">Today, 14:30</div>
</div>
<!-- Received Message -->
<div class="flex items-start">
<img src="https://api.dicebear.com/7.x/bottts-neutral/svg?seed=Delta" class="w-8 h-8 rounded-full mt-1" alt="Sender">
<div class="ml-3 max-w-xs md:max-w-md">
<div class="bg-slate-800 text-white px-4 py-2 rounded-lg message-bubble received">
<div class="flex justify-between items-center mb-1">
<span class="text-xs text-blue-300">Delta-1</span>
<span class="text-xs text-gray-400">14:31</span>
</div>
<p>Team, we have confirmation on the target location. Proceeding with phase 2.</p>
</div>
<div class="text-xs text-gray-500 mt-1 flex items-center">
<i class="fas fa-lock mr-1"></i>
<span>End-to-end encrypted</span>
</div>
</div>
</div>
<!-- Sent Message -->
<div class="flex items-start justify-end">
<div class="max-w-xs md:max-w-md">
<div class="bg-blue-600 text-white px-4 py-2 rounded-lg message-bubble sent">
<div class="flex justify-between items-center mb-1">
<span class="text-xs text-blue-200">You</span>
<span class="text-xs text-blue-100">14:32</span>
</div>
<p>Received. Sending reinforcements to your position. ETA 15 minutes.</p>
</div>
<div class="text-xs text-gray-500 mt-1 flex items-center justify-end">
<i class="fas fa-lock mr-1"></i>
<span>End-to-end encrypted</span>
</div>
</div>
</div>
<!-- Encrypted File Message -->
<div class="flex items-start">
<img src="https://api.dicebear.com/7.x/bottts-neutral/svg?seed=Delta" class="w-8 h-8 rounded-full mt-1" alt="Sender">
<div class="ml-3 max-w-xs md:max-w-md">
<div class="bg-slate-800 text-white px-4 py-2 rounded-lg message-bubble received">
<div class="flex justify-between items-center mb-1">
<span class="text-xs text-blue-300">Delta-2</span>
<span class="text-xs text-gray-400">14:33</span>
</div>
<div class="border border-gray-700 rounded p-3 bg-gray-900">
<div class="flex items-center">
<i class="fas fa-file-image text-2xl text-blue-400 mr-3"></i>
<div>
<div class="font-medium">target_photo.jpg</div>
<div class="text-xs text-gray-400">2.4 MB • Encrypted</div>
</div>
</div>
<div class="mt-3 flex justify-between items-center">
<button class="text-xs bg-blue-600 hover:bg-blue-700 px-3 py-1 rounded">
<i class="fas fa-download mr-1"></i> Decrypt & Download
</button>
<span class="text-xs text-gray-400">Expires in 24h</span>
</div>
</div>
</div>
</div>
</div>
<!-- Burn After Reading Message -->
<div class="flex items-start justify-end">
<div class="max-w-xs md:max-w-md">
<div class="burn-after-reading text-white px-4 py-2 rounded-lg message-bubble sent">
<div class="flex justify-between items-center mb-1">
<span class="text-xs text-yellow-200">You</span>
<span class="text-xs text-yellow-100">14:35</span>
</div>
<div class="flex items-center">
<i class="fas fa-fire mr-2"></i>
<p>This message will self-destruct after being read.</p>
</div>
<div class="mt-2 text-xs text-yellow-100 italic">
<i class="fas fa-eye-slash mr-1"></i> Not viewed yet
</div>
</div>
</div>
</div>
</div>
<!-- Message Input -->
<div class="bg-black bg-opacity-70 p-4 border-t border-gray-800">
<!-- Encryption Status -->
<div class="flex items-center justify-between mb-3">
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-green-500 encryption-animation"></div>
<span class="text-xs font-mono">MESSAGE ENCRYPTION ACTIVE</span>
</div>
<div class="flex items-center space-x-3">
<button class="text-gray-400 hover:text-blue-400 text-sm">
<i class="fas fa-paperclip"></i>
</button>
<button class="text-gray-400 hover:text-blue-400 text-sm">
<i class="fas fa-camera"></i>
</button>
<button class="text-gray-400 hover:text-blue-400 text-sm">
<i class="fas fa-fire"></i>
</button>
</div>
</div>
<!-- Input Area -->
<div class="flex items-center">
<input type="text" placeholder="Type a secure message..."
class="flex-1 bg-gray-900 border border-gray-700 rounded-l-lg px-4 py-3 text-white focus:outline-none focus:border-blue-500">
<button class="bg-blue-600 hover:bg-blue-700 px-4 py-3 rounded-r-lg text-white">
<i class="fas fa-paper-plane"></i>
</button>
</div>
<!-- Blockchain Options -->
<div class="mt-3 flex items-center justify-between">
<div class="flex items-center space-x-2">
<input type="checkbox" id="blockchain" class="rounded text-blue-600">
<label for="blockchain" class="text-xs text-gray-400">Store on Blockchain</label>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-ethereum text-purple-400"></i>
<span class="text-xs text-gray-400">Network: Polygon</span>
</div>
</div>
</div>
</div>
</div>
<!-- Security Modal -->
<div class="fixed inset-0 bg-black bg-opacity-90 flex items-center justify-center z-50 hidden" id="securityModal">
<div class="bg-gray-900 border border-gray-800 rounded-lg max-w-md w-full p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-xl font-bold text-blue-400">
<i class="fas fa-shield-alt mr-2"></i> Security Verification
</h3>
<button onclick="document.getElementById('securityModal').classList.add('hidden')" class="text-gray-400 hover:text-white">
<i class="fas fa-times"></i>
</button>
</div>
<div class="space-y-4">
<div class="p-4 bg-gray-800 rounded-lg">
<div class="flex items-center space-x-3">
<div class="text-green-500">
<i class="fas fa-check-circle text-2xl"></i>
</div>
<div>
<h4 class="font-medium">End-to-End Encryption</h4>
<p class="text-sm text-gray-400">Messages are encrypted with AES-256 and RSA-4096</p>
</div>
</div>
</div>
<div class="p-4 bg-gray-800 rounded-lg">
<div class="flex items-center space-x-3">
<div class="text-green-500">
<i class="fas fa-check-circle text-2xl"></i>
</div>
<div>
<h4 class="font-medium">Blockchain Storage</h4>
<p class="text-sm text-gray-400">Message metadata stored on decentralized ledger</p>
</div>
</div>
</div>
<div class="p-4 bg-gray-800 rounded-lg">
<div class="flex items-center space-x-3">
<div class="text-green-500">
<i class="fas fa-check-circle text-2xl"></i>
</div>
<div>
<h4 class="font-medium">No IP Logging</h4>
<p class="text-sm text-gray-400">Your real IP address is masked through Tor network</p>
</div>
</div>
</div>
<div class="p-4 bg-gray-800 rounded-lg">
<div class="flex items-center space-x-3">
<div class="text-green-500">
<i class="fas fa-check-circle text-2xl"></i>
</div>
<div>
<h4 class="font-medium">Forward Secrecy</h4>
<p class="text-sm text-gray-400">Encryption keys change with every message</p>
</div>
</div>
</div>
</div>
<div class="mt-6 flex justify-center">
<button onclick="document.getElementById('securityModal').classList.add('hidden')" class="bg-blue-600 hover:bg-blue-700 px-6 py-2 rounded-lg text-white">
Confirm Security
</button>
</div>
</div>
</div>
<script>
// Show security modal on load
document.addEventListener('DOMContentLoaded', function() {
setTimeout(() => {
document.getElementById('securityModal').classList.remove('hidden');
}, 1000);
// Simulate message sending
document.querySelector('button.fa-paper-plane').closest('button').addEventListener('click', function() {
const input = document.querySelector('input[type="text"]');
if (input.value.trim() !== '') {
const messagesContainer = document.querySelector('.overflow-y-auto');
// Create new message element
const newMessage = document.createElement('div');
newMessage.className = 'flex items-start justify-end';
newMessage.innerHTML = `
<div class="max-w-xs md:max-w-md">
<div class="bg-blue-600 text-white px-4 py-2 rounded-lg message-bubble sent">
<div class="flex justify-between items-center mb-1">
<span class="text-xs text-blue-200">You</span>
<span class="text-xs text-blue-100">${new Date().toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})}</span>
</div>
<p>${input.value}</p>
</div>
<div class="text-xs text-gray-500 mt-1 flex items-center justify-end">
<i class="fas fa-lock mr-1"></i>
<span>End-to-end encrypted</span>
</div>
</div>
`;
messagesContainer.appendChild(newMessage);
input.value = '';
// Scroll to bottom
messagesContainer.scrollTop = messagesContainer.scrollHeight;
// Simulate reply after 1-3 seconds
setTimeout(() => {
const replyMessages = [
"Message received and understood.",
"Affirmative, proceeding as instructed.",
"Standby for confirmation.",
"Negative, we have unexpected resistance.",
"Roger that, awaiting further orders."
];
const randomReply = replyMessages[Math.floor(Math.random() * replyMessages.length)];
const replyMessage = document.createElement('div');
replyMessage.className = 'flex items-start';
replyMessage.innerHTML = `
<img src="https://api.dicebear.com/7.x/bottts-neutral/svg?seed=Delta" class="w-8 h-8 rounded-full mt-1" alt="Sender">
<div class="ml-3 max-w-xs md:max-w-md">
<div class="bg-slate-800 text-white px-4 py-2 rounded-lg message-bubble received">
<div class="flex justify-between items-center mb-1">
<span class="text-xs text-blue-300">Delta-${Math.floor(Math.random() * 5) + 1}</span>
<span class="text-xs text-gray-400">${new Date().toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})}</span>
</div>
<p>${randomReply}</p>
</div>
<div class="text-xs text-gray-500 mt-1 flex items-center">
<i class="fas fa-lock mr-1"></i>
<span>End-to-end encrypted</span>
</div>
</div>
`;
messagesContainer.appendChild(replyMessage);
messagesContainer.scrollTop = messagesContainer.scrollHeight;
}, 1000 + Math.random() * 2000);
}
});
});
</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=Gaston666/deepsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>