惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
A
About on SuperTechFans
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
U
Unit 42
WordPress大学
WordPress大学
Y
Y Combinator Blog
罗磊的独立博客
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
V
V2EX
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
酷 壳 – CoolShell
酷 壳 – CoolShell

小野博客

跑跑卡丁车国服:从多开到劫持登录的逆向笔记 Hexo 主题 Win7:把 Windows 7 装进博客 Bandizip 签名程序 RegDll 实现 DLL 白加黑加载 Typora 1.14.9 离线授权机制分析与本地 Hook 实现 nProtect BlackCipher 反作弊分析 Snipaste 2.11.X 离线授权分析 朱镕基同志逝世 【开源主题】LB_Down下载站-支持1.3.0版本typecho主题 没有信用卡,我为了注册一个20.uy域名,走了一条多长的弯路 QQ音乐播放接口:PHP逆向分析与实现 CTF:最好的语言解密过程 狐蒂云疑似准备跑路:低价云服务器的水有多深 WeMod PRO 会员高级版脚本分享 PowerShell 执行策略被禁止解决方法 一款可以屏蔽国外广告的IP过滤评论插件 当 PCDN 来敲门:一个"小"博客的 200G 流量惊魂记 船新升级!我的“一言”系统支持一键换肤了(内附10套精美皮肤) 再续前缘:利用自建一言Api接口嫁接给typecho 给网页装个“灵魂”:我写了一个超丝滑的【一言】自建语录api 桌面工具-极光便签-随时笔记
FinalShell 4.6.5离线激活
小野 · 2026-08-21 · via 小野博客

今天更新了FinalShell版本:4.6.5,发现去年激活的方法已经失效。

所有百度了一下,发现有最新算法。分享一下


<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8" />
  <title>FinalShell 离线激活码生成</title>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js"></script>
  <style>
    body {
      font-family: sans-serif;
      padding: 2rem;
      background: #f5f5f5;
    }
    .box {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      max-width: 500px;
      margin: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    h2 {
      margin: 0 0 1rem 0;
      font-size: 1.25rem;
      color: #333;
    }
    input, button {
      padding: 0.5rem;
      width: 100%;
      margin-top: 1rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    button {
      background: #333;
      color: white;
      border: none;
      cursor: pointer;
    }
    button:hover {
      background: #555;
    }
    .result {
      margin-top: 1.5rem;
      white-space: pre-wrap;
      font-family: monospace;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #333;
    }
    .ver {
      color: #c0392b;
      font-weight: bold;
    }
    .type {
      color: #2980b9;
    }
  </style>
</head>
<body>
  <div class="box">
    <h2 id='pk-menu-3'>离线激活码生成器</h2>
    <input id="machineCode" type="text" placeholder="请输入机器码..." />
    <button onclick="generate()">生成授权码</button>
    <div class="result" id="output"></div>
  </div>

  <script>
    function md5(str) {
      return CryptoJS.MD5(str).toString();
    }

    function keccak384(str) {
      return CryptoJS.SHA3(str, { outputLength: 384 }).toString();
    }

    function generate() {
      const code = document.getElementById('machineCode').value.trim();
      const out = document.getElementById('output');
      if (!code) {
        out.textContent = '请输入机器码';
        return;
      }

      let res = '';

      res += '<span class="ver">FinalShell < 3.9.6</span>\n';
      res += '<span class="type">高级版:</span> ' + md5('61305' + code + '8552').slice(8, 24) + '\n';
      res += '<span class="type">专业版:</span> ' + md5('2356' + code + '13593').slice(8, 24) + '\n\n';

      res += '<span class="ver">FinalShell ≥ 3.9.6</span>\n';
      res += '<span class="type">高级版:</span> ' + keccak384(code + 'hSf(78cvVlS5E').slice(12, 28) + '\n';
      res += '<span class="type">专业版:</span> ' + keccak384(code + 'FF3Go(*Xvbb5s2').slice(12, 28) + '\n\n';

      res += '<span class="ver">FinalShell 4.5</span>\n';
      res += '<span class="type">高级版:</span> ' + keccak384(code + 'wcegS3gzA$').slice(12, 28) + '\n';
      res += '<span class="type">专业版:</span> ' + keccak384(code + 'b(xxkHn%z);x').slice(12, 28) + '\n\n';

      res += '<span class="ver">FinalShell 4.6</span>\n';
      res += '<span class="type">高级版:</span> ' + keccak384(code + 'csSf5*xlkgYSX,y').slice(12, 28) + '\n';
      res += '<span class="type">专业版:</span> ' + keccak384(code + 'Scfg*ZkvJZc,s,Y').slice(12, 28);

      out.innerHTML = res;
    }

    document.getElementById('machineCode').addEventListener('keypress', function(e) {
      if (e.key === 'Enter') generate();
    });
  </script>
</body>
</html>