当前位置:   article > 正文

软件license设计_自研产品license码怎么做

自研产品license码怎么做

如何保护软件版权,最常用的办法就是设计一套license验证框架

1、我们的常规需求如下:

1.可以限制软件只能在一台机器上使用;

    目前很多软件都是一机一码的销售,软件换一台机器则不能使用,想要几台机器使用就得购买几个license;
2.可以设置一个使用期限;

    试用版软件一般有几十天的免费使用期,销售时也可以分为一年版、终生版等;

3.可以设置能使用的权限;

    试用版软件对处理能力有限制,比如短信发送软件设置发送条数限制,抽奖软件设置总人数限制,打印软件试用版插一个软件广告等等;

进一步分析如下:

试用版:无需License,安装后的默认版本;有使用期限;有功能限制或插入广告等;

有限期限版:需要License;有使用期限;无功能限制;

终身免费版:需要License;无限制;

一般破解的办法有以下几种:

1.试用版到期后修改系统时间;

2.试用版到期后找到license文件并修改或删除;

3.试用版到期后卸载软件,重新安装;

4.黑客直接反编译软件,屏蔽掉验证License的逻辑;

 

2、License结构设计

针对以上需求,我们来对应设计License的结构如下:

  1. using System;
  2. namespace LicenseDemo
  3. {
  4. /// <summary>
  5. /// License信息
  6. /// </summary>
  7. [Serializable]
  8. public class LicenseModel
  9. {
  10. //客户机器唯一识别码,由客户端生成
  11. public string CustomMachineCode { get; set; }
  12. //最后使用时间
  13. public DateTime LastUseTime { get; set; }
  14. //过期时间expire
  15. public DateTime ExpireTime { get; set; }
  16. //权限类型(如可分为 0: 15天试用版 1:1年版 2:终身版)
  17. public RoleType CustomRole { get; set; }
  18. }
  19. /// <summary>
  20. /// 几种角色类型
  21. /// </summary>
  22. [Serializable]
  23. public enum RoleType
  24. {
  25. /// <summary>
  26. /// 试用版
  27. /// </summary>
  28. Trial=0,
  29. /// <summary>
  30. /// 有期限版
  31. /// </summary>
  32. Expiration=1,
  33. /// <summary>
  34. /// 终身免费版
  35. /// </summary>
  36. Free=2
  37. }
  38. }

结构说明

为什么这样设计就可以基本达到要求呢?首先一机一码就要包含客户机器的唯一标识,可以通过获取机器硬件CPU、主板、Bios、Mac地址、显卡、声卡等的ID来生成;然后需要有个会员类型来区分是试用版、有限期限版还是永久免费版;过期时间是用来限制使用时间的,就不用多说;最后使用时间这个字段是为了防止用户通过修改系统时间,简单的跨过试用期限;当然我们业务层还可以加一下其他功能限制或广告来继续促成用户使用正版;

用户购买License后,这个license如何保存,试用版本的License如何保证即使用户卸载了软件重装,也依然不能改变试用时间。这就要保存好License,可以放到隐藏系统文件里面、注册表里面、远程服务器端,安全系数会依次提高;

具体采用什么方式也跟你的软件被什么客户群使用有关系,比如你的软件主要用于上市公司,那么你都不用担心盗版问题,上市公司自己会找你买正版,他得规避法律风险;你的license就可以放在明处,比如著名的图像算法处理软件Haclon,就是每个月发布一次试用版的License,你自己去放到自己的软件文件夹下面;如果你删掉他的license,那么软件直接打不开。

如果你的客户是C端个人用户,那么就得考虑法律罪责比较难的问题了,只能从加强自己的软件验证水平,防破解了;

然后设计一下License分发和验证的流程:

试用版的客户端,是不需要license的,软件第一次启动时先找一下本地是否有License,如果没有则默认生成一个试用版License,下次直接读取到的就是试用版License。后续用户购买正版License后可以在软件中重新激活正版License。

3、会使用到的一些工具类

生成客户机器码的工具类:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Management;
  6. using System.Security.Cryptography;
  7. namespace LicenseDemo
  8. {
  9. /// <summary>
  10. /// 硬件码生成器
  11. /// 作者博客:https://www.cnblogs.com/tuyile006/
  12. /// </summary>
  13. public class HardwareInfo
  14. {
  15. private static string myMachineCode = "";
  16. /// <summary>
  17. /// 生成一个16字节的机器唯一码
  18. /// 如: 4876-8DB5-EE85-69D3-FE52-8CF7-395D-2EA9
  19. /// </summary>
  20. /// <returns></returns>
  21. public static string GetMachineCode()
  22. {
  23. if (string.IsNullOrEmpty(myMachineCode))
  24. {
  25. string omsg = " CPU >> " + CpuId() + " BIOS >> " +
  26. BiosId() + " BASE >> " + BaseId();
  27. // + " DISK >> " + DiskId() + " VIDEO >> " +
  28. //VideoId() + " MAC >> " + MacId();
  29. myMachineCode = MD5(omsg);
  30. }
  31. return myMachineCode;
  32. }
  33. /// <summary>
  34. /// MD5哈希加密
  35. /// </summary>
  36. /// <param name="scr">原始string数据</param>
  37. /// <returns>加密后的数据</returns>
  38. private static string MD5(string scr)
  39. {
  40. MD5 md5 = new MD5CryptoServiceProvider();
  41. byte[] palindata = Encoding.Default.GetBytes(scr);//将要加密的字符串转换为字节数组
  42. byte[] encryptdata = md5.ComputeHash(palindata);//将字符串加密后也转换为字符数组
  43. return GetHexString(encryptdata);//将加密后的字节数组转换为加密字符串
  44. }
  45. /// <summary>
  46. /// byte[]转换成十六进制
  47. /// </summary>
  48. /// <param name="bt"></param>
  49. /// <returns></returns>
  50. private static string GetHexString(byte[] bt)
  51. {
  52. string s = string.Empty;
  53. for (int i = 0; i < bt.Length; i++)
  54. {
  55. byte b = bt[i];
  56. int n, n1, n2;
  57. n = (int)b;
  58. n1 = n & 15;
  59. n2 = (n >> 4) & 15;
  60. if (n2 > 9)
  61. s += ((char)(n2 - 10 + (int)'A')).ToString();
  62. else
  63. s += n2.ToString();
  64. if (n1 > 9)
  65. s += ((char)(n1 - 10 + (int)'A')).ToString();
  66. else
  67. s += n1.ToString();
  68. if ((i + 1) != bt.Length && (i + 1) % 2 == 0) s += "-";
  69. }
  70. return s;
  71. }
  72. public static string CpuId()
  73. {
  74. //Uses first CPU identifier available in order of preference
  75. //Don't get all identifiers, as it is very time consuming
  76. string retVal = identifier("Win32_Processor", "UniqueId");
  77. if (retVal == "") //If no UniqueID, use ProcessorID
  78. {
  79. retVal = identifier("Win32_Processor", "ProcessorId");
  80. if (retVal == "") //If no ProcessorId, use Name
  81. {
  82. retVal = identifier("Win32_Processor", "Name");
  83. if (retVal == "") //If no Name, use Manufacturer
  84. {
  85. retVal = identifier("Win32_Processor", "Manufacturer");
  86. }
  87. //Add clock speed for extra security
  88. retVal += identifier("Win32_Processor", "MaxClockSpeed");
  89. }
  90. }
  91. return retVal;
  92. }
  93. //BIOS Identifier
  94. public static string BiosId()
  95. {
  96. return identifier("Win32_BIOS", "Manufacturer")
  97. + identifier("Win32_BIOS", "SMBIOSBIOSVersion")
  98. + identifier("Win32_BIOS", "IdentificationCode")
  99. + identifier("Win32_BIOS", "SerialNumber")
  100. + identifier("Win32_BIOS", "ReleaseDate")
  101. + identifier("Win32_BIOS", "Version");
  102. }
  103. //Main physical hard drive ID
  104. public static string DiskId()
  105. {
  106. return identifier("Win32_DiskDrive", "Model")
  107. + identifier("Win32_DiskDrive", "Manufacturer")
  108. + identifier("Win32_DiskDrive", "Signature")
  109. + identifier("Win32_DiskDrive", "TotalHeads");
  110. }
  111. //Motherboard ID
  112. public static string BaseId()
  113. {
  114. return identifier("Win32_BaseBoard", "Model")
  115. + identifier("Win32_BaseBoard", "Manufacturer")
  116. + identifier("Win32_BaseBoard", "Name")
  117. + identifier("Win32_BaseBoard", "SerialNumber");
  118. }
  119. //Primary video controller ID
  120. public static string VideoId()
  121. {
  122. return identifier("Win32_VideoController", "DriverVersion")
  123. + identifier("Win32_VideoController", "Name");
  124. }
  125. //First enabled network card ID
  126. public static string MacId()
  127. {
  128. return identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled");
  129. }
  130. //Return a hardware identifier
  131. private static string identifier(string wmiClass, string wmiProperty, string wmiMustBeTrue)
  132. {
  133. string result = "";
  134. ManagementClass mc = new ManagementClass(wmiClass);
  135. ManagementObjectCollection moc = mc.GetInstances();
  136. foreach (ManagementObject mo in moc)
  137. {
  138. if (mo[wmiMustBeTrue].ToString() == "True")
  139. {
  140. //Only get the first one
  141. if (result == "")
  142. {
  143. try
  144. {
  145. result = mo[wmiProperty].ToString();
  146. break;
  147. }
  148. catch
  149. {
  150. }
  151. }
  152. }
  153. }
  154. return result;
  155. }
  156. //Return a hardware identifier
  157. private static string identifier(string wmiClass, string wmiProperty)
  158. {
  159. string result = "";
  160. ManagementClass mc = new ManagementClass(wmiClass);
  161. ManagementObjectCollection moc = mc.GetInstances();
  162. foreach (ManagementObject mo in moc)
  163. {
  164. //Only get the first one
  165. if (result == "")
  166. {
  167. try
  168. {
  169. result = mo[wmiProperty].ToString();
  170. break;
  171. }
  172. catch
  173. {
  174. }
  175. }
  176. }
  177. return result;
  178. }
  179. }
  180. }

