mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 07:10:41 -08:00
feat: add gitlab codequality template (#895)
* Add gitlab codequality template * add unit test for gitlab codequality template * update line endings to msdos (\r\n) from unix * update gitlab docs for codeclimate template
This commit is contained in:
38
contrib/gitlab-codequality.tpl
Normal file
38
contrib/gitlab-codequality.tpl
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
{{- /* Template based on https://github.com/codeclimate/platform/blob/master/spec/analyzers/SPEC.md#data-types */ -}}
|
||||||
|
[
|
||||||
|
{{- $t_first := true }}
|
||||||
|
{{- range . }}
|
||||||
|
{{- $target := .Target }}
|
||||||
|
{{- range .Vulnerabilities -}}
|
||||||
|
{{- if $t_first -}}
|
||||||
|
{{- $t_first = false -}}
|
||||||
|
{{ else -}}
|
||||||
|
,
|
||||||
|
{{- end }}
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "{{ .VulnerabilityID }}: {{ .Title }}",
|
||||||
|
"content": {{ .Description | printf "%q" }},
|
||||||
|
"severity": {{ if eq .Severity "LOW" -}}
|
||||||
|
"info"
|
||||||
|
{{- else if eq .Severity "MEDIUM" -}}
|
||||||
|
"minor"
|
||||||
|
{{- else if eq .Severity "HIGH" -}}
|
||||||
|
"major"
|
||||||
|
{{- else if eq .Severity "CRITICAL" -}}
|
||||||
|
"critical"
|
||||||
|
{{- else -}}
|
||||||
|
"info"
|
||||||
|
{{- end }},
|
||||||
|
"location": {
|
||||||
|
"path": "{{ .PkgName }}-{{ .InstalledVersion }}",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end }}
|
||||||
|
]
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
# GitLab CI
|
# GitLab CI
|
||||||
|
|
||||||
```
|
```yaml
|
||||||
$ cat .gitlab-ci.yml
|
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
|
|
||||||
@@ -94,3 +93,59 @@ container_scanning:
|
|||||||
|
|
||||||
[example]: https://gitlab.com/aquasecurity/trivy-ci-test/pipelines
|
[example]: https://gitlab.com/aquasecurity/trivy-ci-test/pipelines
|
||||||
[repository]: https://github.com/aquasecurity/trivy-ci-test
|
[repository]: https://github.com/aquasecurity/trivy-ci-test
|
||||||
|
|
||||||
|
### Gitlab CI alternative template
|
||||||
|
|
||||||
|
Depending on the edition of gitlab you have or your desired workflow, the
|
||||||
|
container scanning template may not meet your needs. As an addition to the
|
||||||
|
above container scanning template, a template for
|
||||||
|
[code climate](https://docs.gitlab.com/ee/user/project/merge_requests/code_quality.html)
|
||||||
|
has been included. The key things to update from the above examples are
|
||||||
|
the `template` and `report` type. An updated example is below.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
|
||||||
|
trivy:
|
||||||
|
stage: test
|
||||||
|
image: docker:stable
|
||||||
|
services:
|
||||||
|
- name: docker:dind
|
||||||
|
entrypoint: ["env", "-u", "DOCKER_HOST"]
|
||||||
|
command: ["dockerd-entrypoint.sh"]
|
||||||
|
variables:
|
||||||
|
DOCKER_HOST: tcp://docker:2375/
|
||||||
|
DOCKER_DRIVER: overlay2
|
||||||
|
# See https://github.com/docker-library/docker/pull/166
|
||||||
|
DOCKER_TLS_CERTDIR: ""
|
||||||
|
IMAGE: trivy-ci-test:$CI_COMMIT_SHA
|
||||||
|
before_script:
|
||||||
|
- export TRIVY_VERSION=$(wget -qO - "https://api.github.com/repos/aquasecurity/trivy/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/')
|
||||||
|
- echo $TRIVY_VERSION
|
||||||
|
- wget --no-verbose https://github.com/aquasecurity/trivy/releases/download/v${TRIVY_VERSION}/trivy_${TRIVY_VERSION}_Linux-64bit.tar.gz -O - | tar -zxvf -
|
||||||
|
allow_failure: true
|
||||||
|
script:
|
||||||
|
# Build image
|
||||||
|
- docker build -t $IMAGE .
|
||||||
|
# Build report
|
||||||
|
- ./trivy --exit-code 0 --cache-dir .trivycache/ --no-progress --format template --template "@contrib/gitlab-codeclimate.tpl" -o gl-codeclimate.json $IMAGE
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- .trivycache/
|
||||||
|
# Enables https://docs.gitlab.com/ee/user/application_security/container_scanning/ (Container Scanning report is available on GitLab EE Ultimate or GitLab.com Gold)
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
gl-codeclimate.json
|
||||||
|
reports:
|
||||||
|
codequality: gl-codeclimate.json
|
||||||
|
```
|
||||||
|
|
||||||
|
Currently gitlab only supports a single code quality report. There is an
|
||||||
|
open [feature request](https://gitlab.com/gitlab-org/gitlab/-/issues/9014)
|
||||||
|
to support multiple reports. Until this has been implemented, if you
|
||||||
|
already have a code quality report in your pipeline, you can use
|
||||||
|
`jq` to combine reports. Depending on how you name your artifacts, it may
|
||||||
|
be necessary to rename the artifact if you want to reuse the name. To then
|
||||||
|
combine the previous artifact with the output of trivy, the following `jq`
|
||||||
|
command can be used, `jq -s 'add' prev-codeclimate.json trivy-codeclimate.json > gl-codeclimate.json`.
|
||||||
|
|||||||
@@ -88,6 +88,16 @@ func TestClientServer(t *testing.T) {
|
|||||||
},
|
},
|
||||||
golden: "testdata/alpine-310.gitlab.golden",
|
golden: "testdata/alpine-310.gitlab.golden",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "alpine 3.10 integration with gitlab-codequality template",
|
||||||
|
testArgs: args{
|
||||||
|
Format: "template",
|
||||||
|
TemplatePath: "@../contrib/gitlab-codequality.tpl",
|
||||||
|
Version: "dev",
|
||||||
|
Input: "testdata/fixtures/alpine-310.tar.gz",
|
||||||
|
},
|
||||||
|
golden: "testdata/alpine-310.gitlab-codequality.golden",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "alpine 3.10 integration with sarif template",
|
name: "alpine 3.10 integration with sarif template",
|
||||||
testArgs: args{
|
testArgs: args{
|
||||||
|
|||||||
114
integration/testdata/alpine-310.gitlab-codequality.golden
vendored
Normal file
114
integration/testdata/alpine-310.gitlab-codequality.golden
vendored
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1549: openssl: information disclosure in fork()",
|
||||||
|
"content": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
|
"severity": "minor",
|
||||||
|
"location": {
|
||||||
|
"path": "libcrypto1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1551: openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
|
"content": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e-dev (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u-dev (Affected 1.0.2-1.0.2t).",
|
||||||
|
"severity": "minor",
|
||||||
|
"location": {
|
||||||
|
"path": "libcrypto1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1563: openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
|
"content": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
|
"severity": "minor",
|
||||||
|
"location": {
|
||||||
|
"path": "libcrypto1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1547: openssl: side-channel weak encryption vulnerability",
|
||||||
|
"content": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
|
"severity": "info",
|
||||||
|
"location": {
|
||||||
|
"path": "libcrypto1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1549: openssl: information disclosure in fork()",
|
||||||
|
"content": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
|
"severity": "minor",
|
||||||
|
"location": {
|
||||||
|
"path": "libssl1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1551: openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
|
"content": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e-dev (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u-dev (Affected 1.0.2-1.0.2t).",
|
||||||
|
"severity": "minor",
|
||||||
|
"location": {
|
||||||
|
"path": "libssl1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1563: openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
|
"content": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
|
"severity": "minor",
|
||||||
|
"location": {
|
||||||
|
"path": "libssl1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "issue",
|
||||||
|
"check_name": "container_scanning",
|
||||||
|
"categories": [ "Security" ],
|
||||||
|
"description": "CVE-2019-1547: openssl: side-channel weak encryption vulnerability",
|
||||||
|
"content": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
|
"severity": "info",
|
||||||
|
"location": {
|
||||||
|
"path": "libssl1.1-1.1.1c-r0",
|
||||||
|
"lines": {
|
||||||
|
"begin": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user