其他分享
首页 > 其他分享> > Crack SFS 2X license file

Crack SFS 2X license file

作者:互联网

Use java to create license file license.2x.

Code below:

import com.smartfoxserver.v2.entities.data.SFSObject;
import com.smartfoxserver.v2.protocol.binary.DefaultPacketCompressor;

import java.io.*;
import java.util.Random;

public class Main {

    public static void main(String[] args) {
        try {
            SaveLicense();
            OpenLicense();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void SaveLicense() throws IllegalArgumentException, SecurityException, IOException {
        SFSObject license = new SFSObject();
        license.putUtfString("customer", "BlueEffie");// 授权人,为空则为共享版,否则个人版
        license.putUtfString("bind", "127.0.0.1");// 限制IP ,也就是服务器的公网IP!!如果写内网IP则只能在内网上访问。
        license.putInt("users", -1);// 连接数上限,-1为无限数量
        license.putLong("expire", 0);// 版权到期时间,0为无限制
        license.putBool("private", false);// 私有?

        byte[] objectBytes = license.toBinary();
        try {
            objectBytes = new DefaultPacketCompressor().compress(objectBytes);
        } catch (Exception e) {
            e.printStackTrace();
        }
        byte[] licenseData = Encrypt(objectBytes);

        new FileOutputStream("C:\\license.2x").write(licenseData); //设置保存的路径
    }

    public static void OpenLicense() throws IllegalArgumentException, SecurityException, IOException {
        FileInputStream fis = new FileInputStream("C:\\license.2x");
        byte[] licenseData = Decrypt(readStream(fis));

        try {
            byte[] objectBytes = new DefaultPacketCompressor().uncompress(licenseData);
            SFSObject license = SFSObject.newFromBinaryData(objectBytes);

            System.out.println("customer=>" + license.getUtfString("customer"));
            System.out.println("bind=>" + license.getUtfString("bind"));
            System.out.println("users=>" + license.getInt("users"));
            System.out.println("expire=>" + license.getLong("expire"));
            System.out.println("private=>" + license.getBool("private"));

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static byte[] Encrypt(byte[] fileData) {
        Random random = new Random();
        byte[] encryptData = new byte[fileData.length + 4];

        for (int i = 0; i < 4; i++) {
            encryptData[i] = (byte) random.nextInt(255);
        }

        for (int i = 0; i < fileData.length; i++) {
            encryptData[i + 4] = (byte) (fileData[i] ^ encryptData[2]);
        }

        return encryptData;
    }

    private static byte[] Decrypt(byte[] fileData) {
        byte[] decryptData = new byte[fileData.length - 4];

        for (int i = 0; i < decryptData.length; i++) {
            decryptData[i] = (byte) (fileData[i + 4] ^ fileData[2]);
        }

        return decryptData;
    }

    private static byte[] readStream(InputStream source) throws IllegalArgumentException, SecurityException, IOException {
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        BufferedInputStream bis = new BufferedInputStream(source);

        boolean run = true;

        while (run) {
            int count = bis.read();
            if (count != -1) {
                bos.write(count);
            } else {
                run = false;
            }
        }

        bis.close();
        bos.close();
        return bos.toByteArray();
    }
}
--------------------- 
作者:BlueEffie 
来源:CSDN 
原文:https://blog.csdn.net/blueeffie/article/details/88851217 
版权声明:本文为博主原创文章,转载请附上博文链接!

标签:license,2X,SFS,objectBytes,static,file,new,byte,fileData
来源: https://blog.csdn.net/Guangxing_Fan/article/details/89160963