说明:上面的HardwareInfo类就是帮助生成机器唯一信息的。实际运用中,mac地址、声卡网卡等容易变动,可以不加到信息里面。

对象序列化帮助工具:

  1. using System.IO;
  2. using System.Runtime.Serialization.Formatters.Binary;
  3. namespace LicenseDemo
  4. {
  5. /// <summary>
  6. /// 序列化工具类
  7. /// 作者博客:https://www.cnblogs.com/tuyile006/
  8. /// </summary>
  9. public class SerializeHelper
  10. {
  11. /// <summary>
  12. /// 将对象序列化为二进制数据
  13. /// </summary>
  14. /// <param name="obj"></param>
  15. /// <returns></returns>
  16. public static byte[] SerializeToBinary(object obj)
  17. {
  18. using (MemoryStream stream = new MemoryStream())
  19. {
  20. BinaryFormatter bf = new BinaryFormatter();
  21. bf.Serialize(stream, obj);
  22. byte[] data = stream.ToArray();
  23. stream.Close();
  24. return data;
  25. }
  26. }
  27. /// <summary>
  28. /// 将二进制数据反序列化
  29. /// </summary>
  30. /// <param name="data"></param>
  31. /// <returns></returns>
  32. public static object DeserializeWithBinary(byte[] data)
  33. {
  34. using (MemoryStream stream = new MemoryStream())
  35. {
  36. stream.Write(data, 0, data.Length);
  37. stream.Position = 0;
  38. BinaryFormatter bf = new BinaryFormatter();
  39. object obj = bf.Deserialize(stream);
  40. stream.Close();
  41. return obj;
  42. }
  43. }
  44. /// <summary>
  45. /// 将二进制数据反序列化为指定类型对象
  46. /// </summary>
  47. /// <typeparam name="T"></typeparam>
  48. /// <param name="data"></param>
  49. /// <returns></returns>
  50. public static T DeserializeWithBinary<T>(byte[] data)
  51. {
  52. return (T)DeserializeWithBinary(data);
  53. }
  54. }
  55. }

以及加解密工具:EncodeHelper    源码见我的另一篇文章:

常见加密算法简析

 注册表操作类:

  1. using Microsoft.Win32;
  2. namespace LicenseDemo
  3. {
  4. /// <summary>
  5. /// 注册表工件类
  6. /// 作者博客:https://www.cnblogs.com/tuyile006/
  7. /// </summary>
  8. public class RegistryHelper
  9. {
  10. //用于存储你软件信息的注册表菜单名
  11. public static string YourSoftName = "YourSoftName";
  12. /// <summary>
  13. /// 获取你软件下对应注册表键的值
  14. /// </summary>
  15. /// <param name="keyname">键名</param>
  16. /// <returns></returns>
  17. public static string GetRegistData(string keyname)
  18. {
  19. if (!IsYourSoftkeyExit()) return string.Empty;
  20. string registData;
  21. RegistryKey aimdir = Registry.LocalMachine.OpenSubKey("SOFTWARE\\"+ YourSoftName, RegistryKeyPermissionCheck.ReadWriteSubTree, System.Security.AccessControl.RegistryRights.FullControl);
  22. registData = aimdir.GetValue(keyname).ToString();
  23. return registData;
  24. }
  25. /// <summary>
  26. /// 向你的软件注册表菜单下添加键值
  27. /// </summary>
  28. /// <param name="keyname">键名</param>
  29. /// <param name="keyvalue">值</param>
  30. public static void WriteRegedit(string keyname, string keyvalue)
  31. {
  32. RegistryKey software = Registry.LocalMachine.OpenSubKey("SOFTWARE", RegistryKeyPermissionCheck.ReadWriteSubTree, System.Security.AccessControl.RegistryRights.FullControl);
  33. RegistryKey aimdir ;
  34. if (!IsYourSoftkeyExit()) //不存在则创建
  35. {
  36. aimdir = software.CreateSubKey(YourSoftName);
  37. }
  38. else //存在则open
  39. {
  40. aimdir = software.OpenSubKey(YourSoftName, true);
  41. }
  42. aimdir.SetValue(keyname, keyvalue,RegistryValueKind.String);
  43. aimdir.Close();
  44. }
  45. /// <summary>
  46. /// 删除你软件注册表菜单下的键值
  47. /// </summary>
  48. /// <param name="keyname">键名</param>
  49. public static void DeleteRegist(string keyname)
  50. {
  51. if (!IsYourSoftkeyExit()) return;
  52. string[] aimnames;
  53. RegistryKey aimdir = Registry.LocalMachine.OpenSubKey("SOFTWARE\\" + YourSoftName, RegistryKeyPermissionCheck.ReadWriteSubTree, System.Security.AccessControl.RegistryRights.FullControl);
  54. aimnames = aimdir.GetValueNames();
  55. foreach (string aimKey in aimnames)
  56. {
  57. if (aimKey == keyname)
  58. aimdir.DeleteValue(keyname);
  59. }
  60. aimdir.Close();
  61. }
  62. /// <summary>
  63. /// 判断你软件注册表菜单下键是否存在
  64. /// </summary>
  65. /// <param name="keyname">键名</param>
  66. /// <returns></returns>
  67. public static bool IsRegeditExit(string keyname)
  68. {
  69. if (!IsYourSoftkeyExit()) return false;
  70. string[] subkeyNames;
  71. RegistryKey aimdir = Registry.LocalMachine.OpenSubKey("SOFTWARE\\"+ YourSoftName, RegistryKeyPermissionCheck.ReadWriteSubTree, System.Security.AccessControl.RegistryRights.FullControl);
  72. subkeyNames = aimdir.GetValueNames();// GetSubKeyNames();
  73. foreach (string kn in subkeyNames)
  74. {
  75. if (kn == keyname)
  76. {
  77. Registry.LocalMachine.Close();
  78. return true;
  79. }
  80. }
  81. return false;
  82. }
  83. /// <summary>
  84. /// 删除你软件的注册表项
  85. /// </summary>
  86. public static void DeleteYourSoftKey()
  87. {
  88. Registry.LocalMachine.DeleteSubKeyTree("SOFTWARE\\" + YourSoftName);
  89. Registry.LocalMachine.Close();
  90. }
  91. /// <summary>
  92. /// 判断你软件的键是否存在
  93. /// </summary>
  94. /// <returns></returns>
  95. private static bool IsYourSoftkeyExit()
  96. {
  97. using (RegistryKey yourSoftkey = Registry.LocalMachine.OpenSubKey("SOFTWARE\\" + YourSoftName, RegistryKeyPermissionCheck.ReadWriteSubTree, System.Security.AccessControl.RegistryRights.FullControl))
  98. {
  99. return yourSoftkey != null;
  100. }
  101. }
  102. }
  103. }

