gpt4 book ai didi

Android CVE 检查

转载 作者:行者123 更新时间:2023-11-30 05:05:32 27 4
gpt4 key购买 nike

我想解决我项目中的每个 CVE 问题。我正在使用 org.owasp.dependencycheck 插件,但即使在一个空项目上它也返回几个 CVE:

bcprov-jdk15on-1.56.jar: ids:(org.bouncycastle:bcprov-jdk15on:1.56, cpe:/a:bouncycastle:legion-of-the-bouncy-castle-java-crytography-api:1.56) : CVE-2017-13098, CVE-2018-1000180, CVE-2018-1000613
builder-3.3.1.jar: desugar_deploy.jar: ids:(com.google.guava:guava:21.0, cpe:/a:google:guava:21.0) : CVE-2018-10237
intellij-core-26.3.1.jar (shaded: com.google.protobuf:protobuf-java:2.6.1): ids:(cpe:/a:google:protobuf:2.6.1, com.google.protobuf:protobuf-java:2.6.1) : CVE-2015-5237
intellij-core-26.3.1.jar (shaded: org.picocontainer:picocontainer:1.2): ids:(org.picocontainer:picocontainer:1.2, cpe:/a:site_documentation_project:site_documentation:1.2) : CVE-2015-4370

此结果来自空项目。我的build.gradle:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'org.owasp.dependencycheck'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.testcve"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencyCheck {
failBuildOnCVSS 0
}

check.dependsOn dependencyCheckAnalyze

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

和:

buildscript {
ext.kotlin_version = '1.3.21'
repositories {
google()
jcenter()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.owasp:dependency-check-gradle:4.0.0"
}
}

allprojects {
repositories {
google()
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

一切都是最新的。

有什么解决这些 CVE 的想法吗?

最佳答案

所以 Carsten 的回答是绝对正确的,但它没有解释如何在 CI 构建中处理这个问题。

您有两个选项都有效。您可以从依赖项检查中排除 lintClassPath,或者将 releaseCompileClasspath 定义为要检查的唯一模块配置。我推荐第一个,因为如果碰巧添加了额外的模块配置,您可能想要检查它们(或者您还想检查调试/测试类路径)。

排除lintClassPath

每个模块(例如您的 app/build.gradle):

// ... android and dependency configuration omitted
apply plugin: 'org.owasp.dependencycheck'
// ...

dependencyCheck {
skipConfigurations += 'lintClassPath'
}

对于所有模块(在根 build.gradle 中):

// ... buildscript, etc. omitted
allprojects {

// ... repository configuration omitted
apply plugin: 'org.owasp.dependencycheck'

dependencyCheck {
skipConfigurations += 'lintClassPath'
}
}

仅包含releaseCompilepath

简单地将 skipConfigurations += 'lintClassPath' 替换为 scanConfigurations += 'releaseCompileClasspath'。仅供引用,这些选项相互排斥,因此您只能选择其中一种方法。

关于Android CVE 检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54653400/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com