如何修复 Application Insights 下的 Aqua Scanner 报告中的 Netty-Handler 冲突How to fix the netty-handler violation from Aqua Scanner Report under Application Insights

how to fix the netty-handler violation from aqua scanner report under application insights

提问人:mehala smd 提问时间:11/15/2023 更新时间:11/15/2023 访问量:7

问:

我面临着 maven 项目的 aqua 扫描程序报告中的 netty 处理程序冲突,其中父路径显示为 /applicationinsights-agent.jar。不建议修复版本,

为了解决这个问题,我从pom.xml文件中的applicationinsights-agent maven依赖项中排除了netty-handler

  <dependency>
       <groupId>com.microsoft.azure</groupId>
       <artifactId>applicationinsights-agent</artifactId>
       <version>${applicationinsights-agent.version}</version>  (*I added the latest version 3.4.18*)
       <exclusions>
           <exclusion>
               <groupId>io.netty</groupId>
               <artifactId>netty-handler</artifactId>
           </exclusion>
       </exclusions>
   </dependency>

但这不是解决问题,而是寻找解决方案

java maven 安全性 netty maven-dependency-plugin

评论


答: 暂无答案