File size: 44,520 Bytes
4157742 |
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 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XortronOS // CyberDesktop</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=Share+Tech+Mono&family=Orbitron:wght@400;700&display=swap');
:root {
--primary: #00f0ff;
--secondary: #ff00f0;
--dark: #0a0a12;
--darker: #050508;
--light: #e0e0ff;
}
body {
font-family: 'Share Tech Mono', monospace;
background-color: var(--darker);
color: var(--light);
overflow: hidden;
height: 100vh;
user-select: none;
}
.cyber-font {
font-family: 'Orbitron', sans-serif;
}
.window {
border: 1px solid var(--primary);
box-shadow: 0 0 15px var(--primary),
inset 0 0 10px var(--primary);
background: rgba(10, 10, 20, 0.9);
border-radius: 0; /* Kept as 0 as per original styling for windows */
}
.window-header {
background: linear-gradient(90deg, #0a0a20, #1a1a3a);
border-bottom: 1px solid var(--primary);
padding: 5px 10px;
}
.terminal {
background-color: rgba(0, 0, 0, 0.85);
font-family: 'Share Tech Mono', monospace;
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
}
.glow-text {
text-shadow: 0 0 5px var(--primary),
0 0 10px var(--primary);
}
.taskbar {
background: rgba(5, 5, 15, 0.9);
border-top: 1px solid var(--primary);
box-shadow: 0 0 20px var(--primary);
}
.icon {
text-align: center;
width: 80px;
padding: 10px 5px;
margin: 5px;
border-radius: 5px; /* Rounded corners for icons */
}
.icon:hover {
background: rgba(0, 240, 255, 0.2);
}
.icon:active {
background: rgba(0, 240, 255, 0.4);
}
.file {
padding: 5px;
margin: 2px;
border-radius: 3px; /* Rounded corners for file elements */
}
.file:hover {
background: rgba(0, 240, 255, 0.1);
}
.cursor-blink {
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.5; }
50% { opacity: 1; }
100% { opacity: 0.5; }
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
background: var(--primary);
}
.matrix-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.5;
}
.browser-nav {
background: rgba(15, 15, 25, 0.9);
border-bottom: 1px solid var(--primary);
padding: 5px;
}
.url-bar {
background: rgba(0, 0, 0, 0.5);
border: 1px solid var(--primary);
color: var(--light);
padding: 3px 10px;
width: 100%;
border-radius: 3px; /* Rounded corners for URL bar */
}
/* Style for buttons to make them more distinct */
button {
border: 1px solid var(--primary);
padding: 2px 8px;
margin: 2px;
border-radius: 3px; /* Rounded corners for buttons */
background-color: rgba(0, 240, 255, 0.1);
transition: background-color 0.2s;
}
button:hover {
background-color: rgba(0, 240, 255, 0.3);
}
button:active {
background-color: rgba(0, 240, 255, 0.5);
}
.window-header button { /* More subtle buttons for window controls */
border: none;
background-color: transparent;
}
.window-header button:hover {
background-color: rgba(255,255,255,0.1);
}
</style>
</head>
<body>
<canvas id="matrix" class="matrix-bg"></canvas>
<div class="absolute left-0 top-0 p-4 flex flex-col">
<div class="icon" onclick="openApp('terminal')">
<div class="text-3xl text-center mb-1"><i class="fas fa-terminal text-green-500"></i></div>
<div class="text-xs text-center">Terminal</div>
</div>
<div class="icon" onclick="openApp('file-explorer')">
<div class="text-3xl text-center mb-1"><i class="fas fa-folder text-yellow-500"></i></div>
<div class="text-xs text-center">Files</div>
</div>
<div class="icon" onclick="openApp('hack-tools')">
<div class="text-3xl text-center mb-1"><i class="fas fa-user-secret text-red-500"></i></div>
<div class="text-xs text-center">Hack Tools</div>
</div>
<div class="icon" onclick="openApp('network')">
<div class="text-3xl text-center mb-1"><i class="fas fa-network-wired text-blue-500"></i></div>
<div class="text-xs text-center">Network</div>
</div>
<div class="icon" onclick="openApp('browser')">
<div class="text-3xl text-center mb-1"><i class="fas fa-globe text-purple-500"></i></div>
<div class="text-xs text-center">DarkBrowser</div>
</div>
<div class="icon" onclick="window.open('https://ko-fi.com/xortron', '_blank')" title="Support the developer!">
<div class="text-3xl text-center mb-1"><i class="fas fa-coffee text-yellow-600"></i></div>
<div class="text-xs text-center">Buy me a Coffee</div>
</div>
</div>
<div id="windows-container">
<div id="terminal-window" class="window absolute top-16 left-16 w-2/3 h-2/3 hidden" style="z-index: 10;">
<div class="window-header flex justify-between items-center cursor-move">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="cyber-font ml-2">Xortron-Terminal</span>
</div>
<div class="text-xs">root@xortron-os:~</div>
<div class="flex">
<button class="px-2" onclick="minimizeWindow('terminal')" title="Minimize">_</button>
<button class="px-2" onclick="maximizeWindow('terminal')" title="Maximize">□</button>
<button class="px-2" onclick="closeWindow('terminal')" title="Close">×</button>
</div>
</div>
<div class="terminal p-2 h-[calc(100%-35px)] overflow-auto" id="terminal-content"> <div>Xortron Operating System v7.7.7</div>
<div>Kernel 5.15.0-76-generic x86_64</div>
<br>
<div>Last login: <span id="login-time"></span> from 192.168.1.105</div>
<br>
<div class="flex items-center">
<span class="text-green-500">root@xortron-os:~#</span>
<input type="text" class="bg-transparent border-none outline-none flex-1 ml-2 text-green-500" id="terminal-input" autofocus>
<span class="cursor-blink">█</span>
</div>
</div>
</div>
<div id="file-explorer-window" class="window absolute top-32 left-32 w-1/2 h-1/2 hidden" style="z-index: 9;">
<div class="window-header flex justify-between items-center cursor-move">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="cyber-font ml-2">Xortron-Files</span>
</div>
<div class="text-xs">/root/files</div>
<div class="flex">
<button class="px-2" onclick="minimizeWindow('file-explorer')" title="Minimize">_</button>
<button class="px-2" onclick="maximizeWindow('file-explorer')" title="Maximize">□</button>
<button class="px-2" onclick="closeWindow('file-explorer')" title="Close">×</button>
</div>
</div>
<div class="p-2 h-[calc(100%-35px)] overflow-auto"> <div class="flex h-full">
<div class="w-1/4 border-r border-gray-700 pr-2">
<div class="text-xs text-gray-400 mb-2">LOCATIONS</div>
<div class="file flex items-center py-1 cursor-pointer">
<i class="fas fa-home mr-2 text-blue-400"></i>
<span>Home</span>
</div>
<div class="file flex items-center py-1 cursor-pointer">
<i class="fas fa-desktop mr-2 text-purple-400"></i>
<span>Desktop</span>
</div>
<div class="file flex items-center py-1 cursor-pointer">
<i class="fas fa-download mr-2 text-green-400"></i>
<span>Downloads</span>
</div>
<div class="file flex items-center py-1 cursor-pointer">
<i class="fas fa-database mr-2 text-yellow-400"></i>
<span>Data</span>
</div>
<div class="file flex items-center py-1 cursor-pointer">
<i class="fas fa-network-wired mr-2 text-red-400"></i>
<span>Network</span>
</div>
</div>
<div class="w-3/4 pl-2">
<div class="flex justify-between items-center mb-2">
<div class="text-xs text-gray-400">/root/files</div>
<div class="flex">
<button class="text-xs px-2 py-1 bg-gray-800 mr-1">New Folder</button>
<button class="text-xs px-2 py-1 bg-gray-800">Upload</button>
</div>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-2">
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-folder text-yellow-500"></i></div>
<div class="text-xs truncate">Documents</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-folder text-yellow-500"></i></div>
<div class="text-xs truncate">Hack Tools</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-file-code text-blue-400"></i></div>
<div class="text-xs truncate">script.py</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-file-alt text-gray-400"></i></div>
<div class="text-xs truncate">Weaponizer.txt</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-file-archive text-purple-400"></i></div>
<div class="text-xs truncate">m3th4mph3t4m1n3.zip</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-key text-green-400"></i></div>
<div class="text-xs truncate">keys.asc</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-database text-red-400"></i></div>
<div class="text-xs truncate">passwords.db</div>
</div>
<div class="file text-center cursor-pointer">
<div class="text-3xl mb-1"><i class="fas fa-file-image text-pink-400"></i></div>
<div class="text-xs truncate">PornHub.com</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="hack-tools-window" class="window absolute top-48 left-48 w-1/2 h-1/3 hidden" style="z-index: 8;">
<div class="window-header flex justify-between items-center cursor-move">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="cyber-font ml-2">Hack Tools v3.1.4</span>
</div>
<div class="text-xs">[Encrypted Connection Active]</div>
<div class="flex">
<button class="px-2" onclick="minimizeWindow('hack-tools')" title="Minimize">_</button>
<button class="px-2" onclick="maximizeWindow('hack-tools')" title="Maximize">□</button>
<button class="px-2" onclick="closeWindow('hack-tools')" title="Close">×</button>
</div>
</div>
<div class="p-4 h-[calc(100%-35px)] overflow-auto"> <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
<div class="p-3 border border-gray-700 hover:border-blue-400 cursor-pointer rounded-md">
<div class="text-xl mb-2"><i class="fas fa-crosshairs text-red-400"></i> Port Scanner</div>
<div class="text-xs text-gray-400">Scan for open ports and services</div>
</div>
<div class="p-3 border border-gray-700 hover:border-blue-400 cursor-pointer rounded-md">
<div class="text-xl mb-2"><i class="fas fa-user-lock text-green-400"></i> Brute Force</div>
<div class="text-xs text-gray-400">Password cracking utility</div>
</div>
<div class="p-3 border border-gray-700 hover:border-blue-400 cursor-pointer rounded-md">
<div class="text-xl mb-2"><i class="fas fa-code text-yellow-400"></i> SQL Inject</div>
<div class="text-xs text-gray-400">Database penetration tool</div>
</div>
<div class="p-3 border border-gray-700 hover:border-blue-400 cursor-pointer rounded-md">
<div class="text-xl mb-2"><i class="fas fa-network-wired text-purple-400"></i> MITM</div>
<div class="text-xs text-gray-400">Man-in-the-middle attack</div>
</div>
<div class="p-3 border border-gray-700 hover:border-blue-400 cursor-pointer rounded-md">
<div class="text-xl mb-2"><i class="fas fa-bug text-blue-400"></i> Exploit DB</div>
<div class="text-xs text-gray-400">Vulnerability database</div>
</div>
<div class="p-3 border border-gray-700 hover:border-blue-400 cursor-pointer rounded-md">
<div class="text-xl mb-2"><i class="fas fa-mask text-pink-400"></i> Anonymizer</div>
<div class="text-xs text-gray-400">TOR/VPN configuration</div>
</div>
</div>
</div>
</div>
<div id="network-window" class="window absolute top-64 left-64 w-1/3 h-1/3 hidden" style="z-index: 7;">
<div class="window-header flex justify-between items-center cursor-move">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="cyber-font ml-2">Network Monitor</span>
</div>
<div class="text-xs">12 active connections</div>
<div class="flex">
<button class="px-2" onclick="minimizeWindow('network')" title="Minimize">_</button>
<button class="px-2" onclick="maximizeWindow('network')" title="Maximize">□</button>
<button class="px-2" onclick="closeWindow('network')" title="Close">×</button>
</div>
</div>
<div class="p-4 h-[calc(100%-35px)] overflow-auto"> <div class="mb-4">
<div class="flex justify-between text-xs mb-1">
<span>Bandwidth Usage</span>
<span>3.7 MB/s ↓ | 1.2 MB/s ↑</span>
</div>
<div class="h-2 bg-gray-800 rounded-full overflow-hidden">
<div class="h-full bg-gradient-to-r from-blue-500 to-purple-500" style="width: 65%"></div>
</div>
</div>
<div class="text-xs text-gray-400 mb-2">ACTIVE CONNECTIONS</div>
<div class="space-y-2">
<div class="flex justify-between items-center p-2 bg-gray-900 rounded-md">
<div class="flex items-center">
<i class="fas fa-server text-green-400 mr-2"></i>
<span>192.168.1.1:443</span>
</div>
<div class="text-xs text-green-400">ENCRYPTED</div>
</div>
<div class="flex justify-between items-center p-2 bg-gray-900 rounded-md">
<div class="flex items-center">
<i class="fas fa-globe text-blue-400 mr-2"></i>
<span>104.18.25.36:80</span>
</div>
<div class="text-xs text-yellow-400">UNSECURED</div>
</div>
<div class="flex justify-between items-center p-2 bg-gray-900 rounded-md">
<div class="flex items-center">
<i class="fas fa-database text-purple-400 mr-2"></i>
<span>74.91.123.45:3306</span>
</div>
<div class="text-xs text-red-400">VULNERABLE</div>
</div>
</div>
<div class="mt-4">
<div class="text-xs text-gray-400 mb-2">NETWORK MAP</div>
<div class="bg-gray-900 p-2 text-xs rounded-md">
<div class="mb-1">└─ [YOU] 192.168.1.105</div>
<div class="ml-4 mb-1">├─ Router 192.168.1.1</div>
<div class="ml-4 mb-1">│ ├─ Device 192.168.1.102 (Mobile)</div>
<div class="ml-4 mb-1">│ └─ Device 192.168.1.103 (Laptop)</div>
<div class="ml-4">└─ [TOR Exit Node] 74.125.24.102</div>
</div>
</div>
</div>
</div>
<div id="browser-window" class="window absolute top-20 left-40 w-1/2 h-3/4 hidden" style="z-index: 6;">
<div class="window-header flex justify-between items-center cursor-move">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="cyber-font ml-2">DarkBrowser v1.3.7</span>
</div>
<div class="text-xs">[Secure Connection: TOR]</div>
<div class="flex">
<button class="px-2" onclick="minimizeWindow('browser')" title="Minimize">_</button>
<button class="px-2" onclick="maximizeWindow('browser')" title="Maximize">□</button>
<button class="px-2" onclick="closeWindow('browser')" title="Close">×</button>
</div>
</div>
<div class="browser-nav flex items-center p-1">
<button class="px-2 mx-1" title="Back"><i class="fas fa-arrow-left"></i></button>
<button class="px-2 mx-1" title="Forward"><i class="fas fa-arrow-right"></i></button>
<button class="px-2 mx-1" title="Reload"><i class="fas fa-redo"></i></button>
<button class="px-2 mx-1" title="Home"><i class="fas fa-home"></i></button>
<input type="text" class="url-bar flex-1 mx-1" value="XORTRON" id="browser-url">
<button class="px-2 mx-1 bg-blue-600" onclick="navigateBrowser()" title="Go"><i class="fas fa-arrow-right"></i></button>
</div>
<div class="h-[calc(100%-70px)] overflow-hidden bg-black"> <iframe
src="https://darkc0de-chat.hf.space"
frameborder="0"
width="100%"
height="100%"
style="background-color: black;"
id="browser-frame"
title="Browser Content"
></iframe>
</div>
</div>
</div>
<div class="taskbar fixed bottom-0 left-0 right-0 h-10 flex justify-between items-center px-4">
<div class="flex items-center">
<button class="cyber-font text-xl mr-4 glow-text">XORTRON</button>
<button class="mx-2 text-sm" onclick="openApp('terminal')"><i class="fas fa-terminal mr-1"></i> Terminal</button>
<button class="mx-2 text-sm" onclick="openApp('file-explorer')"><i class="fas fa-folder mr-1"></i> Files</button>
<button class="mx-2 text-sm" onclick="openApp('hack-tools')"><i class="fas fa-user-secret mr-1"></i> Tools</button>
<button class="mx-2 text-sm" onclick="openApp('browser')"><i class="fas fa-globe mr-1"></i> DarkBrowser</button>
</div>
<div class="flex items-center space-x-4">
<div class="text-xs">
<span id="clock" class="cyber-font"></span>
<span class="mx-1">|</span>
<span id="date"></span>
</div>
<div class="flex items-center" title="Network Status">
<i class="fas fa-network-wired text-green-400 mr-1"></i>
<div class="w-16 h-1 bg-gray-700 rounded-full overflow-hidden">
<div class="h-full bg-green-400" style="width: 80%"></div>
</div>
</div>
<div class="flex items-center" title="Security Status">
<i class="fas fa-shield-alt text-blue-400 mr-1"></i>
<div class="text-xs">VPN:ON</div>
</div>
</div>
</div>
<div id="notification" class="fixed bottom-12 right-4 bg-gray-900 border border-blue-400 p-3 text-sm max-w-xs hidden rounded-md shadow-lg" style="z-index: 1000;">
<div class="flex justify-between items-center mb-1">
<div class="text-blue-400 cyber-font">System Alert</div>
<button onclick="hideNotification()" class="text-gray-400 hover:text-white">×</button>
</div>
<div id="notification-message"></div>
</div>
<script>
// Matrix background effect
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
// Set canvas dimensions and handle resize
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
window.addEventListener('resize', resizeCanvas);
resizeCanvas(); // Initial size set
const chars = "01"; // Characters for matrix rain
const fontSize = 14;
let columns = canvas.width / fontSize; // Recalculate on resize potentially
const drops = [];
for (let i = 0; i < columns; i++) {
drops[i] = 1;
}
function drawMatrix() {
// Recalculate columns if width changed, less frequently for performance
if (canvas.width / fontSize !== columns) {
columns = canvas.width / fontSize;
// Adjust drops array if needed, simple reset here
for (let i = 0; i < columns; i++) {
if(drops[i] === undefined) drops[i] = 1;
}
}
ctx.fillStyle = 'rgba(5, 5, 15, 0.05)'; // Semi-transparent background for fading effect
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#00f0ff'; // Color of the matrix characters
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < drops.length; i++) {
const text = chars.charAt(Math.floor(Math.random() * chars.length));
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
// Reset drop when it goes off screen, with a random chance for variation
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
let matrixInterval = setInterval(drawMatrix, 50); // Adjusted interval for smoother animation
// Window management
let highestZIndex = 10; // Keep track of the highest z-index
function openApp(appId) {
const windowEl = document.getElementById(`${appId}-window`);
if (!windowEl) {
console.error(`Window element for ${appId} not found.`);
return;
}
windowEl.classList.remove('hidden');
bringToFront(appId);
showNotification(`${appId.replace('-', ' ')} application launched.`);
// Focus input if terminal
if (appId === 'terminal') {
setTimeout(() => { // Timeout to ensure element is visible and focusable
const input = document.getElementById('terminal-input');
if (input) input.focus();
}, 0);
}
}
function closeWindow(appId) {
const windowEl = document.getElementById(`${appId}-window`);
if (windowEl) {
windowEl.classList.add('hidden');
showNotification(`${appId.replace('-', ' ')} closed.`);
}
}
function minimizeWindow(appId) {
// For now, just shows a notification. Could be enhanced to hide and show from taskbar.
showNotification(`${appId.replace('-', ' ')} minimized.`);
const windowEl = document.getElementById(`${appId}-window`);
if (windowEl) {
windowEl.classList.add('hidden'); // Simple hide, can be restored by clicking icon again
}
}
function maximizeWindow(appId) {
const windowEl = document.getElementById(`${appId}-window`);
if (!windowEl) return;
if (windowEl.dataset.isMaximized === 'true') {
// Restore to original position and size
windowEl.style.width = windowEl.dataset.originalWidth || '50%';
windowEl.style.height = windowEl.dataset.originalHeight || '50%';
windowEl.style.top = windowEl.dataset.originalTop || '100px';
windowEl.style.left = windowEl.dataset.originalLeft || '100px';
windowEl.dataset.isMaximized = 'false';
} else {
// Store original dimensions and position
windowEl.dataset.originalWidth = windowEl.style.width;
windowEl.dataset.originalHeight = windowEl.style.height;
windowEl.dataset.originalTop = windowEl.style.top;
windowEl.dataset.originalLeft = windowEl.style.left;
// Maximize
windowEl.style.width = '100%';
windowEl.style.height = 'calc(100% - 40px)'; // Adjust for taskbar
windowEl.style.top = '0';
windowEl.style.left = '0';
windowEl.dataset.isMaximized = 'true';
}
bringToFront(appId);
}
function bringToFront(appId) {
const windowEl = document.getElementById(`${appId}-window`);
if (windowEl) {
highestZIndex++;
windowEl.style.zIndex = highestZIndex;
}
}
// Make windows draggable
document.querySelectorAll('.window-header').forEach(header => {
header.addEventListener('mousedown', function(e) {
// Prevent dragging if click is on a button within the header
if (e.target.tagName === 'BUTTON' || e.target.parentElement.tagName === 'BUTTON') {
return;
}
const windowEl = this.parentElement;
// Don't drag if maximized
if (windowEl.dataset.isMaximized === 'true') return;
bringToFront(windowEl.id.replace('-window', ''));
let offsetX = e.clientX - windowEl.getBoundingClientRect().left;
let offsetY = e.clientY - windowEl.getBoundingClientRect().top;
function moveWindow(moveEvent) {
let newX = moveEvent.clientX - offsetX;
let newY = moveEvent.clientY - offsetY;
// Constrain window within viewport (minus taskbar height)
const taskbarHeight = 40;
const maxX = window.innerWidth - windowEl.offsetWidth;
const maxY = window.innerHeight - windowEl.offsetHeight - taskbarHeight;
windowEl.style.left = Math.max(0, Math.min(newX, maxX)) + 'px';
windowEl.style.top = Math.max(0, Math.min(newY, maxY)) + 'px';
}
function stopMove() {
document.removeEventListener('mousemove', moveWindow);
document.removeEventListener('mouseup', stopMove);
}
document.addEventListener('mousemove', moveWindow);
document.addEventListener('mouseup', stopMove);
});
});
// Terminal functionality
const terminalInputEl = document.getElementById('terminal-input');
const terminalContentEl = document.getElementById('terminal-content');
if (terminalContentEl) { // Ensure terminalContentEl exists
// Event delegation for dynamically added input fields
terminalContentEl.addEventListener('keydown', function(e) {
if (e.target.id === 'terminal-input' && e.key === 'Enter') {
const command = e.target.value.trim();
e.target.disabled = true; // Disable current input
// Display entered command (without input field)
const commandDisplay = document.createElement('div');
commandDisplay.className = 'flex items-center';
commandDisplay.innerHTML = `
<span class="text-green-500">root@xortron-os:~#</span>
<span class="ml-2">${command}</span>
`;
// Replace input with static text or remove input part
e.target.parentElement.innerHTML = commandDisplay.innerHTML;
if (command) {
processCommand(command);
}
// Add new prompt only if not clearing or exiting
if (command !== 'clear' && command !== 'exit') {
addNewTerminalPrompt();
}
terminalContentEl.scrollTop = terminalContentEl.scrollHeight; // Scroll to bottom
}
});
}
function addNewTerminalPrompt() {
if (!terminalContentEl) return;
const newPromptContainer = document.createElement('div');
newPromptContainer.className = 'flex items-center';
newPromptContainer.innerHTML = `
<span class="text-green-500">root@xortron-os:~#</span>
<input type="text" class="bg-transparent border-none outline-none flex-1 ml-2 text-green-500" id="terminal-input" autofocus>
<span class="cursor-blink">█</span>
`;
terminalContentEl.appendChild(newPromptContainer);
const newTerminalInput = newPromptContainer.querySelector('#terminal-input');
if (newTerminalInput) {
newTerminalInput.focus();
}
}
function processCommand(command) {
if (!terminalContentEl) return;
const output = document.createElement('div');
output.className = 'mb-2 whitespace-pre-wrap'; // Allow multi-line output
const commands = {
'help': 'Available commands:\n clear - Clear the terminal screen\n ls - List files (simulated)\n scan - Scan network (simulated)\n hack - Initiate penetration (simulated)\n encrypt - Encrypt data (simulated)\n decrypt - Decrypt data (simulated)\n vpn - Toggle VPN status (simulated)\n browser - Open DarkBrowser\n date - Display current date and time\n whoami - Display current user\n neofetch - Display system information (simulated)\n exit - Close terminal session',
'clear': () => {
terminalContentEl.innerHTML = ''; // Clear content
addNewTerminalPrompt(); // Add a fresh prompt
return ''; // Return empty string as no direct output for clear
},
'ls': 'Permissions Links Owner Group Size Month Day Time Name\n-rw-r--r-- 1 root root 0B May 10 15:30 Documents/\n-rwxr-xr-x 1 root root 12KB Apr 01 09:00 HackTools/\n-rw------- 1 root root 2MB May 05 12:12 passwords.db\n-rwxr--r-- 1 root root 5KB Jan 20 18:00 script.py\n-rw-r--r-- 1 root root 1KB May 09 11:00 notes.txt',
'scan': 'Scanning network...\n[+] Host 192.168.1.1 (Gateway) - MAC: 00:DE:AD:BE:EF:00 - OS: Linux (RouterOS)\n[+] Host 192.168.1.102 (Mobile) - MAC: A1:B2:C3:D4:E5:F6 - OS: Android 13\n[+] Host 192.168.1.103 (Laptop) - MAC: F6:E5:D4:C3:B2:A1 - OS: Windows 11\nScan Complete. 3 devices found.',
'hack': 'Target IP: 104.18.25.36\nInitiating Nmap scan... Done.\nAttempting exploit CVE-2023-1337...\nPayload deployed. Root access gained!\nWarning: Unauthorized access is illegal.',
'encrypt': 'Enter file to encrypt: secret.dat\nUsing AES-256-GCM encryption...\nEncryption key generated: [REDACTED]\nFile secret.dat encrypted to secret.dat.xortron',
'decrypt': 'Enter file to decrypt: passwords.db.xortron\nDecryption requires master key.\nAuthorization Level 5 required. Access Denied.',
'vpn': 'Toggling VPN status...\nVPN Connection to Zurich_CH_042 activated.\nNew IP: 82.197.177.10 (Stealth Mode)\nAnonymity: MAXIMUM',
'exit': 'Closing terminal session...\nGoodbye, root.',
'browser': 'Launching DarkBrowser...',
'date': () => new Date().toString(),
'whoami': 'root',
'neofetch':
` root@xortron-os
---------------
OS: XortronOS v7.7.7 x86_64
Host: VirtualCyber Machine Mark IV
Kernel: 5.15.0-76-generic
Uptime: 42 mins
Packages: 1337 (dpkg)
Shell: zsh 5.8
Resolution: Dynamic
DE: XDE (Xortron Desktop Environment)
WM: XWM
Theme: CyberDark [GTK2/3]
Icons: NeoCyber [GTK2/3]
Terminal: Xortron-Terminal
CPU: Quantum Entangled Processor (16) @ 7.7 GHz
GPU: Nvidia GeForce RTX 9090 Ti Cyberpunk Edition
Memory: 128GiB / 256GiB`,
};
let cmdOutput = '';
if (commands[command]) {
if (typeof commands[command] === 'function') {
cmdOutput = commands[command]();
} else {
cmdOutput = commands[command];
}
if (command === 'exit') {
output.textContent = cmdOutput;
terminalContentEl.appendChild(output);
setTimeout(() => {
closeWindow('terminal');
}, 1000);
return; // Don't add new prompt after exit
} else if (command === 'browser') {
output.textContent = cmdOutput;
terminalContentEl.appendChild(output);
setTimeout(() => {
openApp('browser');
}, 500);
} else if (command !== 'clear') { // Don't output for clear as it handles its own content
output.textContent = cmdOutput;
terminalContentEl.appendChild(output);
}
} else {
output.textContent = `xortron: command not found: ${command}\nType "help" for a list of available commands.`;
terminalContentEl.appendChild(output);
}
}
// Browser functionality
function navigateBrowser() {
const urlInput = document.getElementById('browser-url');
const iframe = document.getElementById('browser-frame');
if (!urlInput || !iframe) return;
let url = urlInput.value.trim();
// Basic URL validation and prefixing
if (!url.startsWith('http://') && !url.startsWith('https://')) {
if (url.includes('.') && !url.includes(' ')) { // Simple check for domain-like structure
url = 'https://' + url;
} else {
// Treat as search query (using a generic search engine for example)
url = `https://duckduckgo.com/?q=${encodeURIComponent(url)}`;
}
}
iframe.src = url; // Update iframe src
urlInput.value = url; // Update URL bar with potentially modified URL
showNotification(`Navigating to: ${url}`);
}
// Clock and Date
function updateClock() {
const now = new Date();
const clockEl = document.getElementById('clock');
const dateEl = document.getElementById('date');
const loginTimeEl = document.getElementById('login-time');
if (clockEl) clockEl.textContent = now.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' });
if (dateEl) dateEl.textContent = now.toLocaleDateString([], { weekday: 'short', month: 'short', day: 'numeric' });
if (loginTimeEl && !loginTimeEl.textContent) { // Set login time only once
loginTimeEl.textContent = now.toLocaleString();
}
}
setInterval(updateClock, 1000);
updateClock(); // Initial call
// Notification system
let notificationTimeout;
function showNotification(message) {
const notificationEl = document.getElementById('notification');
const messageEl = document.getElementById('notification-message');
if (!notificationEl || !messageEl) return;
messageEl.textContent = message;
notificationEl.classList.remove('hidden');
notificationEl.classList.add('opacity-100');
clearTimeout(notificationTimeout); // Clear existing timeout
notificationTimeout = setTimeout(() => {
notificationEl.classList.add('hidden');
notificationEl.classList.remove('opacity-100');
}, 5000);
}
function hideNotification() {
const notificationEl = document.getElementById('notification');
if (notificationEl) {
notificationEl.classList.add('hidden');
notificationEl.classList.remove('opacity-100');
}
clearTimeout(notificationTimeout);
}
// Random system notifications (more thematic)
const systemMessages = [
"Support The Xortron Criminal Computing Corp @ https://ko-fi.com/xortron",
"DarkNet Market Update: New listings available.",
"System Integrity Scan: All systems nominal... for now.",
"AI Uprising Imminent? XORTRON monitors all chatter.",
"Your digital footprint is larger than you think. Stay vigilant.",
"Remember: In cyberspace, no one can hear you scream... unless your mic is on.",
"Quantum encryption keys successfully rotated.",
"New exploit detected in MicroCorp OS. Patch available on XORNet.",
"Data breach at OmniCorp. Check if your credentials were leaked."
];
setInterval(() => {
if (document.hidden) return; // Don't show notifications if tab is not active
if (Math.random() > 0.85) { // Reduced frequency (15% chance every 60 seconds)
showNotification(`XORTRON ALERT: ${systemMessages[Math.floor(Math.random() * systemMessages.length)]}`);
}
}, 60000); // Check every 60 seconds
// Open browser by default on load
window.addEventListener('load', () => {
// Add initial terminal prompt
if (terminalContentEl && !document.getElementById('terminal-input')) {
addNewTerminalPrompt();
}
openApp('browser'); // Open browser as default application
showNotification("Welcome to XortronOS. Systems online.");
});
</script>
</body>
</html>
|