Browse Source

1.移除无用模块

胡荣基 4 months ago
parent
commit
97ea6ee6c0

File diff suppressed because it is too large
+ 1 - 1
certificate/licence.txt


BIN
licence/client-offline/lib/core-licence-1.0.0.RELEASE.jar


+ 28 - 0
licence/client-offline/pom.xml

@@ -44,6 +44,34 @@
                     <includeSystemScope>true</includeSystemScope>
                 </configuration>
             </plugin>
+            <plugin>
+                <!--
+                    1. 加密后,方法体被清空,保留方法参数、注解等信息.主要兼容swagger文档注解扫描
+                    2. 方法体被清空后,反编译只能看到方法名和注解,看不到方法体的具体内容
+                    3. 加密后的项目需要设置javaagent来启动,启动过程中解密class,完全内存解密,不留下任何解密后的文件
+                    4. 启动加密后的jar,生成xxx-encrypted.jar,这个就是加密后的jar文件,加密后不可直接执行
+                    5. 无密码启动方式,java -javaagent:xxx-encrypted.jar -jar xxx-encrypted.jar
+                    6. 有密码启动方式,java -javaagent:xxx-encrypted.jar='-pwd= 密码' -jar xxx-encrypted.jar
+                -->
+                <groupId>net.roseboy</groupId>
+                <artifactId>classfinal-maven-plugin</artifactId>
+                <version>1.2.1</version>
+                <configuration>
+                    <password>123456</password><!-- #表示启动时不需要密码,事实上对于代码混淆来说,这个密码没什么用,它只是一个启动密码 -->
+                    <excludes>org.spring</excludes>
+                    <packages>${groupId}</packages><!-- 加密的包名,多个包用逗号分开 -->
+                    <cfgfiles>application.yml,application-dev.yml</cfgfiles><!-- 加密的配置文件,多个包用逗号分开 -->
+                    <libjars>core-licence-1.0.0.RELEASE.jar</libjars> <!-- jar包lib下面要加密的jar依赖文件,多个包用逗号分开 -->
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>classFinal</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 

+ 0 - 40
licence/client/pom.xml

@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-    <parent>
-        <artifactId>licence</artifactId>
-        <groupId>com.shcd</groupId>
-        <version>1.0.0.RELEASE</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <description>客户端</description>
-    <artifactId>client</artifactId>
-
-    <properties>
-        <maven.compiler.source>8</maven.compiler.source>
-        <maven.compiler.target>8</maven.compiler.target>
-    </properties>
-
-    <dependencies>
-        <!-- core 包的依赖 -->
-        <dependency>
-            <groupId>com.shcd</groupId>
-            <artifactId>core</artifactId>
-            <version>1.0.0.RELEASE</version>
-            <scope>compile</scope>
-        </dependency>
-    </dependencies>
-
-    <!-- 构建 -->
-    <build>
-        <plugins>
-            <!-- 打包插件 -->
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </build>
-
-</project>

+ 0 - 35
licence/client/src/main/java/com/shcd/ClientApplication.java

@@ -1,35 +0,0 @@
-package com.shcd;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-/**
- * @author 上海城地
- * @description 启动类
- * @create 2024-04-13 15:55
- * @since 1.0.0
- */
-@SpringBootApplication
-public class ClientApplication {
-
-    public static void main(String[] args) {
-        SpringApplication.run(ClientApplication.class,args);
-        System.out.println(
-                "`--------------------------`()'--------------------------'               \n" +
-                        "                            ||                                           \n" +
-                        "                         __ ||                                        __ \n" +
-                        "                         ] ****---...._                             .' / \n" +
-                        "                   _,-***==============`--.                       .'/)/  \n" +
-                        "                 ,' ) ,--. .-----.         `.___________________.' ///_  \n" +
-                        "               .'  / /___| |_____|                      _______  ()  _> \n" +
-                        "              /   / /____| |__|__|             ,----****       `//  \\   \n" +
-                        "            .<`=='===========================.'                 (/`.  \\  \n" +
-                        "           (  `.----------------------------/                       `._\\ \n" +
-                        "            `-._\\_       成功起飞!   ____...--'                             \n" +
-                        "                  ***--666--'***666*                                       \n" +
-                        "                  .____//______//___,                                     \n" +
-                        "                 `-----------------'  "
-        );
-    }
-
-}

+ 0 - 30
licence/client/src/main/java/com/shcd/controller/LicenceController.java

@@ -1,30 +0,0 @@
-package com.shcd.controller;
-
-import com.shcd.annotation.CheckLicence;
-import com.shcd.util.CallResult;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-/**
- * @author 上海城地
- * @description 业务层
- * @create 2024-04-13 15:55
- * @since 1.0.0
- */
-@RestController
-@RequestMapping("/client/licence")
-public class LicenceController {
-
-    @GetMapping("/hello")
-    public CallResult hello() {
-        return CallResult.success("证书验证通过!If you can see this message, it means your licence is effective.");
-    }
-
-    @GetMapping("/check")
-    @CheckLicence//增加注解
-    public CallResult check(){
-        return CallResult.success("证书验证通过!If you can see this message, it means your licence is effective.");
-    }
-
-}

+ 0 - 7
licence/client/src/main/resources/application.yml

@@ -1,7 +0,0 @@
-server:
-  port: 8000
-
-# licence 配置
-licence:
-  # 全量校验标识,默认 true=全部都校验,false=部分校验(如果为 false,只需要在校验的 controller 加注解 @CheckLicence。不加则不校验)
-  checkAll: true

+ 5 - 1
licence/core/pom.xml

@@ -18,7 +18,11 @@
     </properties>
 
     <dependencies>
-
+        <!-- web支持 -->
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
     </dependencies>
 
 </project>

+ 2 - 1
licence/core/src/main/java/com/shcd/service/impl/LicenceCheckServiceImpl.java

@@ -96,7 +96,8 @@ public class LicenceCheckServiceImpl implements LicenceCheckService {
 
             // 判断服务jar包是否被修改过
             if (null != decryptEntity.getBusinessJarHash() && !decryptEntity.getBusinessJarHash().isEmpty()) {
-                String curryHash = calculateSHA256(decryptEntity.getBusinessJarPath());
+                // 这里要将hash转大写 证书内全部按照统一大写生成的证书
+                String curryHash = calculateSHA256(decryptEntity.getBusinessJarPath()).toUpperCase();
 
                 if (!curryHash.equals(decryptEntity.getBusinessJarHash())) {
                     LicenceInterceptor.licenceEnum = LicenceEnum.SERIAL_MODIFICATION;

+ 0 - 1
licence/pom.xml

@@ -10,7 +10,6 @@
     <version>1.0.0.RELEASE</version>
     <description>licence许可证书</description>
     <modules>
-        <module>client</module>
         <module>server</module>
         <module>core</module>
         <module>client-offline</module>

+ 9 - 5
licence/server/src/main/java/com/shcd/controller/ServerController.java

@@ -3,7 +3,9 @@ package com.shcd.controller;
 import com.shcd.entity.LicenceEntity;
 import com.shcd.service.LicenceService;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
 
 import javax.servlet.http.HttpServletResponse;
 import java.util.UUID;
@@ -24,24 +26,26 @@ public class ServerController {
     /**
      * 下载证书文件
      * 实际项目可以根据前端传递的参数来创建证书字段属性。这里为了测试,直接写测试数据
+     *
      * @param response
      */
     @PostMapping("/downLoadLicence")
-    public void downLoadLicence(HttpServletResponse response){
+    public void downLoadLicence(HttpServletResponse response) {
         LicenceEntity dtoEntity = createEntity();
         licenceService.downLoadLicence(dtoEntity, response);
     }
 
     /**
      * 创建测试实体
+     *
      * @return
      */
-    private LicenceEntity createEntity(){
+    private LicenceEntity createEntity() {
         LicenceEntity entity = new LicenceEntity();
         entity.setLicenceId(UUID.randomUUID().toString().replaceAll("-", ""));//证书 ID
         entity.setLicenceName("城地数据归集治理测产品软件");//证书名称
-        entity.setBusinessJarHash("6D1E3B782609B70C24C27D23239D26EDE64E1CA922751BF3AD13CDE24534B494"); // 要么留空 要么输入业务jar的hash
-        entity.setBusinessJarPath("C:\\Users\\胡荣基\\Desktop\\dcc-admin-catalog.jar"); // 要么留空 要么输入业务jar的hash
+        entity.setBusinessJarHash("0BB4742D7F1A7DD69EDE815897359432169BB1E90CF14F4FEDF3517E798415FF"); // 要么留空 要么输入业务jar的hash
+        entity.setBusinessJarPath("C:\\Users\\胡荣基\\Desktop\\client-offline-1.0.0.RELEASE-encrypted.jar"); // 要么留空 要么输入业务jar的hash
         entity.setMac(null);//客户端机器的网卡物理地址,要么留空,要么输入客户端的 Mac 地址
         entity.setEffectStartDate("2024-11-14");//证书生效开始日期,格式:yyyy-MM-dd
         entity.setEffectEndDate("2024-12-15");//证书生效结束日期,格式:yyyy-MM-dd