tweetshield-pro / security.html
ziffir's picture
Hâlâ olmadı Mobil uyumlu tema
01072a5 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<title>Security | TweetShield Pro</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-dark-900 text-gray-100 min-h-screen">
<security-banner></security-banner>
<custom-navbar></custom-navbar>
<div class="flex">
<custom-sidebar></custom-sidebar>
<main class="flex-1 p-8 ml-0 lg:ml-64 transition-all duration-300">
<div class="max-w-4xl mx-auto">
<section class="mb-12">
<h1 class="text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary-500 to-secondary-500">
Security Measures
</h1>
<p class="text-gray-400 mt-4">
Our commitment to protecting your data and privacy.
</p>
</section>
<div class="grid grid-cols-1 gap-8">
<div class="bg-dark-800 rounded-xl p-6 border border-white/5 shadow-xl">
<h2 class="text-2xl font-bold mb-4 flex items-center gap-2">
<i data-feather="lock" class="text-primary-500"></i>
Authentication Security
</h2>
<ul class="space-y-3 text-gray-300">
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>OAuth 2.0 with JWT token rotation and short expiration</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Multi-factor authentication (MFA) for all elevated actions</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Strict session management with idle timeout</span>
</li>
</ul>
</div>
<div class="bg-dark-800 rounded-xl p-6 border border-white/5 shadow-xl">
<h2 class="text-2xl font-bold mb-4 flex items-center gap-2">
<i data-feather="shield" class="text-secondary-500"></i>
Data Protection
</h2>
<ul class="space-y-3 text-gray-300">
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>End-to-end encryption for all sensitive data</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Row-level security (RLS) in database</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Regular security audits and penetration testing</span>
</li>
</ul>
</div>
<div class="bg-dark-800 rounded-xl p-6 border border-white/5 shadow-xl">
<h2 class="text-2xl font-bold mb-4 flex items-center gap-2">
<i data-feather="alert-octagon" class="text-yellow-500"></i>
Threat Prevention
</h2>
<ul class="space-y-3 text-gray-300">
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Rate limiting and DDoS protection</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Strict Content Security Policy (CSP)</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="text-green-500 mt-1"></i>
<span>Continuous monitoring for suspicious activity</span>
</li>
</ul>
</div>
</div>
</div>
</main>
</div>
<script src="components/security-banner.js"></script>
<script src="components/navbar.js"></script>
<script src="components/sidebar.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>