Spaces:
Running
Running
File size: 23,452 Bytes
6c07db8 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>xcoder2020 | VoxArt Black Hat</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=Press+Start+2P&display=swap');
body {
font-family: 'Press Start 2P', cursive;
background-color: #0a0a0a;
color: #00ff41;
image-rendering: pixelated;
overflow-x: hidden;
}
.voxel {
image-rendering: pixelated;
border-style: solid;
border-width: 4px;
border-image: repeating-linear-gradient(45deg, #00ff41, #00ff41 2px, transparent 2px, transparent 4px) 4;
}
.pixel-border {
border: 4px solid #00ff41;
box-shadow: 8px 8px 0 rgba(0, 255, 65, 0.3);
}
.pixel-text {
text-shadow: 4px 4px 0 rgba(0, 255, 65, 0.5);
}
.pixel-button {
position: relative;
border: 4px solid #00ff41;
box-shadow: 4px 4px 0 rgba(0, 255, 65, 0.5);
transition: all 0.1s;
}
.pixel-button:active {
transform: translate(4px, 4px);
box-shadow: none;
}
.scanlines {
position: relative;
}
.scanlines::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
to bottom,
transparent 0%,
rgba(0, 255, 65, 0.05) 50%,
transparent 100%
);
background-size: 100% 4px;
pointer-events: none;
}
.typewriter {
overflow: hidden;
border-right: .3em solid #00ff41;
white-space: nowrap;
animation:
typing 3.5s steps(20, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #00ff41; }
}
.pixel-grid {
background-image:
linear-gradient(#00ff41 1px, transparent 1px),
linear-gradient(90deg, #00ff41 1px, transparent 1px);
background-size: 20px 20px;
background-position: -1px -1px;
}
.voxel-icon {
filter:
drop-shadow(4px 4px 0 rgba(0, 255, 65, 0.7))
drop-shadow(-4px -4px 0 rgba(0, 255, 65, 0.3));
}
</style>
</head>
<body class="scanlines">
<!-- Pixel Grid Background -->
<div class="fixed inset-0 opacity-10 pixel-grid -z-10"></div>
<!-- Main container -->
<div class="min-h-screen flex flex-col">
<!-- Header -->
<header class="py-6 px-4 sm:px-6 lg:px-8 border-b-4 border-green-500">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="w-12 h-12 bg-black voxel flex items-center justify-center">
<i class="fas fa-terminal text-green-500 text-xl"></i>
</div>
<h1 class="text-2xl pixel-text">XCODER2020</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#services" class="hover:text-green-400 transition duration-300">SERVICES</a>
<a href="#portfolio" class="hover:text-green-400 transition duration-300">OPS</a>
<a href="#contact" class="hover:text-green-400 transition duration-300">CONTACT</a>
<a href="#about" class="hover:text-green-400 transition duration-300">ABOUT</a>
</nav>
<button class="md:hidden text-green-500">
<div class="w-10 h-10 bg-black voxel flex items-center justify-center">
<i class="fas fa-bars text-xl"></i>
</div>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="flex-grow flex items-center py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto text-center">
<div class="mb-8">
<div class="inline-block px-4 py-2 bg-black border-4 border-green-500 mb-6">
<span class="text-green-400 text-sm">BLACK HAT OPS</span>
</div>
<h1 class="text-4xl md:text-6xl mb-6 pixel-text typewriter">SYSTEM BREACH</h1>
</div>
<p class="text-lg md:text-xl mb-10 max-w-2xl mx-auto text-green-300">
PENETRATION TESTING • ZERO-DAY EXPLOITS • CYBER WARFARE • MALWARE DEV
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="pixel-button px-8 py-3 bg-black font-bold text-green-300">
<i class="fas fa-lock-open mr-2"></i> REQUEST ACCESS
</button>
<button class="pixel-button px-8 py-3 bg-black font-bold text-green-300">
<i class="fas fa-eye mr-2"></i> VIEW OPS
</button>
</div>
</div>
</section>
<!-- Terminal Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto bg-black border-4 border-green-500 p-6">
<div class="flex items-center mb-4">
<div class="flex space-x-2 mr-4">
<div class="w-3 h-3 rounded-sm bg-red-500"></div>
<div class="w-3 h-3 rounded-sm bg-yellow-500"></div>
<div class="w-3 h-3 rounded-sm bg-green-500"></div>
</div>
<div class="text-sm text-gray-400">XCODER2020@ROOT:~</div>
</div>
<div class="mb-2">
<span class="text-green-500">XCODER2020@ROOT:~$</span> <span class="text-white">WHOAMI</span>
</div>
<div class="mb-6 text-green-300">
ELITE CYBERSECURITY SPECIALIST<br>
10+ YEARS BLACK HAT OPERATIONS<br>
ADVANCED EXPLOIT DEVELOPMENT
</div>
<div class="mb-2">
<span class="text-green-500">XCODER2020@ROOT:~$</span> <span class="text-white">SKILLS --LIST</span>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-green-300 mb-6">
<div><i class="fas fa-check-square text-green-500 mr-2"></i> EXPLOIT DEV</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> MALWARE</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> REVERSE ENG</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> SOCIAL ENG</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> NET PENTEST</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> WEB SEC</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> CRYPTO</div>
<div><i class="fas fa-check-square text-green-500 mr-2"></i> ZERO-DAY</div>
</div>
<div class="mb-2">
<span class="text-green-500">XCODER2020@ROOT:~$</span> <span class="text-white">CONTACT --SECURE</span>
</div>
<div class="text-green-300">
PGP: <span class="text-white">0xDEADBEEFCAFEBABE</span><br>
TOR: <span class="text-white">XCODER2020.ONION</span><br>
SIGNAL: <span class="text-white">+1 555-0100</span>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl mb-12 text-center pixel-text">
<i class="fas fa-user-secret mr-3"></i> SPECIALIZED SERVICES
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-black border-4 border-green-500 p-6 hover:border-green-400 transition duration-300">
<div class="text-4xl text-green-500 mb-4 voxel-icon">
<i class="fas fa-bug"></i>
</div>
<h3 class="text-xl mb-3">EXPLOIT DEV</h3>
<p class="text-green-300 text-sm">
CUSTOM ZERO-DAY EXPLOITS FOR VARIOUS PLATFORMS AND APPLICATIONS.
</p>
</div>
<div class="bg-black border-4 border-green-500 p-6 hover:border-green-400 transition duration-300">
<div class="text-4xl text-green-500 mb-4 voxel-icon">
<i class="fas fa-shield-virus"></i>
</div>
<h3 class="text-xl mb-3">ADVANCED PENTEST</h3>
<p class="text-green-300 text-sm">
COMPREHENSIVE SECURITY ASSESSMENTS TO IDENTIFY DEEP VULNERABILITIES.
</p>
</div>
<div class="bg-black border-4 border-green-500 p-6 hover:border-green-400 transition duration-300">
<div class="text-4xl text-green-500 mb-4 voxel-icon">
<i class="fas fa-lock"></i>
</div>
<h3 class="text-xl mb-3">SECURE COMMS</h3>
<p class="text-green-300 text-sm">
END-TO-END ENCRYPTED COMMUNICATION SOLUTIONS.
</p>
</div>
<div class="bg-black border-4 border-green-500 p-6 hover:border-green-400 transition duration-300">
<div class="text-4xl text-green-500 mb-4 voxel-icon">
<i class="fas fa-robot"></i>
</div>
<h3 class="text-xl mb-3">MALWARE DEV</h3>
<p class="text-green-300 text-sm">
CUSTOM MALWARE WITH ADVANCED EVASION TECHNIQUES.
</p>
</div>
<div class="bg-black border-4 border-green-500 p-6 hover:border-green-400 transition duration-300">
<div class="text-4xl text-green-500 mb-4 voxel-icon">
<i class="fas fa-network-wired"></i>
</div>
<h3 class="text-xl mb-3">NETWORK OPS</h3>
<p class="text-green-300 text-sm">
COVERT NETWORK INFILTRATION AND DATA EXFILTRATION.
</p>
</div>
<div class="bg-black border-4 border-green-500 p-6 hover:border-green-400 transition duration-300">
<div class="text-4xl text-green-500 mb-4 voxel-icon">
<i class="fas fa-user-ninja"></i>
</div>
<h3 class="text-xl mb-3">RED TEAM OPS</h3>
<p class="text-green-300 text-sm">
FULL-SCALE SIMULATED ATTACKS TO TEST DEFENSES.
</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-16 px-4 sm:px-6 lg:px-8 bg-black">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl mb-12 text-center pixel-text">
<i class="fas fa-folder-open mr-3"></i> NOTABLE OPERATIONS
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="border-4 border-green-500 p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl">OP PHANTOM</h3>
<span class="text-xs bg-red-900 px-2 py-1">TOP SECRET</span>
</div>
<p class="text-green-300 mb-4 text-sm">
DEVELOPED CUSTOM FIRMWARE EXPLOIT FOR ENTERPRISE NETWORKING EQUIPMENT.
</p>
<div class="text-xs text-gray-500">
<i class="fas fa-calendar mr-1"></i> Q3 2019 | <i class="fas fa-map-marker-alt mr-1 ml-2"></i> GLOBAL
</div>
</div>
<div class="border-4 border-green-500 p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl">PROJECT CERBERUS</h3>
<span class="text-xs bg-purple-900 px-2 py-1">CLASSIFIED</span>
</div>
<p class="text-green-300 mb-4 text-sm">
CREATED POLYMORPHIC MALWARE FRAMEWORK THAT EVADED 98% OF AV SOLUTIONS.
</p>
<div class="text-xs text-gray-500">
<i class="fas fa-calendar mr-1"></i> Q1 2020 | <i class="fas fa-map-marker-alt mr-1 ml-2"></i> EASTERN EUROPE
</div>
</div>
<div class="border-4 border-green-500 p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl">OP DARKNET</h3>
<span class="text-xs bg-yellow-900 px-2 py-1">SECRET</span>
</div>
<p class="text-green-300 mb-4 text-sm">
PENETRATION OF UNDERGROUND FORUMS FOR INTELLIGENCE GATHERING.
</p>
<div class="text-xs text-gray-500">
<i class="fas fa-calendar mr-1"></i> Q4 2018 | <i class="fas fa-map-marker-alt mr-1 ml-2"></i> DARK WEB
</div>
</div>
<div class="border-4 border-green-500 p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl">PROJECT NIGHTMARE</h3>
<span class="text-xs bg-blue-900 px-2 py-1">CONFIDENTIAL</span>
</div>
<p class="text-green-300 mb-4 text-sm">
REVERSE ENGINEERED PROPRIETARY ENCRYPTION PROTOCOL.
</p>
<div class="text-xs text-gray-500">
<i class="fas fa-calendar mr-1"></i> Q2 2021 | <i class="fas fa-map-marker-alt mr-1 ml-2"></i> MIDDLE EAST
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl mb-12 text-center pixel-text">
<i class="fas fa-paper-plane mr-3"></i> SECURE CONTACT
</h2>
<div class="bg-black border-4 border-green-500 p-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl mb-4">ENCRYPTED COM</h3>
<ul class="space-y-4 text-green-300 text-sm">
<li>
<div class="flex items-center">
<i class="fas fa-key mr-3 text-green-500"></i>
<div>
<div class="font-bold">PGP KEY</div>
<div>0xDEADBEEFCAFEBABE</div>
</div>
</div>
</li>
<li>
<div class="flex items-center">
<i class="fas fa-tor-onion mr-3 text-green-500"></i>
<div>
<div class="font-bold">TOR</div>
<div>XCODER2020.ONION</div>
</div>
</div>
</li>
<li>
<div class="flex items-center">
<i class="fas fa-comment mr-3 text-green-500"></i>
<div>
<div class="font-bold">SIGNAL</div>
<div>+1 555-0100</div>
</div>
</div>
</li>
<li>
<div class="flex items-center">
<i class="fas fa-envelope mr-3 text-green-500"></i>
<div>
<div class="font-bold">PROTONMAIL</div>
<div>XCODER2020@PROTONMAIL.COM</div>
</div>
</div>
</li>
</ul>
</div>
<div>
<h3 class="text-xl mb-4">SEND SECURE MSG</h3>
<form class="space-y-4">
<div>
<label class="block text-green-300 mb-1 text-sm">YOUR PGP KEY ID</label>
<input type="text" class="w-full bg-black border-2 border-green-500 px-4 py-2 text-white">
</div>
<div>
<label class="block text-green-300 mb-1 text-sm">MESSAGE</label>
<textarea class="w-full bg-black border-2 border-green-500 px-4 py-2 text-white h-32"></textarea>
</div>
<button type="submit" class="pixel-button w-full py-3 bg-black font-bold text-green-300">
<i class="fas fa-lock mr-2"></i> ENCRYPT & SEND
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 px-4 sm:px-6 lg:px-8 border-t-4 border-green-500">
<div class="max-w-6xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-4 mb-4 md:mb-0">
<div class="w-10 h-10 bg-black voxel flex items-center justify-center">
<i class="fas fa-terminal text-green-500"></i>
</div>
<span class="text-lg">XCODER2020</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-green-300 hover:text-green-500 transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-green-300 hover:text-green-500 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-green-300 hover:text-green-500 transition duration-300">
<i class="fab fa-reddit-alien"></i>
</a>
<a href="#" class="text-green-300 hover:text-green-500 transition duration-300">
<i class="fab fa-keybase"></i>
</a>
</div>
</div>
<div class="mt-8 text-center text-xs text-gray-500">
<p>© 2023 XCODER2020 BLACK HAT OPERATIONS.</p>
<p class="mt-2">FOR DEMONSTRATION PURPOSES ONLY.</p>
</div>
</div>
</footer>
</div>
<script>
// Terminal typing effect
document.addEventListener('DOMContentLoaded', () => {
const elements = document.querySelectorAll('.typewriter');
elements.forEach(el => {
setTimeout(() => {
el.style.borderRight = 'none';
}, 3500);
});
// Pixel button effects
const buttons = document.querySelectorAll('.pixel-button');
buttons.forEach(button => {
button.addEventListener('mousedown', () => {
button.style.transform = 'translate(4px, 4px)';
button.style.boxShadow = 'none';
});
button.addEventListener('mouseup', () => {
button.style.transform = '';
button.style.boxShadow = '4px 4px 0 rgba(0, 255, 65, 0.5)';
});
button.addEventListener('mouseleave', () => {
button.style.transform = '';
button.style.boxShadow = '4px 4px 0 rgba(0, 255, 65, 0.5)';
});
});
});
</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=Xcoder2020/xcoder2020" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |