泛微云橋e-Bridge(EBRIDGE) 授權(quán)開心版方法(2019-04-09)

[重要通告]如您遇疑難雜癥,本站支持知識付費業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時間哦!

這兩天玩泛微云橋e-Bridge,發(fā)現(xiàn)了一個大佬的博客,寫了一些開心的方法,但并沒有看到大佬有下載的開心工具,這甚是不開心,但也有了一些算法啥的,還是很開森,也自己記錄一下;網(wǎng)上更多是大佬李浩秦2018年的文章,這篇文章是我再無意在他博客看到的,竟然發(fā)表于2019年,略有些改變,但不大;

泛微云橋e-Bridge 授權(quán)破解方法,無需更改原有程序,本方法是生成授權(quán)文件方式。

已放出授權(quán)文件生成源碼(本博主老梁并未獲取到-甚是傷心),破解方法自行看源碼理解,再次提示此方法僅用來測試系統(tǒng)使用,如需正式使用請購買正版授權(quán)

李浩秦大佬的發(fā)布的源碼;其中使用的加密有:MD5,RSA,DES,BASE64 ;

 package com.exec;

 import java.io.FileOutputStream;
 import java.text.ParseException;
 import java.text.SimpleDateFormat;
 import javax.swing.JOptionPane;
 import java.util.Scanner;
import ln.LN;
 import weaver.weixin.license.KeyGenerater;
 import weaver.weixin.license.PBECipher;
 import weaver.weixin.license.Signaturer;
 

 public class EBRIDGE
 {
 
   private static String companyName="landv測試";
   private static String userCount="1000";
   private static String expDate="2019-08-08";
   private static String macAddr;
   private static String cpCount="100";
   private static String mpCount="100";
   private static String ddCount="100";
   private static String customid="159357";
   private static String modulenamelist="微信工資單,微調(diào)研,微投票,懸賞招聘,微考勤,微名片,外出考勤";
   private static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
   
 /* 29 private static String jlCount = "1"; 30 private static String lanxinCount = "1"; 31 private static String gzbCount = "1"; 32 private static String jdyzjCount = "1"; 33 private static String weworkCount = "1"; 34 private static String fxxkCount = "1"; 35 private static String emCount = "1"; 36 */
   
   
    public static void main(String[] args)
   {
         
     
    Scanner input=new Scanner(System.in);
     System.out.print("請您輸入識別碼:");
     EBRIDGE.macAddr=input.next();
      System.out.println(macAddr);
        try
         {
           EBRIDGE.createfile();
         }
         catch (Exception e1)
        {
           e1.printStackTrace();
         }
   }
   public static void createfile()
     throws Exception
  {
     String params = "companyName=" + companyName + ",userCount=" + userCount + ",expDate=" + expDate + ",macAddr=" + macAddr + 
       ",cpCount=" + cpCount + ",mpCount=" + mpCount + ",ddCount=" + ddCount + ",jlCount=" + ddCount +",lanxinCount=" + ddCount +",gzbCount=" + ddCount +",jdyzjCount=" + ddCount +",weworkCount=" + ddCount +",fxxkCount=" + ddCount +",emCount=" + ddCount +",customid=" + customid;
    KeyGenerater keys = new KeyGenerater();
     keys.generater(customid);
     byte[] pubkey = keys.getPubKey();
     byte[] prikey = keys.getPriKey();
     byte[] key = Signaturer.sign(prikey, params);
     String license = new String(pubkey) + "|" + params + "|" + new String(key);
     String licensefile = PBECipher.PBEEncrypt(license);
     byte[] buff = new byte[0];
     buff = licensefile.getBytes();
     FileOutputStream licensefileout = new FileOutputStream( "C:\\Users\\landv\\Desktop\\landv"+"\\" + macAddr + "_EBRIDGE.license");
     licensefileout.write(buff, 0, buff.length);
   licensefileout.close();
    
     String[] moduleName = modulenamelist.split("\\,");
    for (int i = 0; i < moduleName.length; i++)
     {
       String n = String.valueOf(i + 1);
       String moudleparams = "{\"id\":\"1\",\"systemid\":\"\",\"ifTrue\":\"true\",\"createTime\":\"null\",\"moduleName\":\"" + moduleName[i] + "\",\"customid\":\"" + customid + "\",\"comFrom\":\"\",\"moduleid\":\"" + n + "\",\"expDate\":\"" + expDate + "\",\"license\":\"" + licensefile + "\"}";
       byte[] moudlekey = Signaturer.sign(prikey, moudleparams);
      String moudlelicense = new String(pubkey) + "|" + moudleparams + "|" + new String(moudlekey);
     String moudlelicensefile = PBECipher.PBEEncrypt(moudlelicense);
       byte[] out_buff = new byte[0];
       out_buff = moudlelicensefile.getBytes();
      FileOutputStream out_licensefileout = new FileOutputStream("C:\\Users\\landv\\Desktop\\landv"+"\\" + macAddr + "_" + moduleName[i] + ".license");
      out_licensefileout.write(out_buff, 0, out_buff.length);
       out_licensefileout.close();
     }
     
   }  
   
 }

 

雖然對java一臉懵逼,但是這好東西還是要轉(zhuǎn)載一下的;

以上內(nèi)容轉(zhuǎn)載于:https://landv.cn/2019/04/09/泛微云橋e-Bridge-授權(quán)破解方法/

李浩秦的博客:https://landv.cn

李浩秦CSDN的博客:https://www.cnblogs.com/landv/

以下代碼是李浩秦在2018年寫的;

package com.exec;
  
  import java.io.FileOutputStream;
  import java.text.ParseException;
