2x已放出RC1版本!传送门:http://www.smartfoxserver.com/2X/
未授权版连接数上限100,经过努力已破解,连接数、时间均可无限制,嘿嘿
连接数被我设为了888,到期时间设定了2111/11/11,有创意吧.
奉献上license.2x: license.rar (154 Bytes, 下载次数: 59)
使用方法:解压至config文件夹
要更多连接数的在下面
============================================
11.5更新:
无限制版下载: license无限制版.rar (148 Bytes, 下载次数: 164)
顺便贴上破解用的JAVA代码:
想自己动手的就试试吧,核心部分在下面,自己写个main方法运行吧,把sfs 2x相应的库补上!
sfs2x-lms.jar 的位置改成你的
- DFResLoader loader = new DFResLoader(Main.class.getClassLoader());
- loader.init(new FileInputStream("D://Program Files//SFS2X-RC1//SFS2X//lib//Lib//sfs2x-lms.jar"));
- long expireTime = 4476614400000l;//new Date(2111-1900, 10, 11).getTime();
- ISFSObject license = new SFSObject();
- license.putUtfString("customer", "");//授权人,为空则为共享版,否则个人版
- license.putUtfString("bind", "*.*.*.*");//限制IP
- license.putInt("users", -1);//连接数上限,-1为无限数量
- license.putLong("expire", 0);//expireTime 版权到期时间,0为无限制
- license.putBool("private", false);//私有?
- //sfs.lms.d.w
- Class da = loader.loadClass("sfs.lms.d.w");
- //保存到config/license.2x
- da.getMethod("J", ISFSObject.class).invoke(da.newInstance(), license);