FinalShell 专业版 & 高级版激活

首先从官网下载 finalshell(好像有一个 新域名,不知道是不是作者整的,安装包是 msi 格式的,也不知道和原版有啥区别)

安装后找出 finalshell.jar,使用下面的命令启动,后面调试要用 java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar finalshell.jar

启动后点左下角,登录时账号密码随便输入,提示密码错误不用管,只需要打开离线激活就可以看到当前生成了机器码 123@acb33a2719acb54e

新版的激活算法就是:keccak384(机器码 + 高级版/专业版后缀)[12:28],最后给个 python 脚本(python 需要安装 pycryptodome 库,可能会出错,参考 CSDN):

python 复制代码
from Crypto.Hash import keccak
from Crypto.Hash import MD5

def md5(msg):
	hash_obj = MD5.new(msg)
	return hash_obj.hexdigest()
def keccak384(msg):
	hash_obj = keccak.new(data=msg, digest_bits=384)
	return hash_obj.hexdigest()
if __name__ == '__main__':
	code = input('输入机器码: ')
	print('版本号 < 3.9.6 (旧版)')
	print('高级版:', md5(f'61305{code}8552'.encode())[8:24])
	print('专业版:', md5(f'2356{code}13593'.encode())[8:24])
	print('版本号 >= 3.9.6 (新版)')
	print('高级版:', keccak384(f'{code}hSf(78cvVlS5E'.encode())[12:28])
	print('专业版:', keccak384(f'{code}FF3Go(*Xvbb5s2'.encode())[12:28])
相关推荐
曲幽5 小时前
数据库实战:FastAPI + SQLAlchemy 2.0 + Alembic 从零搭建,踩坑实录
python·fastapi·web·sqlalchemy·db·asyncio·alembic
用户83562907805110 小时前
Python 实现 PowerPoint 形状动画设置
后端·python
ponponon11 小时前
时代的眼泪,nameko 和 eventlet 停止维护后的项目自救,升级和替代之路
python
Flittly11 小时前
【从零手写 ClaudeCode:learn-claude-code 项目实战笔记】(5)Skills (技能加载)
python·agent
敏编程11 小时前
一天一个Python库:pyarrow - 大规模数据处理的利器
python
Flittly13 小时前
【从零手写 ClaudeCode:learn-claude-code 项目实战笔记】(4)Subagents (子智能体)
python·agent
明月_清风20 小时前
Python 装饰器前传:如果不懂“闭包”,你只是在复刻代码
后端·python
明月_清风20 小时前
打破“死亡环联”:深挖 Python 分代回收与垃圾回收(GC)机制
后端·python
ZhengEnCi2 天前
08c. 检索算法与策略-混合检索
后端·python·算法
明月_清风2 天前
Python 内存手术刀:sys.getrefcount 与引用计数的生死时速
后端·python