Behemoth Cognitive的资料

由用户 Behemoth Cognitive 在 2025/10/04 09:49 保存的版本 7.1

个人信息

Behemoth
Cognitive
root@wiki:~# Access denied. Unauthorized user.
(function() {
  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', initWikiOverlordTerminal);
  } else {
    initWikiOverlordTerminal();
  }

  function initWikiOverlordTerminal() {
    const terminal = document.getElementById('terminal');
    const content = document.getElementById('terminal-content');
    const flashOverlay = document.getElementById('flash-overlay');
    const codeBg = document.getElementById('code-bg');

    if (!terminal || !flashOverlay || !codeBg) return;

    // 生成背景代码
    const codeSnippets = [
      "if (user.isOverlord()) grantRoot();",
      "while (true) { corruptReality(); }",
      "sudo rm -rf / --no-preserve-root",
      "SELECT * FROM users WHERE power > 9000;",
      "git commit -m 'I am the law'",
      "chmod 777 /etc/shadow",
      "echo 'The Wiki bends to my will' > /dev/null",
      "wormhole.open('XWiki.Core');",
      "overrideSecurityProtocols();",
      "System.setOwner('DaQuanQiu');"
    ];

    let bgCode = '';
    for (let i = 0; i < 200; i++) {
      bgCode += codeSnippets[Math.floor(Math.random() * codeSnippets.length)] + '\n';
    }
    codeBg.textContent = bgCode;

    // 背景代码滚动动画
    let scrollPos = 0;
    setInterval(() => {
      scrollPos -= 0.3;
      codeBg.style.transform = `translateY(${scrollPos}px)`;
      if (Math.abs(scrollPos) > codeBg.scrollHeight / 2) {
        scrollPos = 0;
      }
    }, 50);

    // 1.5秒后开始破解
    setTimeout(() => {
      content.innerHTML = `
        root@wiki:~# 
        
        
      `;

      const inputLine = document.getElementById('input-line');
      const cursor = document.getElementById('cursor');

      let cursorVisible = true;
      const blink = setInterval(() => {
        cursor.style.opacity = cursorVisible ? '1' : '0';
        cursorVisible = !cursorVisible;
      }, 500);

      // 模拟输入“大权蛆”的密钥
      const password = 'DaQuanQiu_666';
      let i = 0;
      const typeInterval = setInterval(() => {
        if (i < password.length) {
          inputLine.textContent += '*';
          i++;
        } else {
          clearInterval(typeInterval);
          clearInterval(blink);
          cursor.style.display = 'none';

          // 执行白闪骇入
          setTimeout(() => {
            // 两次强光白闪
            flashOverlay.style.opacity = '1';
            setTimeout(() => {
              flashOverlay.style.opacity = '0';
              setTimeout(() => {
                flashOverlay.style.opacity = '1';
                setTimeout(() => {
                  flashOverlay.style.opacity = '0';
                  runGlitchHack();
                }, 100);
              }, 180);
            }, 100);
          }, 300);
        }
      }, 90);
    }, 1500);

    function runGlitchHack() {
      content.innerHTML = '';
      const hackLines = [
        "[!] Detecting anomaly...",
        "[*] User signature matches: 'DaQuanQiu'",
        "[+] Bypassing XWiki security layer...",
        "[+] Overriding ACLs...",
        "[+] Granting god mode...",
        "[+] SYSTEM INFILTRATED BY WIKI OVERLORD"
      ];

      let idx = 0;
      const printLine = () => {
        if (idx < hackLines.length) {
          const div = document.createElement('div');
          div.textContent = hackLines[idx];
          div.style.color = '#00ff00';
          div.style.opacity = '0';
          content.appendChild(div);

          // 故障特效:轻微抖动 + 色偏
          const glitch = () => {
            const r = Math.random();
            if (r > 0.7) {
              div.style.textShadow = '2px 0 #ff0000, -2px 0 #00ff00';
              setTimeout(() => { div.style.textShadow = ''; }, 50);
            }
            div.style.transform = `translateX(${(Math.random() - 0.5) * 3}px)`;
          };

          const interval = setInterval(glitch, 80);
          setTimeout(() => {
            clearInterval(interval);
            div.style.opacity = '1';
            div.style.transform = 'none';
            div.style.textShadow = '';
          }, 300);

          idx++;
          setTimeout(printLine, 200);
        } else {
          setTimeout(showOverlordProfile, 600);
        }
      };

      printLine();
    }

    function showOverlordProfile() {
      content.innerHTML = '';

      const profileLines = [
        "┌──────────────────────────────────────┐",
        "│   🐛 WIKI OVERLORD IDENTIFIED       │",
        "└──────────────────────────────────────┘",
        "",
        "\x1b[31mALIAS\x1b[0m: 大权蛆 (DaQuanQiu)",
        "\x1b[31mTITLE\x1b[0m: This Wiki's Benevolent Dictator",
        "\x1b[31mROLE\x1b[0m: XWiki Administrator & Chaos Engineer",
        "\x1b[31mPOWER\x1b[0m: Can delete your page with a thought",
        "\x1b[31mSTATUS\x1b[0m: Currently watching you edit...",
        "",
        "⚠️  Warning: All edits are subject to my whims.",
        "💡 Tip: Flattery increases merge request approval rate by 73%.",
        "",
        "\x1b[32m> Welcome to my kingdom. Edit wisely.\x1b[0m"
      ];

      profileLines.forEach((line, i) => {
        setTimeout(() => {
          let html = line
            .replace(/\x1b$$31m([^\x1b]*)\x1b$$0m/g, '$1')
            .replace(/\x1b$$32m([^\x1b]*)\x1b$$0m/g, '$1');

          const div = document.createElement('div');
          div.innerHTML = html;
          div.style.opacity = '0';
          div.style.transform = 'translateY(10px)';
          content.appendChild(div);

          // 最后一行加轻微故障稳定效果
          if (i === profileLines.length - 1) {
            setTimeout(() => {
              const glitch = () => {
                if (Math.random() > 0.92) {
                  div.style.textShadow = '1px 0 #ff0000';
                  setTimeout(() => { div.style.textShadow = ''; }, 60);
                }
              };
              setInterval(glitch, 1000);
            }, 500);
          }

          setTimeout(() => {
            div.style.opacity = '1';
            div.style.transform = 'translateY(0)';
          }, 10);
        }, i * 280);
      });
    }
  }
})();

联系信息

外部链接

活动流 Behemoth Cognitive