孤木落 发表于 2026-4-6 18:15

写字机软件破解教程

本帖最后由 孤木落 于 2026-4-6 18:18 编辑


[新版写字机软件卡密求助](https://www.52pojie.cn//thread-2101229-1-1.html),经过一段时间的努力破解成功了

只说一下大概思路,因为确实简单,因为之前方向错了浪费了很多时间

核心激活窗口在rt.jar里,而不是Launcher_guard.jar(这里面的注册窗口就是干扰项)

具体怎么发现的呢?

因为install4j打包的jar可以调试,直接连idea调试就可以了,在swing的ui创建函数上打方法断点,查看调用栈

类搜索脚本如下

```python
import os
import zipfile
from pathlib import Path

def find_class_in_jars(root_dirs, class_path="java/net/Network.class"):
    matches = []
    for root_dir in root_dirs:
      root_path = Path(root_dir)
      if not root_path.exists():
            print(f"警告: 目录不存在,跳过 -> {root_dir}")
            continue
      for jar_file in root_path.rglob("*.jar"):
            try:
                with zipfile.ZipFile(jar_file, 'r') as zf:
                  if class_path in zf.namelist():
                        matches.append(str(jar_file))
                        print(f"找到: {jar_file}")
            except Exception as e:
                print(f"无法读取 {jar_file}: {e}")
    return matches

if __name__ == "__main__":
    # 你要扫描的目录列表
    directories = [
      r"C:\Users\lenovo\Desktop\奎享雕刻\jre\lib",
      r"C:\Users\lenovo\Desktop\奎享雕刻\Launcher_lib"
    ]
    target_class = "java/net/Network.class"
   
    print(f"正在搜索类: {target_class}")
    results = find_class_in_jars(directories, target_class)
   
    if results:
      print("\n找到包含该类的 JAR 文件:")
      for r in results:
            print(f"{r}")
    else:
      print("\n未找到包含该类的 JAR 文件。")
```

本质就是把安装时间当作机器码,算两次md5得到激活码

吐槽:感觉windows上的java debugger没有android上的好用(说的就是你frida)

成品见附件:

snrtyygy 发表于 2026-8-18 11:03

本帖最后由 snrtyygy 于 2026-8-18 11:57 编辑

你提供的这个程序也是个二次破解版本吧。看一下分享的链接里的正式版:奎享雕刻正式版.exe
链接: https://pan.baidu.com/s/1OwVh11swj3RKHtfAUvdPNA?pwd=52pj 提取码: 52pj
这个链接,应该是原版的程序

snrtyygy 发表于 2026-8-18 11:12

本帖最后由 snrtyygy 于 2026-8-18 11:56 编辑

你提供的这个程序也是个二次破解版本吧。看一下分享的链接里的正式版:奎享雕刻正式版.exe
链接: https://pan.baidu.com/s/1OwVh11swj3RKHtfAUvdPNA?pwd=52pj 提取码: 52pj

weichang 发表于 2026-4-7 16:01

谢谢分享,收藏备用

my1229 发表于 2026-4-7 17:41

多谢楼主的作品分享

xintiandi 发表于 2026-4-7 23:47

虽然不知道干什么用,分享注册机就要支持

Duck2025 发表于 2026-4-8 00:03

到时候研究一下,感谢分享

yunque 发表于 2026-4-8 07:27

高手,佩服。分享就要支持。

fxm051600 发表于 2026-4-8 08:23

感谢分享学习中

x747 发表于 2026-4-8 08:49

这个应该是有硬件的吧

douyacai 发表于 2026-4-8 09:48

支持啥版本软件嗯,只打开注册机软件,一闪而过

qq1534928839 发表于 2026-4-8 09:56

感谢分享有时间学习下
页: [1] 2 3 4 5
查看完整版本: 写字机软件破解教程