import java.text.SimpleDateFormat;
  import javax.swing.JOptionPane;
  import java.util.Scanner;
 import ln.LN;
 import weaver.weixin.license.KeyGenerater;
 import weaver.weixin.license.PBECipher;
 import weaver.weixin.license.Signaturer;


public class EBRIDGE
{

  private static String companyName="landv測試";
   private static String userCount="1000";
   private static String expDate="2019-08-08";
   private static String macAddr;
   private static String cpCount="100";
   private static String mpCount="100";
   private static String ddCount="100";
   private static String customid="159357";
   private static String modulenamelist="微信工資單,微調(diào)研,微投票,懸賞招聘,微考勤,微名片,外出考勤";
   private static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
   
 /*
   private static String jlCount = "1";
   private static String lanxinCount = "1";
   private static String gzbCount = "1";
   private static String jdyzjCount = "1";
   private static String weworkCount = "1";
   private static String fxxkCount = "1";
   private static String emCount = "1";
 */
   
   
    public static void main(String[] args)
   {
         
     
     Scanner input=new Scanner(System.in);
   System.out.print("請您輸入識別碼:");
     EBRIDGE.macAddr=input.next();
      System.out.println(macAddr);
        try
        {
          EBRIDGE.createfile();
         }
         catch (Exception e1)
        {
          e1.printStackTrace();
         }
   }
   public static void createfile()
     throws Exception
  {
     String params = "companyName=" + companyName + ",userCount=" + userCount + ",expDate=" + expDate + ",macAddr=" + macAddr + 
       ",cpCount=" + cpCount + ",mpCount=" + mpCount + ",ddCount=" + ddCount + ",jlCount=" + ddCount +",lanxinCount=" + ddCount +",gzbCount=" + ddCount +",jdyzjCount=" + ddCount +",weworkCount=" + ddCount +",fxxkCount=" + ddCount +",emCount=" + ddCount +",customid=" + customid;
     KeyGenerater keys = new KeyGenerater();
    keys.generater(customid);
     byte[] pubkey = keys.getPubKey();
    byte[] prikey = keys.getPriKey();
     byte[] key = Signaturer.sign(prikey, params);
     String license = new String(pubkey) + "|" + params + "|" + new String(key);
     String licensefile = PBECipher.PBEEncrypt(license);
     byte[] buff = new byte[0];
   buff = licensefile.getBytes();
    FileOutputStream licensefileout = new FileOutputStream( "C:\\Users\\landv\\Desktop\\landv"+"\\" + macAddr + "_EBRIDGE.license");
     licensefileout.write(buff, 0, buff.length);
     licensefileout.close();
     
     String[] moduleName = modulenamelist.split("\\,");
    for (int i = 0; i < moduleName.length; i++)
     {
       String n = String.valueOf(i + 1);
       String moudleparams = "{\"id\":\"1\",\"systemid\":\"\",\"ifTrue\":\"true\",\"createTime\":\"null\",\"moduleName\":\"" + moduleName[i] + "\",\"customid\":\"" + customid + "\",\"comFrom\":\"\",\"moduleid\":\"" + n + "\",\"expDate\":\"" + expDate + "\",\"license\":\"" + licensefile + "\"}";
      byte[] moudlekey = Signaturer.sign(prikey, moudleparams);
       String moudlelicense = new String(pubkey) + "|" + moudleparams + "|" + new String(moudlekey);
       String moudlelicensefile = PBECipher.PBEEncrypt(moudlelicense);
       byte[] out_buff = new byte[0];
       out_buff = moudlelicensefile.getBytes();
       FileOutputStream out_licensefileout = new FileOutputStream("C:\\Users\\landv\\Desktop\\landv"+"\\" + macAddr + "_" + moduleName[i] + ".license");
       out_licensefileout.write(out_buff, 0, out_buff.length);
       out_licensefileout.close();
    }
     
   }  
   
 }

 

問題未解決?付費解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信

所寫所說,是心之所感,思之所悟,行之所得;文當(dāng)無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!

支付寶贊助
微信贊助

免責(zé)聲明,若由于商用引起版權(quán)糾紛,一切責(zé)任均由使用者承擔(dān)。

您必須遵守我們的協(xié)議,如您下載該資源,行為將被視為對《免責(zé)聲明》全部內(nèi)容的認(rèn)可->聯(lián)系老梁投訴資源
LaoLiang.Net部分資源來自互聯(lián)網(wǎng)收集,僅供用于學(xué)習(xí)和交流,請勿用于商業(yè)用途。如有侵權(quán)、不妥之處,請聯(lián)系站長并出示版權(quán)證明以便刪除。 敬請諒解! 侵權(quán)刪帖/違法舉報/投稿等事物聯(lián)系郵箱:service@laoliang.net
意在交流學(xué)習(xí),歡迎贊賞評論,如有謬誤,請聯(lián)系指正;轉(zhuǎn)載請注明出處: » 泛微云橋e-Bridge(EBRIDGE) 授權(quán)開心版方法(2019-04-09)

發(fā)表回復(fù)

本站承接,網(wǎng)站推廣(SEM,SEO);軟件安裝與調(diào)試;服務(wù)器或網(wǎng)絡(luò)推薦及配置;APP開發(fā)與維護(hù);網(wǎng)站開發(fā)修改及維護(hù); 各財務(wù)軟件安裝調(diào)試及注冊服務(wù)(金蝶,用友,管家婆,速達(dá),星宇等);同時也有客戶管理系統(tǒng),人力資源,超市POS,醫(yī)藥管理等;

立即查看 了解詳情