-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add dependency check plugin * Add support for owasp dependency check * Exclude dependency-check-suppression.xml * Fix shellcheck errors * More shellcheck fixes * One more shellcheck fix
- Loading branch information
Showing
4 changed files
with
108 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
<!-- For information see https://jeremylong.github.io/DependencyCheck/general/suppression.html --> | ||
|
||
|
||
<!-- | ||
These are FPs. | ||
See https://github.com/jeremylong/DependencyCheck/issues/5973 | ||
--> | ||
<suppress> | ||
<packageUrl regex="true">^pkg:maven/org\.codehaus\.plexus/plexus\-(cipher|classworlds|component-annotations|interpolation|container-default|sec-dispatcher)@.*$</packageUrl> | ||
<cve>CVE-2022-4244</cve> | ||
<cve>CVE-2022-4245</cve> | ||
</suppress> | ||
|
||
|
||
</suppressions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#!/bin/bash -e | ||
# | ||
# Copyright (c) 2020, 2024 Oracle and/or its affiliates. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
set -o pipefail || true # trace ERR through pipes | ||
set -o errtrace || true # trace ERR through commands and functions | ||
set -o errexit || true # exit the script if any statement returns a non-true return value | ||
|
||
# Path to this script | ||
if [ -h "${0}" ] ; then | ||
SCRIPT_PATH="$(readlink "${0}")" | ||
else | ||
# shellcheck disable=SC155 | ||
SCRIPT_PATH="${0}" | ||
fi | ||
readonly SCRIPT_PATH | ||
|
||
# Path to the root of the workspace | ||
# shellcheck disable=SC2046 | ||
WS_DIR=$(cd $(dirname -- "${SCRIPT_PATH}") ; cd ../.. ; pwd -P) | ||
|
||
on_error(){ | ||
CODE="${?}" && \ | ||
set +x && \ | ||
printf "[ERROR] Error(code=%s) occurred at %s:%s command: %s\n" \ | ||
"${CODE}" "${BASH_SOURCE[0]}" "${LINENO}" "${BASH_COMMAND}" | ||
} | ||
trap on_error ERR | ||
|
||
RESULT_FILE=$(mktemp -t XXXdependency-check-result) | ||
readonly RESULT_FILE | ||
|
||
die() { cat "${RESULT_FILE}" ; echo "Dependency report in ${WS_DIR}/target" ; echo "${1}" ; exit 1 ;} | ||
|
||
if [ "${PIPELINE}" = "true" ] ; then | ||
# If in pipeline do a priming build before scan | ||
# shellcheck disable=SC2086 | ||
mvn ${MAVEN_ARGS} -f "${WS_DIR}"/pom.xml clean install -DskipTests | ||
fi | ||
|
||
# Setting NVD_API_KEY is not required but improves behavior of NVD API throttling | ||
|
||
# shellcheck disable=SC2086 | ||
mvn ${MAVEN_ARGS} -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN org.owasp:dependency-check-maven:aggregate \ | ||
-f "${WS_DIR}"/pom.xml \ | ||
-Dtop.parent.basedir="${WS_DIR}" \ | ||
-Dnvd-api-key="${NVD_API_KEY}" \ | ||
> "${RESULT_FILE}" || die "Error running the Maven command" | ||
|
||
grep -i "One or more dependencies were identified with known vulnerabilities" "${RESULT_FILE}" \ | ||
&& die "CVE SCAN ERROR" || echo "CVE SCAN OK" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters