Add index.html
This commit is contained in:
532
index.html
Normal file
532
index.html
Normal file
@@ -0,0 +1,532 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>CypSec Security - Interactive Cards</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
min-height: 100vh;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.header {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 10px;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
.header p {
|
||||
font-size: 1.2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.cards-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||
gap: 30px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.flip-card {
|
||||
background-color: transparent;
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
perspective: 1000px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.flip-card-inner {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
transition: transform 0.8s;
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
|
||||
.flip-card.flipped .flip-card-inner {
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
.flip-card-front, .flip-card-back {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.flip-card-front {
|
||||
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
|
||||
color: #333;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.flip-card-back {
|
||||
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
|
||||
color: white;
|
||||
transform: rotateY(180deg);
|
||||
padding: 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.card-image {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
object-fit: contain;
|
||||
margin-bottom: 20px;
|
||||
filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size: 1.8rem;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
color: #2c3e50;
|
||||
}
|
||||
|
||||
.card-subtitle {
|
||||
font-size: 1rem;
|
||||
color: #7f8c8d;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-content h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 20px;
|
||||
color: #ecf0f1;
|
||||
border-bottom: 2px solid #3498db;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-content ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.card-content li {
|
||||
margin-bottom: 12px;
|
||||
padding-left: 25px;
|
||||
position: relative;
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.card-content li:before {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #27ae60;
|
||||
font-weight: bold;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.card-content p {
|
||||
margin-bottom: 15px;
|
||||
line-height: 1.6;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
background: rgba(255,255,255,0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
padding: 20px;
|
||||
border-radius: 15px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.contact-form p {
|
||||
margin: 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.contact-form a {
|
||||
color: #3498db;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.contact-form a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.header h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.header p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.cards-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.flip-card {
|
||||
height: 350px;
|
||||
}
|
||||
|
||||
.card-image {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Animation for page load */
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.flip-card {
|
||||
animation: fadeInUp 0.6s ease-out;
|
||||
}
|
||||
|
||||
.flip-card:nth-child(1) { animation-delay: 0.1s; }
|
||||
.flip-card:nth-child(2) { animation-delay: 0.2s; }
|
||||
.flip-card:nth-child(3) { animation-delay: 0.3s; }
|
||||
.flip-card:nth-child(4) { animation-delay: 0.4s; }
|
||||
.flip-card:nth-child(5) { animation-delay: 0.5s; }
|
||||
.flip-card:nth-child(6) { animation-delay: 0.6s; }
|
||||
.flip-card:nth-child(7) { animation-delay: 0.7s; }
|
||||
.flip-card:nth-child(8) { animation-delay: 0.8s; }
|
||||
.flip-card:nth-child(9) { animation-delay: 0.9s; }
|
||||
.flip-card:nth-child(10) { animation-delay: 1.0s; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<h1>CypSec Security Center</h1>
|
||||
<p>Click on any card to explore our security measures and programs</p>
|
||||
</div>
|
||||
|
||||
<div class="cards-grid">
|
||||
<!-- Responsible Disclosure -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Responsible Disclosure.png" alt="Responsible Disclosure" class="card-image">
|
||||
<h2 class="card-title">Responsible Disclosure</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Responsible Disclosure</h3>
|
||||
<p>We encourage researchers to report vulnerabilities responsibly, and reward disclosure of security issues in our products and infrastructure.</p>
|
||||
<div class="contact-form">
|
||||
<p>Contact Us: <a href="/#contactForm">Secure Form</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Security Audits -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="SecurityAudits.png" alt="Security Audits" class="card-image">
|
||||
<h2 class="card-title">Security Audits</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Security Audits</h3>
|
||||
<p>Our platform undergoes regular internal and third-party security audits to ensure robust protection for all users.</p>
|
||||
<ul>
|
||||
<li>Annual external penetration testing</li>
|
||||
<li>Continuous internal code reviews</li>
|
||||
<li>Compliance with industry standards</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Data Encryption -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Data Encryption.png" alt="Data Encryption" class="card-image">
|
||||
<h2 class="card-title">Data Encryption</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Data Encryption</h3>
|
||||
<p>All sensitive data is encrypted at rest and in transit using modern cryptographic standards to protect confidentiality and integrity.</p>
|
||||
<ul>
|
||||
<li>End-to-end encryption for communications</li>
|
||||
<li>AES-256 for stored data</li>
|
||||
<li>TLS 1.3 for network connections</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Incident Response -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Incident Response.png" alt="Incident Response" class="card-image">
|
||||
<h2 class="card-title">Incident Response</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Incident Response</h3>
|
||||
<p>We have a dedicated incident response team ready to quickly address any security events or breaches to minimize impact.</p>
|
||||
<ul>
|
||||
<li>24/7 monitoring and alerting</li>
|
||||
<li>Automated containment and mitigation</li>
|
||||
<li>Post-incident analysis and reporting</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Privacy & Compliance -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Privacy & Compliance.png" alt="Privacy & Compliance" class="card-image">
|
||||
<h2 class="card-title">Privacy & Compliance</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Privacy & Compliance</h3>
|
||||
<p>We adhere to strict privacy and regulatory standards to ensure data protection across all regions we operate.</p>
|
||||
<ul>
|
||||
<li>GDPR and local compliance</li>
|
||||
<li>Policy-as-Code enforcement</li>
|
||||
<li>Regular compliance reporting</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- OSINT & Threat Intelligence -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="OSINT.png" alt="OSINT & Threat Intelligence" class="card-image">
|
||||
<h2 class="card-title">OSINT & Threat Intelligence</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>OSINT & Threat Intelligence</h3>
|
||||
<p>Automated collection and analysis of open-source intelligence to detect emerging threats and reputation risks.</p>
|
||||
<ul>
|
||||
<li>Continuous monitoring of public sources and forums</li>
|
||||
<li>Integration with internal threat dashboards</li>
|
||||
<li>Customizable alerting on targeted assets or indicators</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Active Defense & Cyber Deception -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Deception.png" alt="Active Defense & Cyber Deception" class="card-image">
|
||||
<h2 class="card-title">Active Defense & Cyber Deception</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Active Defense & Cyber Deception</h3>
|
||||
<p>Automated containment mechanisms mislead attackers and gather actionable intelligence.</p>
|
||||
<ul>
|
||||
<li>Honeypots with realistic attack surfaces</li>
|
||||
<li>Automated alerting on lateral movement</li>
|
||||
<li>Integration with incident response workflows</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Enterprise Fuzzing -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="EnterpriseFuzzing.png" alt="Enterprise Fuzzing" class="card-image">
|
||||
<h2 class="card-title">Enterprise Fuzzing</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Enterprise Fuzzing</h3>
|
||||
<p>Automated fuzz testing of applications and APIs to uncover unknown vulnerabilities before they are exploited.</p>
|
||||
<ul>
|
||||
<li>Heuristic and coverage-guided input generation</li>
|
||||
<li>Multi-protocol fuzzing for complex systems</li>
|
||||
<li>Detailed reports with remediation guidance</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Malware Detection & Analysis -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Malware Detection.png" alt="Malware Detection & Analysis" class="card-image">
|
||||
<h2 class="card-title">Malware Detection & Analysis</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Malware Detection & Analysis</h3>
|
||||
<p>Multi-layered detection including static, heuristic, and behavioral analysis to catch known and zero-day threats.</p>
|
||||
<ul>
|
||||
<li>Real-time scanning and sandbox analysis</li>
|
||||
<li>Behavioral monitoring for suspicious activity</li>
|
||||
<li>Actionable reports for remediation and containment</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Additional Incident Response (2) -->
|
||||
<div class="flip-card" onclick="flipCard(this)">
|
||||
<div class="flip-card-inner">
|
||||
<div class="flip-card-front">
|
||||
<img src="Incident Response (2).png" alt="Incident Response Team" class="card-image">
|
||||
<h2 class="card-title">Incident Response Team</h2>
|
||||
<p class="card-subtitle">Click to learn more</p>
|
||||
</div>
|
||||
<div class="flip-card-back">
|
||||
<div class="card-content">
|
||||
<h3>Incident Response Team</h3>
|
||||
<p>Our dedicated team ensures rapid response to security incidents with comprehensive monitoring and automated mitigation systems.</p>
|
||||
<ul>
|
||||
<li>24/7 Security Operations Center</li>
|
||||
<li>Automated threat detection</li>
|
||||
<li>Real-time incident tracking</li>
|
||||
<li>Comprehensive post-incident analysis</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function flipCard(card) {
|
||||
card.classList.toggle('flipped');
|
||||
}
|
||||
|
||||
// Add keyboard navigation
|
||||
document.addEventListener('keydown', function(e) {
|
||||
if (e.key === 'Escape') {
|
||||
// Unflip all cards
|
||||
document.querySelectorAll('.flip-card.flipped').forEach(card => {
|
||||
card.classList.remove('flipped');
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Add touch support for mobile devices
|
||||
document.querySelectorAll('.flip-card').forEach(card => {
|
||||
card.addEventListener('touchstart', function(e) {
|
||||
e.preventDefault();
|
||||
flipCard(this);
|
||||
});
|
||||
});
|
||||
|
||||
// Add hover effect for desktop
|
||||
document.querySelectorAll('.flip-card').forEach(card => {
|
||||
card.addEventListener('mouseenter', function() {
|
||||
this.style.transform = 'translateY(-5px)';
|
||||
});
|
||||
|
||||
card.addEventListener('mouseleave', function() {
|
||||
this.style.transform = 'translateY(0)';
|
||||
});
|
||||
});
|
||||
|
||||
// Add loading animation
|
||||
window.addEventListener('load', function() {
|
||||
document.body.style.opacity = '0';
|
||||
document.body.style.transition = 'opacity 0.5s ease-in-out';
|
||||
|
||||
setTimeout(() => {
|
||||
document.body.style.opacity = '1';
|
||||
}, 100);
|
||||
});
|
||||
|
||||
// Add intersection observer for scroll animations
|
||||
const observerOptions = {
|
||||
threshold: 0.1,
|
||||
rootMargin: '0px 0px -50px 0px'
|
||||
};
|
||||
|
||||
const observer = new IntersectionObserver(function(entries) {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
entry.target.style.animationPlayState = 'running';
|
||||
}
|
||||
});
|
||||
}, observerOptions);
|
||||
|
||||
document.querySelectorAll('.flip-card').forEach(card => {
|
||||
observer.observe(card);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user