Spaces:
Running
Running
File size: 33,362 Bytes
97bb954 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>echolotintel.eu | Offensive Security Research</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
cyber: {
dark: '#0a0a12',
accent: '#00ff9d',
secondary: '#ff006e',
tertiary: '#00f0ff',
panel: '#1a1a2e'
}
},
fontFamily: {
'cyber': ['"Orbitron"', 'sans-serif'],
'cyber-alt': ['"Share Tech Mono"', 'monospace']
},
boxShadow: {
'glow': '0 0 10px rgba(0, 255, 157, 0.5)',
'glow-pink': '0 0 10px rgba(255, 0, 110, 0.5)',
'glow-blue': '0 0 10px rgba(0, 240, 255, 0.5)'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');
body {
background-color: #0a0a12;
background-image:
radial-gradient(circle at 10% 20%, rgba(0, 255, 157, 0.05) 1px, transparent 1px),
radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.05) 1px, transparent 1px);
background-size: 100px 100px;
overflow-x: hidden;
}
.cyber-grid {
position: relative;
overflow: hidden;
}
.cyber-grid::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px),
linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px);
background-size: 20px 20px;
z-index: -1;
}
.glitch {
position: relative;
animation: glitch 5s infinite;
}
.glitch::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
clip: rect(0, 0, 0, 0);
animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
clip: rect(0, 0, 0, 0);
animation: glitch-anim2 4s infinite linear alternate-reverse;
animation-delay: 1s;
}
@keyframes glitch {
0% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
100% { transform: translate(0); }
}
@keyframes glitch-anim {
0% { clip: rect(24px, 240px, 112px, 0); transform: skew(0.3deg); }
10% { clip: rect(71px, 240px, 110px, 0); transform: skew(-0.1deg); }
20% { clip: rect(69px, 240px, 109px, 0); transform: skew(-0.1deg); }
30% { clip: rect(59px, 240px, 100px, 0); transform: skew(0.1deg); }
40% { clip: rect(82px, 240px, 100px, 0); transform: skew(0.1deg); }
50% { clip: rect(75px, 240px, 110px, 0); transform: skew(0.1deg); }
60% { clip: rect(96px, 240px, 100px, 0); transform: skew(0.3deg); }
70% { clip: rect(86px, 240px, 100px, 0); transform: skew(0.3deg); }
80% { clip: rect(42px, 240px, 100px, 0); transform: skew(0.1deg); }
90% { clip: rect(71px, 240px, 100px, 0); transform: skew(0.1deg); }
100% { clip: rect(24px, 240px, 112px, 0); transform: skew(0.3deg); }
}
@keyframes glitch-anim2 {
0% { clip: rect(65px, 240px, 100px, 0); transform: skew(0.3deg); }
10% { clip: rect(50px, 240px, 100px, 0); transform: skew(-0.1deg); }
20% { clip: rect(50px, 240px, 100px, 0); transform: skew(-0.1deg); }
30% { clip: rect(74px, 240px, 100px, 0); transform: skew(0.1deg); }
40% { clip: rect(65px, 240px, 100px, 0); transform: skew(0.1deg); }
50% { clip: rect(50px, 240px, 100px, 0); transform: skew(0.1deg); }
60% { clip: rect(65px, 240px, 100px, 0); transform: skew(0.3deg); }
70% { clip: rect(82px, 240px, 100px, 0); transform: skew(0.3deg); }
80% { clip: rect(42px, 240px, 100px, 0); transform: skew(0.1deg); }
90% { clip: rect(50px, 240px, 100px, 0); transform: skew(0.1deg); }
100% { clip: rect(65px, 240px, 100px, 0); transform: skew(0.3deg); }
}
.scan-line {
position: absolute;
width: 100%;
height: 10px;
background: rgba(0, 255, 157, 0.1);
animation: scan 8s linear infinite;
z-index: 10;
}
@keyframes scan {
0% { top: 0; }
50% { top: 100%; }
100% { top: 100%; }
}
.terminal {
background: rgba(10, 10, 18, 0.8);
border: 1px solid #00ff9d;
box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
font-family: 'Share Tech Mono', monospace;
}
.terminal-header {
background: rgba(0, 255, 157, 0.1);
border-bottom: 1px solid #00ff9d;
}
.terminal-content {
height: 200px;
overflow-y: auto;
}
.terminal-line {
color: #00ff9d;
font-size: 14px;
line-height: 1.4;
}
.terminal-cursor {
display: inline-block;
width: 8px;
height: 16px;
background: #00ff9d;
animation: blink 1s infinite;
margin-left: 5px;
vertical-align: middle;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.4); }
70% { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}
.project-card {
background: rgba(26, 26, 46, 0.7);
backdrop-filter: blur(5px);
border: 1px solid rgba(0, 255, 157, 0.2);
transition: all 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
border-color: rgba(0, 255, 157, 0.5);
box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}
.cyber-button {
background: linear-gradient(90deg, #00ff9d, #00f0ff);
color: #0a0a12;
font-weight: bold;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}
.cyber-button:hover {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(0, 255, 157, 0.8);
}
.cyber-button:active {
transform: scale(0.95);
}
.cyber-link {
color: #00f0ff;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
}
.cyber-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: #00f0ff;
transition: width 0.3s ease;
}
.cyber-link:hover {
color: #00ff9d;
}
.cyber-link:hover::after {
width: 100%;
}
.cyber-border {
border: 1px solid rgba(0, 255, 157, 0.3);
}
.cyber-border:hover {
border-color: rgba(0, 255, 157, 0.8);
box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}
.cyber-border-thick {
border: 2px solid rgba(0, 255, 157, 0.5);
}
.cyber-border-thick:hover {
border-color: rgba(0, 255, 157, 1);
box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}
</style>
</head>
<body class="text-white font-cyber">
<!-- Scan line effect -->
<div class="scan-line"></div>
<!-- Header -->
<header class="fixed w-full z-50 bg-cyber-dark bg-opacity-90 backdrop-blur-sm">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="text-cyber-accent text-2xl font-bold glitch" data-text="echolotintel.eu">
echolotintel.eu
</div>
<div class="ml-4 px-2 py-1 text-xs bg-cyber-secondary text-cyber-dark font-bold rounded">OFFENSIVE SECURITY RESEARCH</div>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#home" class="cyber-link">Home</a>
<a href="#research" class="cyber-link">Research</a>
<a href="#projects" class="cyber-link">Projects</a>
<a href="#tools" class="cyber-link">Tools</a>
<a href="#contact" class="cyber-link">Contact</a>
</nav>
<button class="md:hidden text-cyber-accent">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center pt-16 pb-20 px-4 cyber-grid">
<div class="container mx-auto text-center">
<div class="mb-6">
<h1 class="text-5xl md:text-7xl font-bold mb-4 text-transparent bg-clip-text bg-gradient-to-r from-cyber-accent to-cyber-tertiary glitch" data-text="OFFENSIVE SECURITY RESEARCH">
OFFENSIVE SECURITY RESEARCH
</h1>
<div class="w-32 h-1 bg-cyber-accent mx-auto mb-8"></div>
<p class="text-xl md:text-2xl mb-12 max-w-3xl mx-auto text-cyber-tertiary">
Pioneering the future of cybersecurity through innovative offensive research and cutting-edge exploit development
</p>
</div>
<div class="flex flex-col md:flex-row justify-center items-center gap-8 mb-16">
<div class="terminal w-full max-w-2xl mx-auto rounded-lg overflow-hidden">
<div class="terminal-header py-2 px-4 flex items-center">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="text-xs ml-2 text-cyber-accent">terminal@echolotintel:~</div>
</div>
<div class="terminal-content p-4">
<div class="terminal-line">> Initializing echolotintel security research protocol...</div>
<div class="terminal-line">> Loading offensive security modules...</div>
<div class="terminal-line">> Establishing secure connection to research network...</div>
<div class="terminal-line">> Accessing classified research database...</div>
<div class="terminal-line">> Retrieving latest exploit development data...</div>
<div class="terminal-line">> Analyzing threat landscape patterns...</div>
<div class="terminal-line">> Generating real-time security intelligence...</div>
<div class="terminal-line">> <span class="text-cyber-secondary">echolotintel.eu research portal ready</span></div>
<div class="terminal-line">> <span class="text-cyber-tertiary">Type 'help' for available commands</span></div>
<div class="terminal-line flex">
<span>terminal@echolotintel:~$ </span>
<div class="terminal-cursor"></div>
</div>
</div>
</div>
</div>
<div class="mt-12">
<a href="#research" class="cyber-button px-8 py-4 rounded font-bold inline-block">
EXPLORE RESEARCH
</a>
</div>
</div>
</section>
<!-- Research Section -->
<section id="research" class="py-20 px-4">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">RESEARCH DOMAINS</h2>
<div class="w-24 h-1 bg-cyber-accent mx-auto mb-8"></div>
<p class="text-xl text-cyber-tertiary max-w-3xl mx-auto">
Our research spans the cutting edge of offensive security, focusing on emerging threats and innovative attack vectors
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="project-card p-8 rounded-lg cyber-border">
<div class="text-cyber-accent text-5xl mb-6">
<i class="fas fa-shield-hack"></i>
</div>
<h3 class="text-2xl font-bold mb-4">EXPLOIT DEVELOPMENT</h3>
<p class="text-cyber-tertiary mb-4">
Creating novel attack vectors and zero-day exploits to test system resilience and identify vulnerabilities before adversaries do.
</p>
<div class="flex flex-wrap gap-2 mt-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Zero-Day</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">RCE</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Memory Corruption</span>
</div>
</div>
<div class="project-card p-8 rounded-lg cyber-border">
<div class="text-cyber-secondary text-5xl mb-6">
<i class="fas fa-network-wired"></i>
</div>
<h3 class="text-2xl font-bold mb-4">NETWORK PENETRATION</h3>
<p class="text-cyber-tertiary mb-4">
Advanced network reconnaissance and penetration testing methodologies to identify and exploit vulnerabilities in complex infrastructures.
</p>
<div class="flex flex-wrap gap-2 mt-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Lateral Movement</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Pivoting</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Evasion</span>
</div>
</div>
<div class="project-card p-8 rounded-lg cyber-border">
<div class="text-cyber-tertiary text-5xl mb-6">
<i class="fas fa-user-secret"></i>
</div>
<h3 class="text-2xl font-bold mb-4">SOCIAL ENGINEERING</h3>
<p class="text-cyber-tertiary mb-4">
Psychological manipulation techniques and human-centric attack vectors to test organizational security awareness and resilience.
</p>
<div class="flex flex-wrap gap-2 mt-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Phishing</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Pretexting</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Baiting</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 px-4">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">FEATURED PROJECTS</h2>
<div class="w-24 h-1 bg-cyber-accent mx-auto mb-8"></div>
<p class="text-xl text-cyber-tertiary max-w-3xl mx-auto">
Explore our latest research initiatives and cutting-edge security tools developed for offensive security professionals
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-10">
<div class="project-card p-8 rounded-lg cyber-border-thick">
<div class="flex justify-between items-start mb-4">
<h3 class="text-2xl font-bold">AUTOMATED EXPLOIT FRAMEWORK</h3>
<div class="text-cyber-accent">
<i class="fas fa-robot text-2xl"></i>
</div>
</div>
<p class="text-cyber-tertiary mb-6">
A modular framework for automated vulnerability discovery and exploitation. Integrates with existing penetration testing tools to streamline the exploitation phase.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Python</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Metasploit</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Automation</span>
</div>
<div class="flex justify-between items-center">
<div class="text-cyber-accent">
<i class="fas fa-lock"></i> Classified
</div>
<a href="#" class="cyber-link">View Details</a>
</div>
</div>
<div class="project-card p-8 rounded-lg cyber-border-thick">
<div class="flex justify-between items-start mb-4">
<h3 class="text-2xl font-bold">STEALTHY C2 IMPLANT</h3>
<div class="text-cyber-secondary">
<i class="fas fa-skull-crossbones text-2xl"></i>
</div>
</div>
<p class="text-cyber-tertiary mb-6">
Advanced Command and Control infrastructure designed to evade modern endpoint detection systems using novel communication protocols.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">C2</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Evasion</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Steganography</span>
</div>
<div class="flex justify-between items-center">
<div class="text-cyber-accent">
<i class="fas fa-lock"></i> Classified
</div>
<a href="#" class="cyber-link">View Details</a>
</div>
</div>
<div class="project-card p-8 rounded-lg cyber-border-thick">
<div class="flex justify-between items-start mb-4">
<h3 class="text-2xl font-bold">AI THREAT MODELING</h3>
<div class="text-cyber-tertiary">
<i class="fas fa-brain text-2xl"></i>
</div>
</div>
<p class="text-cyber-tertiary mb-6">
Machine learning models to predict and simulate advanced attack scenarios. Integrates threat intelligence to model adversary behavior.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">AI/ML</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Threat Modeling</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Simulation</span>
</div>
<div class="flex justify-between items-center">
<div class="text-cyber-accent">
<i class="fas fa-lock"></i> Classified
</div>
<a href="#" class="cyber-link">View Details</a>
</div>
</div>
<div class="project-card p-8 rounded-lg cyber-border-thick">
<div class="flex justify-between items-start mb-4">
<h3 class="text-2xl font-bold">MOBILE EXPLOITATION SUITE</h3>
<div class="text-cyber-secondary">
<i class="fas fa-mobile-alt text-2xl"></i>
</div>
</div>
<p class="text-cyber-tertiary mb-6">
Comprehensive toolkit for mobile application security testing. Includes dynamic analysis tools and exploit generation for Android and iOS platforms.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Mobile</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">Android</span>
<span class="px-3 py-1 bg-cyber-panel text-xs rounded">iOS</span>
</div>
<div class="flex justify-between items-center">
<div class="text-cyber-accent">
<i class="fas fa-lock"></i> Classified
</div>
<a href="#" class="cyber-link">View Details</a>
</div>
</div>
</div>
</div>
</section>
<!-- Tools Section -->
<section id="tools" class="py-20 px-4">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">RESEARCH TOOLS</h2>
<div class="w-24 h-1 bg-cyber-accent mx-auto mb-8"></div>
<p class="text-xl text-cyber-tertiary max-w-3xl mx-auto">
Cutting-edge tools developed by our research team for offensive security professionals
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-6">
<div class="text-center">
<div class="text-cyber-accent text-4xl mb-4">
<i class="fas fa-terminal"></i>
</div>
<h3 class="text-xl font-bold mb-2">PenTest Framework</h3>
<p class="text-cyber-tertiary">Custom exploitation framework with advanced evasion techniques</p>
</div>
<div class="text-center">
<div class="text-cyber-secondary text-4xl mb-4">
<i class="fas fa-bug"></i>
</div>
<h3 class="text-xl font-bold mb-2">Vulnerability Scanner</h3>
<p class="text-cyber-tertiary">Automated discovery tool for zero-day vulnerabilities</p>
</div>
<div class="text-center">
<div class="text-cyber-tertiary text-4xl mb-4">
<i class="fas fa-network-wired"></i>
</div>
<h3 class="text-xl font-bold mb-2">Network Mapper</h3>
<p class="text-cyber-tertiary">Advanced reconnaissance and mapping tool</p>
</div>
<div class="text-center">
<div class="text-cyber-accent text-4xl mb-4">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="text-xl font-bold mb-2">Defense Evasion</h3>
<p class="text-cyber-tertiary">Techniques and tools for bypassing modern security controls</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-4">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">CONTACT RESEARCH TEAM</h2>
<div class="w-24 h-1 bg-cyber-accent mx-auto mb-8"></div>
<p class="text-xl text-cyber-tertiary max-w-3xl mx-auto">
Interested in collaborating or learning more about our research? Get in touch with our team.
</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 gap-10">
<div>
<h3 class="text-2xl font-bold mb-6">RESEARCH COLLABORATION</h3>
<p class="text-cyber-tertiary mb-8">
We're always looking for talented researchers and partners to collaborate on cutting-edge security projects. Reach out to discuss potential opportunities.
</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="text-cyber-accent text-2xl mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<div class="text-cyber-tertiary text-sm">EMAIL</div>
<div class="text-cyber-accent">research@echolotintel.eu</div>
</div>
</div>
<div class="flex items-center">
<div class="text-cyber-accent text-2xl mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<div class="text-cyber-tertiary text-sm">LOCATION</div>
<div class="text-cyber-accent">European Union</div>
</div>
</div>
<div class="flex items-center">
<div class="text-cyber-accent text-2xl mr-4">
<i class="fas fa-lock"></i>
</div>
<div>
<div class="text-cyber-tertiary text-sm">SECURE CHANNEL</div>
<div class="text-cyber-accent">PGP Key: 0x123456789ABCDEF</div>
</div>
</div>
</div>
</div>
<div class="p-6 bg-cyber-panel rounded-lg cyber-border">
<h3 class="text-2xl font-bold mb-6">SEND MESSAGE</h3>
<form>
<div class="mb-4">
<input type="text" placeholder="YOUR NAME" class="w-full bg-cyber-dark border border-cyber-accent p-3 text-cyber-accent focus:outline-none focus:border-cyber-tertiary">
</div>
<div class="mb-4">
<input type="email" placeholder="YOUR EMAIL" class="w-full bg-cyber-dark border border-cyber-accent p-3 text-cyber-accent focus:outline-none focus:border-cyber-tertiary">
</div>
<div class="mb-4">
<input type="text" placeholder="SUBJECT" class="w-full bg-cyber-dark border border-cyber-accent p-3 text-cyber-accent focus:outline-none focus:border-cyber-tertiary">
</div>
<div class="mb-6">
<textarea placeholder="YOUR MESSAGE" rows="4" class="w-full bg-cyber-dark border border-cyber-accent p-3 text-cyber-accent focus:outline-none focus:border-cyber-tertiary"></textarea>
</div>
<button type="submit" class="cyber-button w-full py-3 rounded font-bold">
SEND MESSAGE
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-10 px-4 border-t border-cyber-accent">
<div class="container mx-auto text-center">
<div class="text-2xl font-bold mb-4 glitch" data-text="echolotintel.eu">
echolotintel.eu
</div>
<div class="text-cyber-tertiary mb-6">
Pioneering offensive security research for the future of cybersecurity
</div>
<div class="flex justify-center space-x-6 mb-8">
<a href="#" class="text-cyber-accent hover:text-cyber-tertiary">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-cyber-accent hover:text-cyber-tertiary">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-cyber-accent hover:text-cyber-tertiary">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
<div class="text-cyber-tertiary text-sm">
© 2023 echolotintel.eu. All rights reserved. | Offensive Security Research Division
</div>
</div>
</footer>
<script>
// Terminal animation
document.addEventListener('DOMContentLoaded', function() {
const terminalLines = document.querySelectorAll('.terminal-line');
let index = 0;
function animateTerminal() {
if (index < terminalLines.length) {
terminalLines[index].style.opacity = '1';
index++;
setTimeout(animateTerminal, 300);
}
}
// Start animation after a delay
setTimeout(animateTerminal, 1000);
// Glitch effect on hover
const glitchElements = document.querySelectorAll('.glitch');
glitchElements.forEach(el => {
el.addEventListener('mouseenter', function() {
this.classList.add('glitch');
});
el.addEventListener('mouseleave', function() {
this.classList.remove('glitch');
});
});
});
</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=schniggie/echolotintel-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |