首页 > 其他分享 >修复snakeyaml漏洞,与maven打包二三事

修复snakeyaml漏洞,与maven打包二三事

时间:2024-12-02 18:55:39浏览次数:11  
标签:plugin snakeyaml boot jar 二三 maven org

1.背景

snakeyaml:1.33被扫描出漏洞,需要升级版本;

升级版本后发现与spring-boot-nacos-starter依赖的snakeyaml不兼容;

java.lang.NoSuchMethodError: org.yaml.snakeyaml.constructor.Constructor: method <init>()V not found

参照网上的方法重写几个类以及无参构造函数,成功解决问题;

但是有个应用是依赖的jar包单独打包的,就导致无法载入自己重写的snakeyaml的类。

 

2.原始pom.xml

<?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>xdd</artifactId>
        <groupId>com.pcl.pero</groupId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>
    <modelVersion>1.0.0</modelVersion>

    <artifactId>pcl-pero</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.alibaba.boot</groupId>
            <artifactId>nacos-config-spring-boot-starter</artifactId>
            <version>0.3.0-RC</version>
        </dependency>


    </dependencies>

    <build>
        <finalName>pcl-pero</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <!--指定的依赖路径-->
                            <outputDirectory>
                                ${project.build.directory}/lib
                            </outputDirectory>
                            <excludeGroupIds>
                                org.projectlombok
                            </excludeGroupIds>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <!--addClasspath表示需要加入到类构建路径-->
                            <addClasspath>true</addClasspath>
                            <!--classpathPrefix指定生成的Manifest文件中Class-Path依赖lib前面都加上路径,构建出lib/xx.jar-->
                            <classpathPrefix>lib/</classpathPrefix>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <layout>ZIP</layout>
                    <includes>
                        <include>
                            <groupId>${groupId}</groupId>
                            <artifactId>${artifactId}</artifactId>
                        </include>
                    </includes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

 

3.如何修复

主要思想就是自己打一个修改好代码的jar包,打包的时候再引用这个jar包

1.使用maven-dependency-plugin的unpack将重写的方法覆盖jar包里方法,并解压到${project.build.directory}/classes路径,后续可以注释掉
2.去${project.build.directory}/classes下打包新jar包,jar cvf snakeyaml-2.2.jar ./org
3.把新打包的jar包添加进来,参考https://www.cnblogs.com/wdgde/p/16541641.html
4.exclusion排除依赖
5.maven-jar-plugin配置manifestEntries,手动添加lib/snakeyaml-2.2.jar

 

4.修改后的pom.xml

<?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>xdd</artifactId>
        <groupId>com.pcl.pero</groupId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>
    <modelVersion>1.0.0</modelVersion>

    <artifactId>pcl-pero</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.alibaba.boot</groupId>
            <artifactId>nacos-config-spring-boot-starter</artifactId>
            <version>0.3.0-RC</version>
            <exclusions>
                <exclusion>
                    <groupId>org.yaml</groupId>
                    <artifactId>snakeyaml</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
            <version>2.2</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/snakeyaml-2.2.jar</systemPath>
        </dependency>

    </dependencies>

    <build>
        <finalName>pcl-pero</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>unpack</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>org.yaml</groupId>
                                    <artifactId>snakeyaml</artifactId>
                                    <overWrite>false</overWrite>
                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <!--指定的依赖路径-->
                            <outputDirectory>
                                ${project.build.directory}/lib
                            </outputDirectory>
                            <excludeGroupIds>
                                org.projectlombok
                            </excludeGroupIds>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <!--addClasspath表示需要加入到类构建路径-->
                            <addClasspath>true</addClasspath>
                            <!--classpathPrefix指定生成的Manifest文件中Class-Path依赖lib前面都加上路径,构建出lib/xx.jar-->
                            <classpathPrefix>lib/</classpathPrefix>
                        </manifest>
                        <manifestEntries>
                            <Class-Path>lib/snakeyaml-2.2.jar</Class-Path>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <layout>ZIP</layout>
                    <includes>
                        <include>
                            <groupId>${groupId}</groupId>
                            <artifactId>${artifactId}</artifactId>
                        </include>
                    </includes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

 

标签:plugin,snakeyaml,boot,jar,二三,maven,org
From: https://www.cnblogs.com/wdgde/p/18582481

相关文章

  • Failed to execute goal org.apache.maven.pluginsmaven-compiler-plugin3.8.1compile
    1.报错信息Failedtoexecutegoalorg.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile(default-compile)onprojectrepair-wheelset-service:FatalerrorcompilingFailedtoexecutegoalorg.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile(de......
  • maven的依赖传递,没有在pom文件中引入mybatis却可以用
    前言没有在pom文件中引入mybatis却可以用,是maven的依赖传递导致的这种奇怪现象~一般是引用其它的依赖,这个依赖里面引用了你需要的其他依赖。记录一下具体的查看方法。没有在pom文件中引入mybatis却可以用前言1具体问题2问题原因3排查方案4原理分析1具体问题......
  • Maven 依赖的 Scope 元素
    原文(简单修改):Maven依赖中的Scope详解scope元素的作用:控制dependency元素的使用范围。通俗的讲,就是控制jar包在哪些范围被加载和使用。compile(默认)compile是默认值,如果没有指定scope值,该依赖的scope为compile。被依赖项目需要参与到当前项目的编译,测试,打包,运行......
  • win10 ==>一步步 执行 mysql8 + jdk21 + maven 安装即配置
    ============================= mysql8 ================================================官网:https://dev.mysql.com/downloads/mysql/选择版本为8+ LTS版本 下载ZIP压缩包  如下图 点击download后,不用登录 点击  Nothanks,juststartmydownloa......
  • Z2400036 Java+Maven+MySQL+SSM的个人博客系统 代码 文档 PPT
    个人博客系统1.项目概述2.系统功能3.运行环境4.界面展示5.源码获取1.项目概述本博客系统基于SSM(Spring+SpringMVC+MyBatis)框架开发,旨在提供一个功能全面、操作便捷的博客管理平台。系统涵盖了文章发布、评论管理、用户管理以及后台管理等多个模块,满足个人或小......
  • 把ojdbc7加入到本地maven仓库
    问题测试项目用到了  ojdbc7的12.2.0.1这个版本,在阿里云的仓库没有找到<dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc7</artifactId> <version>12.2.0.1</version></dependency>解决过程去mvnrepository也没有找到对应的版本https://......
  • Since Maven 3.8.1 http repositories are blocked.
    SinceMaven3.8.1httprepositoriesareblocked.SinceMaven3.8.1httprepositoriesareblocked.Possiblesolutions:-CheckthatMavensettings.xmldoesnotcontainhttprepositories-CheckthatMavenpomfilesdonotcontainhttprepositoryhttp://mv......
  • IDEA设置默认Maven(使用idea maven archetype创建项目时,项目创建慢或者不完整,缺失部
    问题描述每次创建新项目时,Maven都需要手动指定本地的Maven,即使在"Settingsfornewproject"中设置Maven,依然无济于事,同时在使用maven创建项目时,指定了archetype时,也会因为没有使用自己本地maven导致创建的项目不完整(缺少src目录)解决步骤1.关闭项目,点击File->Close......
  • Maven 下载 安装 配置
    Maven下载安装配置1.Maven安装与配置1.1安装Maven1.1.1下载Maven访问Maven官方网站。下载最新的Maven压缩包(如apache-maven-3.x.x-bin.zip)。在此之前,我下载了多个版本的IntelliJIDEA,为了应对IntelliJIDEA和Maven版本频繁更新带来的兼容性问题,我......
  • 2024春季班《安卓高级研修班(网课)》月薪一二三万计划
    网课学习的好处有哪些课程地址https://pan.baidu.com/s/1GIsMJ9BGgjgbJCrsVNDi6A?pwd=2q491、学生学习自主性强:当学生在面对电脑时,会有一种自己未来掌握在自己手中的感觉,所有的操作完全由自己掌控,真正发挥学习的主观能动性。2、学生非限性学习:网络学习的学生不受年龄的限制,同......