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

推荐订阅源

D
Docker
爱范儿
爱范儿
T
The Exploit Database - CXSecurity.com
量子位
T
Tailwind CSS Blog
T
Threatpost
The GitHub Blog
The GitHub Blog
AWS News Blog
AWS News Blog
云风的 BLOG
云风的 BLOG
K
Kaspersky official blog
P
Proofpoint News Feed
博客园 - 司徒正美
L
LangChain Blog
T
Threat Research - Cisco Blogs
C
CERT Recently Published Vulnerability Notes
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
S
Secure Thoughts
The Last Watchdog
The Last Watchdog
Spread Privacy
Spread Privacy
H
Hacker News: Front Page
T
Troy Hunt's Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
W
WeLiveSecurity
A
Arctic Wolf
Apple Machine Learning Research
Apple Machine Learning Research
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
P
Proofpoint News Feed
T
Tor Project blog
T
The Blog of Author Tim Ferriss
I
Intezer
P
Privacy & Cybersecurity Law Blog
美团技术团队
N
Netflix TechBlog - Medium
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Vulnerabilities – Threatpost
Application and Cybersecurity Blog
Application and Cybersecurity Blog
G
Google Developers Blog
Attack and Defense Labs
Attack and Defense Labs
T
Tenable Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
腾讯CDC
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Last Week in AI
Last Week in AI

云言博客

蓝月亮SAM系统签名算法(sign)生成逆向-云言博客 2025-我的年中总结-云言博客 2024-我的年度总结-云言博客 彩虹聚合DNS管理系统v1.7更新-云言博客 PDF逐页转换成PNG,并且自动排序-云言博客 [Windows] PC 微信防撤回插件 适用3.9.11.25【2024-8-25更新】-云言博客 使用Python查询任意地区历史天气并生成气温走势折线图-云言博客 CoreNext主题1.6.6 全开源免授权版-云言博客 PHP将API接口获取的数据保存到本地服务器-云言博客
finalshell 4.5 离线码计算-云言博客
152113081031W+ · 2025-05-30 · via 云言博客

finalshell4.5的版本离线码计算代码,Python纯算,只测试了4.5版本,其他版本自行测试;

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])
    print('版本号 (4.5)')
    print('高级版:', keccak384(f'{code}wcegS3gzA$'.encode())[12:28])
    print('专业版:', keccak384(f'{code}b(xxkHn%z);x'.encode())[12:28])