File size: 44,585 Bytes
0841e97 | 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 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CyberNexus | Hacker Showcase</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>
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;600&display=swap');
:root {
--primary: #0aff9d;
--secondary: #00e676;
--dark: #0a192f;
--darker: #020c1b;
}
body {
font-family: 'Source Code Pro', monospace;
background-color: var(--darker);
color: white;
overflow-x: hidden;
}
.glow {
text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
}
.terminal {
background-color: rgba(10, 25, 47, 0.8);
border: 1px solid var(--primary);
box-shadow: 0 0 20px rgba(10, 255, 157, 0.3);
}
.terminal-header {
background-color: var(--dark);
border-bottom: 1px solid var(--primary);
}
.terminal-body {
height: 300px;
overflow-y: auto;
}
.command-line {
border-top: 1px solid rgba(10, 255, 157, 0.2);
}
.cursor {
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.matrix-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.1;
}
.hacker-card {
transition: all 0.3s ease;
border: 1px solid rgba(10, 255, 157, 0.2);
}
.hacker-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(10, 255, 157, 0.2);
border-color: var(--primary);
}
.progress-bar {
height: 4px;
background: linear-gradient(90deg, var(--darker), var(--primary), var(--darker));
background-size: 200% 100%;
animation: progress 2s linear infinite;
}
@keyframes progress {
0% { background-position: 0% 50%; }
100% { background-position: 200% 50%; }
}
.scanline {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
transparent 0%,
rgba(10, 255, 157, 0.05) 50%,
transparent 100%
);
background-size: 100% 8px;
animation: scan 8s linear infinite;
pointer-events: none;
z-index: 9999;
}
@keyframes scan {
from { transform: translateY(-100%); }
to { transform: translateY(100%); }
}
.hexagon {
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.typewriter {
overflow: hidden;
border-right: 2px solid var(--primary);
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--primary) }
}
</style>
</head>
<body>
<!-- Matrix Background Animation -->
<canvas id="matrix" class="matrix-bg"></canvas>
<!-- Scanline Effect -->
<div class="scanline"></div>
<!-- Header -->
<header class="bg-dark border-b border-primary border-opacity-20 sticky top-0 z-50">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center">
<div class="hexagon bg-primary w-10 h-10 flex items-center justify-center mr-3">
<i class="fas fa-terminal text-darker text-xl"></i>
</div>
<h1 class="text-2xl font-bold glow">Cyber<span class="text-primary">Nexus</span></h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#about" class="text-gray-300 hover:text-primary transition duration-300">[root@home]</a>
<a href="#skills" class="text-gray-300 hover:text-primary transition duration-300">[skills]</a>
<a href="#projects" class="text-gray-300 hover:text-primary transition duration-300">[projects]</a>
<a href="#contact" class="text-gray-300 hover:text-primary transition duration-300">[contact]</a>
</nav>
<button class="md:hidden text-gray-300 hover:text-primary">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<div class="progress-bar"></div>
</header>
<!-- Hero Section -->
<section class="min-h-screen flex items-center justify-center relative overflow-hidden">
<div class="container mx-auto px-4 py-20 text-center">
<div class="max-w-4xl mx-auto">
<div class="text-sm text-primary mb-4 tracking-widest">WELCOME TO MY DIGITAL REALM</div>
<h1 class="text-5xl md:text-7xl font-bold mb-6">
<span class="text-white">I </span>
<span class="text-primary typewriter">hack systems</span>
</h1>
<p class="text-xl text-gray-400 mb-10 max-w-2xl mx-auto">
Penetration tester | Security researcher | Ethical hacker
</p>
<div class="flex justify-center space-x-4">
<button class="bg-primary hover:bg-secondary text-darker font-bold py-3 px-6 rounded transition duration-300 flex items-center">
<i class="fas fa-terminal mr-2"></i> Connect
</button>
<button class="border border-primary text-primary hover:bg-primary hover:text-darker font-bold py-3 px-6 rounded transition duration-300 flex items-center">
<i class="fas fa-code mr-2"></i> Explore
</button>
</div>
</div>
<div class="terminal max-w-3xl mx-auto mt-20 rounded-lg overflow-hidden">
<div class="terminal-header flex items-center px-4 py-2">
<div class="flex space-x-2 mr-4">
<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-gray-400 text-sm">user@cybernexus:~</div>
</div>
<div class="terminal-body p-4 text-green-400 font-mono text-sm" id="terminal-output">
<div>> Initializing system...</div>
<div>> Loading security protocols...</div>
<div>> Establishing encrypted connection...</div>
<div class="text-primary">> Welcome to CyberNexus v3.1.4</div>
<div>> Type 'help' for available commands</div>
</div>
<div class="command-line p-4 flex items-center">
<span class="text-primary mr-2">$</span>
<input type="text" id="terminal-input" class="bg-transparent border-none outline-none text-green-400 flex-grow font-mono" placeholder="Enter command..." autocomplete="off">
<span class="cursor">█</span>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-dark bg-opacity-70 backdrop-blur-sm">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="text-gray-300">About </span>
<span class="text-primary">Me</span>
</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-gray-400 max-w-2xl mx-auto">
Digital security specialist with a passion for uncovering vulnerabilities and strengthening systems.
</p>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-10 md:mb-0 flex justify-center">
<div class="relative group">
<div class="absolute -inset-1 bg-primary rounded-lg blur opacity-75 group-hover:opacity-100 transition duration-300"></div>
<div class="relative bg-darker rounded-lg overflow-hidden border border-primary border-opacity-30">
<img src="https://images.unsplash.com/photo-1560253096-0bdf7a386c77?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Hacker" class="w-full h-auto opacity-90 hover:opacity-100 transition duration-300">
</div>
</div>
</div>
<div class="md:w-2/3 md:pl-16">
<h3 class="text-2xl font-bold mb-6 text-primary">Who am I?</h3>
<p class="text-gray-300 mb-6">
I'm a cybersecurity expert with over 8 years of experience in penetration testing, vulnerability assessment, and security architecture. My journey began when I was 14, hacking into my school's grading system (don't worry, I reported the vulnerabilities responsibly).
</p>
<p class="text-gray-300 mb-6">
I specialize in red team operations, social engineering, and advanced persistent threat simulation. My mission is to help organizations identify weaknesses before malicious actors can exploit them.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-8">
<div class="hacker-card bg-darker p-6 rounded-lg border border-gray-800 hover:border-primary">
<div class="flex items-center mb-4">
<div class="bg-primary bg-opacity-20 p-2 rounded-full mr-4">
<i class="fas fa-shield-alt text-primary"></i>
</div>
<h4 class="text-lg font-bold">Security First</h4>
</div>
<p class="text-gray-400 text-sm">
Every system has vulnerabilities. My job is to find them before the bad guys do.
</p>
</div>
<div class="hacker-card bg-darker p-6 rounded-lg border border-gray-800 hover:border-primary">
<div class="flex items-center mb-4">
<div class="bg-primary bg-opacity-20 p-2 rounded-full mr-4">
<i class="fas fa-lock text-primary"></i>
</div>
<h4 class="text-lg font-bold">Ethical Approach</h4>
</div>
<p class="text-gray-400 text-sm">
With great power comes great responsibility. I adhere to strict ethical guidelines.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="text-gray-300">My </span>
<span class="text-primary">Skills</span>
</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-gray-400 max-w-2xl mx-auto">
Mastery of tools and techniques to assess and secure digital infrastructure.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Skill Card 1 -->
<div class="hacker-card bg-dark p-8 rounded-lg border border-gray-800 hover:border-primary">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-fingerprint"></i>
</div>
<h3 class="text-xl font-bold mb-4">Penetration Testing</h3>
<p class="text-gray-400 mb-6">
Simulating cyber attacks to identify exploitable vulnerabilities in systems, networks, and applications.
</p>
<div class="space-y-3">
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Kali Linux</span>
<span>95%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Metasploit</span>
<span>90%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Burp Suite</span>
<span>88%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 88%"></div>
</div>
</div>
</div>
</div>
<!-- Skill Card 2 -->
<div class="hacker-card bg-dark p-8 rounded-lg border border-gray-800 hover:border-primary">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-user-secret"></i>
</div>
<h3 class="text-xl font-bold mb-4">Social Engineering</h3>
<p class="text-gray-400 mb-6">
Manipulating individuals to divulge confidential information through psychological tactics.
</p>
<div class="space-y-3">
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Phishing</span>
<span>92%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 92%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Pretexting</span>
<span>85%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Impersonation</span>
<span>88%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 88%"></div>
</div>
</div>
</div>
</div>
<!-- Skill Card 3 -->
<div class="hacker-card bg-dark p-8 rounded-lg border border-gray-800 hover:border-primary">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-code"></i>
</div>
<h3 class="text-xl font-bold mb-4">Secure Coding</h3>
<p class="text-gray-400 mb-6">
Developing applications with security in mind from the ground up to prevent vulnerabilities.
</p>
<div class="space-y-3">
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>Python</span>
<span>90%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>JavaScript</span>
<span>85%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm text-gray-400 mb-1">
<span>C/C++</span>
<span>80%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-2">
<div class="bg-primary h-2 rounded-full" style="width: 80%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-16 grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="bg-dark p-4 rounded-lg border border-gray-800 flex flex-col items-center hover:border-primary transition duration-300">
<img src="https://www.kali.org/images/kali-logo.svg" alt="Kali Linux" class="h-12 mb-2">
<span class="text-gray-400 text-sm">Kali Linux</span>
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 flex flex-col items-center hover:border-primary transition duration-300">
<img src="https://www.metasploit.com/assets/favicon-32x32-3eb5f7b8c7c4b7c1cd7d7a21a9d9e9e5.png" alt="Metasploit" class="h-12 mb-2">
<span class="text-gray-400 text-sm">Metasploit</span>
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 flex flex-col items-center hover:border-primary transition duration-300">
<img src="https://portswigger.net/burp/favicon.ico" alt="Burp Suite" class="h-12 mb-2">
<span class="text-gray-400 text-sm">Burp Suite</span>
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 flex flex-col items-center hover:border-primary transition duration-300">
<img src="https://www.wireshark.org/assets/images/wireshark_icon_64x64.png" alt="Wireshark" class="h-12 mb-2">
<span class="text-gray-400 text-sm">Wireshark</span>
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 flex flex-col items-center hover:border-primary transition duration-300">
<img src="https://nmap.org/images/sitelogo-nmap.svg" alt="Nmap" class="h-12 mb-2">
<span class="text-gray-400 text-sm">Nmap</span>
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 flex flex-col items-center hover:border-primary transition duration-300">
<img src="https://www.python.org/static/favicon.ico" alt="Python" class="h-12 mb-2">
<span class="text-gray-400 text-sm">Python</span>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-dark bg-opacity-70 backdrop-blur-sm">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="text-gray-300">My </span>
<span class="text-primary">Projects</span>
</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-gray-400 max-w-2xl mx-auto">
Selected security research and development projects demonstrating my expertise.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="hacker-card bg-darker rounded-lg overflow-hidden border border-gray-800 hover:border-primary transition duration-300">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Project" class="w-full h-full object-cover transition duration-500 hover:scale-105">
<div class="absolute inset-0 bg-primary bg-opacity-20 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300">
<a href="#" class="bg-primary text-darker px-6 py-2 rounded-full font-bold">View Details</a>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Zero-Day Exploit Research</h3>
<span class="text-xs bg-primary text-darker px-2 py-1 rounded">2023</span>
</div>
<p class="text-gray-400 mb-4">
Discovered and responsibly disclosed 3 zero-day vulnerabilities in popular enterprise software.
</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Exploit Development</span>
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Reverse Engineering</span>
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">CVE Research</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="hacker-card bg-darker rounded-lg overflow-hidden border border-gray-800 hover:border-primary transition duration-300">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1563206767-5b18f218e8df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Project" class="w-full h-full object-cover transition duration-500 hover:scale-105">
<div class="absolute inset-0 bg-primary bg-opacity-20 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300">
<a href="#" class="bg-primary text-darker px-6 py-2 rounded-full font-bold">View Details</a>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Red Team Operation</h3>
<span class="text-xs bg-primary text-darker px-2 py-1 rounded">2022</span>
</div>
<p class="text-gray-400 mb-4">
Led a 3-month red team engagement for Fortune 500 company, uncovering critical infrastructure vulnerabilities.
</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Penetration Testing</span>
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Lateral Movement</span>
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Privilege Escalation</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="hacker-card bg-darker rounded-lg overflow-hidden border border-gray-800 hover:border-primary transition duration-300">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Project" class="w-full h-full object-cover transition duration-500 hover:scale-105">
<div class="absolute inset-0 bg-primary bg-opacity-20 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300">
<a href="#" class="bg-primary text-darker px-6 py-2 rounded-full font-bold">View Details</a>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<h3 class="text-xl font-bold">Secure Framework Development</h3>
<span class="text-xs bg-primary text-darker px-2 py-1 rounded">2021</span>
</div>
<p class="text-gray-400 mb-4">
Developed a secure web application framework with built-in protection against OWASP Top 10 vulnerabilities.
</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Secure Coding</span>
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Web Security</span>
<span class="text-xs bg-gray-800 text-primary px-2 py-1 rounded">Framework Design</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-16">
<button class="border border-primary text-primary hover:bg-primary hover:text-darker font-bold py-3 px-8 rounded transition duration-300 flex items-center mx-auto">
<i class="fas fa-archive mr-2"></i> View All Projects
</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="text-gray-300">Get In </span>
<span class="text-primary">Touch</span>
</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-gray-400 max-w-2xl mx-auto">
For security consulting, research collaboration, or just to chat about cybersecurity.
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="bg-dark rounded-lg border border-gray-800 overflow-hidden">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="p-8 md:p-10">
<h3 class="text-xl font-bold mb-6 text-primary">Send a Secure Message</h3>
<form>
<div class="mb-6">
<label for="name" class="block text-gray-400 text-sm mb-2">Your Name</label>
<input type="text" id="name" class="w-full bg-darker border border-gray-800 rounded px-4 py-3 text-gray-300 focus:outline-none focus:border-primary transition duration-300" placeholder="John Doe">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-400 text-sm mb-2">Your Email</label>
<input type="email" id="email" class="w-full bg-darker border border-gray-800 rounded px-4 py-3 text-gray-300 focus:outline-none focus:border-primary transition duration-300" placeholder="john@example.com">
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-400 text-sm mb-2">Subject</label>
<input type="text" id="subject" class="w-full bg-darker border border-gray-800 rounded px-4 py-3 text-gray-300 focus:outline-none focus:border-primary transition duration-300" placeholder="Security Consultation">
</div>
<div class="mb-8">
<label for="message" class="block text-gray-400 text-sm mb-2">Message</label>
<textarea id="message" rows="4" class="w-full bg-darker border border-gray-800 rounded px-4 py-3 text-gray-300 focus:outline-none focus:border-primary transition duration-300" placeholder="Your message here..."></textarea>
</div>
<button type="submit" class="w-full bg-primary hover:bg-secondary text-darker font-bold py-3 px-6 rounded transition duration-300">
<i class="fas fa-paper-plane mr-2"></i> Send Encrypted Message
</button>
</form>
</div>
<div class="bg-darker p-8 md:p-10 flex flex-col justify-between">
<div>
<h3 class="text-xl font-bold mb-6 text-primary">Contact Information</h3>
<p class="text-gray-400 mb-8">
For sensitive communications, please use PGP encryption. My public key fingerprint is available upon request.
</p>
<div class="space-y-5">
<div class="flex items-start">
<div class="bg-primary bg-opacity-20 p-2 rounded-full mr-4">
<i class="fas fa-envelope text-primary"></i>
</div>
<div>
<h4 class="font-bold text-gray-300 mb-1">Email</h4>
<a href="mailto:secure@cybernexus.io" class="text-gray-400 hover:text-primary transition duration-300">secure@cybernexus.io</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-primary bg-opacity-20 p-2 rounded-full mr-4">
<i class="fas fa-key text-primary"></i>
</div>
<div>
<h4 class="font-bold text-gray-300 mb-1">PGP Key</h4>
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">0x1A2B3C4D5E6F7G8H</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-primary bg-opacity-20 p-2 rounded-full mr-4">
<i class="fab fa-github text-primary"></i>
</div>
<div>
<h4 class="font-bold text-gray-300 mb-1">GitHub</h4>
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">github.com/cybernexus</a>
</div>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="font-bold text-gray-300 mb-4">Follow Me</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-primary hover:bg-primary hover:bg-opacity-20 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-primary hover:bg-primary hover:bg-opacity-20 transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-primary hover:bg-primary hover:bg-opacity-20 transition duration-300">
<i class="fab fa-reddit-alien"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-primary hover:bg-primary hover:bg-opacity-20 transition duration-300">
<i class="fab fa-hacker-news"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-darker py-10 border-t border-gray-800">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<div class="hexagon bg-primary w-8 h-8 flex items-center justify-center mr-3">
<i class="fas fa-terminal text-darker"></i>
</div>
<h1 class="text-xl font-bold">Cyber<span class="text-primary">Nexus</span></h1>
</div>
<div class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 CyberNexus. All rights reserved.
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">
<i class="fas fa-lock"></i> Privacy
</a>
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">
<i class="fas fa-shield-alt"></i> Security
</a>
<a href="#" class="text-gray-400 hover:text-primary transition duration-300">
<i class="fas fa-code"></i> Source
</a>
</div>
</div>
</div>
</footer>
<!-- Matrix Animation Script -->
<script>
// Matrix background animation
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
const nums = '0123456789';
const symbols = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~';
const alphabet = katakana + latin + nums + symbols;
const fontSize = 16;
const columns = canvas.width / fontSize;
const rainDrops = [];
for (let x = 0; x < columns; x++) {
rainDrops[x] = 1;
}
const draw = () => {
ctx.fillStyle = 'rgba(2, 12, 27, 0.05)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#0aff9d';
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < rainDrops.length; i++) {
const text = alphabet.charAt(Math.floor(Math.random() * alphabet.length));
ctx.fillText(text, i * fontSize, rainDrops[i] * fontSize);
if (rainDrops[i] * fontSize > canvas.height && Math.random() > 0.975) {
rainDrops[i] = 0;
}
rainDrops[i]++;
}
};
setInterval(draw, 30);
// Terminal functionality
const terminalInput = document.getElementById('terminal-input');
const terminalOutput = document.getElementById('terminal-output');
const commands = {
help: 'Available commands: help, about, skills, projects, contact, clear',
about: 'I\'m a cybersecurity expert with over 8 years of experience in penetration testing and security research.',
skills: 'My skills include penetration testing, social engineering, secure coding, and vulnerability research.',
projects: 'I\'ve worked on various security projects including zero-day research and red team operations.',
contact: 'You can reach me at secure@cybernexus.io (PGP encrypted preferred).',
clear: function() { terminalOutput.innerHTML = ''; return ''; },
sudo: 'Nice try. ;)',
hack: 'Initiating hack sequence... Just kidding! Ethical hackers don\'t hack without permission.',
ls: 'about.txt projects/ skills.md contact.html',
whoami: 'You are a visitor to my digital domain. Welcome!',
date: new Date().toString(),
echo: function(args) { return args.join(' '); }
};
terminalInput.addEventListener('keydown', (e) => {
if (e.key === 'Enter') {
const input = terminalInput.value.trim();
terminalInput.value = '';
if (input) {
// Add user input to terminal
const userInput = document.createElement('div');
userInput.textContent = `$ ${input}`;
userInput.className = 'text-gray-400';
terminalOutput.appendChild(userInput);
// Process command
const parts = input.split(' ');
const cmd = parts[0].toLowerCase();
const args = parts.slice(1);
let output = '';
if (commands[cmd]) {
if (typeof commands[cmd] === 'function') {
output = commands[cmd](args);
} else {
output = commands[cmd];
}
} else {
output = `Command not found: ${cmd}. Type 'help' for available commands.`;
}
if (output) {
const response = document.createElement('div');
response.textContent = output;
response.className = 'text-green-400';
terminalOutput.appendChild(response);
}
// Scroll to bottom
terminalOutput.scrollTop = terminalOutput.scrollHeight;
}
}
});
// Typewriter effect for terminal welcome
setTimeout(() => {
const welcome = document.createElement('div');
welcome.className = 'text-primary';
welcome.textContent = '> Type \'help\' for available commands';
terminalOutput.appendChild(welcome);
terminalOutput.scrollTop = terminalOutput.scrollHeight;
}, 3000);
// Responsive adjustments
window.addEventListener('resize', () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</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=arcoon/xg-hack" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |