文件名称:SmartFoxServer解密源码
文件大小:7KB
文件格式:RAR
更新时间:2012-04-22 20:13:56
SmartFoxServer 无限制连接 sfs破解 SmartFoxServer解密
授权文件licence.sfl在server目录下,具体格式:文件构成:KEY的长度+key+DES加密配置文件 解密部分代码: FileInputStream in = readFile(licenceFile); //KEY的长度 int keyLen = in.read(); //key key = new byte[keyLen]; in.read(key, 0, keyLen); //加密的配置文件 byte[] config = new byte[in.available()]; in.read(config, 0, in.available()); //解密配置文件 DESPlus des = new DESPlus(key); byte[] code = des.decrypt(config); String decodeConfig = new String(code,0,code.length); System.out.println("解密后的配置:"+ decodeConfig); // 加密解密 public static void main(String[] args) throws Exception { ParseLicence cu = new ParseLicence(); String root = "C:\\Program Files\\SmartFoxServerPRO_1.6.2\\Server\\"; //原始授权文件 String licenceFile = root + "licence.sfl"; //解密出的配置文件 String decodeConfig = root +"decode.xml"; //生成的新授权文件 String newLicenceFile = root +"licence.sfl.new"; //先执行第一步,生成decode.xml,把链接数修改,保存文件 cu.parse(licenceFile,decodeConfig,newLicenceFile,true); //注释掉上行,去掉下行注释,再执行得到新的sfl文件,程序很糙,将就看吧 //cu.parse(licenceFile,decodeConfig,newLicenceFile,false); }
【文件预览】:
解密SFS
----SFS()
--------bin()
--------src()
--------.project(379B)
--------.classpath(232B)