注册表操作需要用到管理员权限,否则会提示无权限操作注册表。解决办法是在项目中添加“app.manifest"文件

并修改manifest中的如下部分。

 

 其实存到注册表依然不是好办法,最好还是将用户 license保存到服务端,用从服务端请求的方式。或者两者结合,有网络的时候进行网络验证。

最后的License管理器:

  1. using System;
  2. namespace LicenseDemo
  3. {
  4. /// <summary>
  5. /// License管理器
  6. /// 作者博客:https://www.cnblogs.com/tuyile006/
  7. /// </summary>
  8. public class LicenseManage
  9. {
  10. /// <summary>
  11. /// 当前程序的license 业务层需配合控制权限
  12. /// </summary>
  13. public static LicenseModel ApplicationLicense = null;
  14. /// <summary>
  15. /// 提取客户机器信息,返回编码
  16. /// </summary>
  17. /// <returns></returns>
  18. public static string GetMachineCode()
  19. {
  20. return HardwareInfo.GetMachineCode();
  21. }
  22. private const string regeditkey = "lic";//注册表键名
  23. private const string aeskey = "小y加;&tu@"; //密钥
  24. /// <summary>
  25. /// 服务端生成License文本 可授权给客户
  26. /// </summary>
  27. /// <param name="lic">LicenseModel对象,由客户提供机器码,并由商业提供期限和权限角色</param>
  28. /// <returns></returns>
  29. public static string CreateLicenseString(LicenseModel lic)
  30. {
  31. byte[] licByte = SerializeHelper.SerializeToBinary(lic);
  32. return EncodeHelper.AES(Convert.ToBase64String(licByte), aeskey);
  33. }
  34. /// <summary>
  35. /// 客户端获取本地的license 根据自己设计的存储介质,可以是从文件中取、也可以是注册表或远程服务器上取。
  36. /// </summary>
  37. /// <returns></returns>
  38. public static LicenseModel GetLicense()
  39. {
  40. if (LicenseManage.ApplicationLicense != null) return LicenseManage.ApplicationLicense;
  41. try
  42. {
  43. //如果以前装过,则从注册表取值 这里可以改成从数据库、文件、或服务端
  44. //未取到键则建一个
  45. if (!RegistryHelper.IsRegeditExit(regeditkey))
  46. {
  47. //第一次使用默认是试用版
  48. LicenseModel license = new LicenseModel()
  49. {
  50. CustomMachineCode = GetMachineCode(),
  51. CustomRole = RoleType.Trial,
  52. LastUseTime=DateTime.Now,
  53. ExpireTime = DateTime.Now.AddDays(30)
  54. };
  55. RegistryHelper.WriteRegedit(regeditkey, CreateLicenseString(license));
  56. LicenseManage.ApplicationLicense = license;
  57. }
  58. else
  59. {
  60. string licFromReg = RegistryHelper.GetRegistData(regeditkey);
  61. try
  62. {
  63. string strlic = EncodeHelper.AESDecrypt(licFromReg, aeskey);
  64. byte[] licbyte = Convert.FromBase64String(strlic);
  65. LicenseModel lm = SerializeHelper.DeserializeWithBinary<LicenseModel>(licbyte);
  66. //取到的值还原license并返回
  67. LicenseManage.ApplicationLicense = lm;
  68. }
  69. catch(Exception ex1)
  70. {
  71. //_log.Error(ex1);
  72. //如果从注册表中取到的值发现被篡改,则直接试用版到期,不给使用。
  73. LicenseModel licenseErr = new LicenseModel()
  74. {
  75. CustomMachineCode = GetMachineCode(),
  76. CustomRole = RoleType.Trial,
  77. LastUseTime = DateTime.Now,
  78. ExpireTime = DateTime.Now
  79. };
  80. }
  81. }
  82. }
  83. catch(Exception ex)
  84. {
  85. //_log.Error(ex);
  86. }
  87. return LicenseManage.ApplicationLicense;
  88. }
  89. /// <summary>
  90. /// 客户端验证License,存储
  91. /// </summary>
  92. /// <param name="lic">服务端授权给客户的License密文</param>
  93. /// <returns></returns>
  94. public static bool VerifyLicense(string lic)
  95. {
  96. if(string.IsNullOrEmpty(lic)) return false;
  97. try
  98. {
  99. string strlic = EncodeHelper.AESDecrypt(lic, aeskey);
  100. byte[] licbyte = Convert.FromBase64String(strlic);
  101. LicenseModel lm = SerializeHelper.DeserializeWithBinary<LicenseModel>(licbyte);
  102. //简单验证机器码、role、期限。具体角色权限限制需要在业务系统中实现。
  103. if (VerifyLicense(lm))
  104. {
  105. LicenseManage.ApplicationLicense = lm;
  106. return true;
  107. }
  108. }
  109. catch
  110. {
  111. //_log.Error(ex);
  112. }
  113. //否则直接返回原始试用版
  114. return false;
  115. }
  116. /// <summary>
  117. /// 简单验证licensemode对象是否合法,不存储
  118. /// </summary>
  119. /// <param name="licmod"></param>
  120. /// <returns></returns>
  121. public static bool VerifyLicense(LicenseModel licmod)
  122. {
  123. //简单验证机器码、role、期限。具体角色权限限制需要在业务系统中实现。
  124. bool isHaveRight = false;
  125. if (licmod.CustomMachineCode == GetMachineCode())
  126. {
  127. if (licmod.CustomRole == RoleType.Free)
  128. {
  129. isHaveRight = true;
  130. }
  131. else if (licmod.LastUseTime < DateTime.Now && licmod.ExpireTime > DateTime.Now)
  132. {
  133. isHaveRight = true;
  134. }
  135. }
  136. if (isHaveRight)
  137. {
  138. licmod.LastUseTime = DateTime.Now;
  139. RegistryHelper.WriteRegedit(regeditkey, CreateLicenseString(licmod));
  140. }
  141. return isHaveRight;
  142. }
  143. public static void DeleteLicense()
  144. {
  145. RegistryHelper.DeleteRegist(regeditkey);
  146. LicenseManage.ApplicationLicense = null;
  147. }
  148. }
  149. }

管理器的使用Demo如下:

 

Demo下载

做好了License架构,是不是软件版权保护就完成了呢?答案是否定的。现在我们已经造了银行保险柜的门,却只有篱笆一样容易攻破的墙,黑客直接反编译你的软件,去掉权限验证的逻辑再重新编译,就可以终身永久免费使用你的劳动成果,所以不加密的软件在黑客眼里就像在裸奔。混淆、加壳是另一个更加复杂的技术,下面介绍几款混淆工具。

4.混淆工具介绍:

Eziriz .NET Reactor:

主要功能包括:NecroBit IL(转为非托管代码)、反 ILDASM(反编译器)、混淆代码、合并、压缩源码、支持命令行等,支持所有 .NET 框架和几乎所有开发语言,如 C#、C++.NET、VB.NET、Delphi.NET、J# 等等。

 使用教程:https://blog.csdn.net/jyxyscf/article/details/78478631

ConfuserEx:

是一款开源.net混淆器。

使用教程:https://www.cnblogs.com/tuyile006/p/8461326.html

Dotfuscator:

这款大家应该比较熟悉了,官方自带的。

使用教程:https://www.cnblogs.com/tuyile006/p/9183925.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/663788
推荐阅读
相关标签
  

闽ICP备14008679号