diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index 0cabffeff7..c8bec6a60b 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -58,10 +58,22 @@ jobs: run: | npm install -g snyk - # Run with high threshold to fail build. - snyk test --org=argoproj --all-projects --exclude=docs,site --severity-threshold=high --policy-path=.snyk - snyk iac test manifests/install.yaml --org=argoproj --severity-threshold=high --policy-path=.snyk - + ./hack/snyk-non-container-tests.sh + - uses: github/codeql-action/upload-sarif@v1 + if: github.event_name == 'push' + with: + category: Snyk code scan + sarif_file: /tmp/argocd-test.sarif + - uses: github/codeql-action/upload-sarif@v1 + if: github.event_name == 'push' + with: + category: Snyk IaC scan for cluster install manifests + sarif_file: /tmp/argocd-iac-test-install.sarif + - uses: github/codeql-action/upload-sarif@v1 + if: github.event_name == 'push' + with: + category: Snyk IaC scan for namespace install manifests + sarif_file: /tmp/argocd-iac-test-namespace-install.sarif - run: | IMAGE_PLATFORMS=linux/amd64 if [[ "${{ github.event_name }}" == "push" || "${{ contains(github.event.pull_request.labels.*.name, 'test-arm-image') }}" == "true" ]] @@ -74,13 +86,18 @@ jobs: -t quay.io/argoproj/argocd:latest . working-directory: ./src/github.com/argoproj/argo-cd - - name: Run container Snyk scan + - name: Run container Snyk scans if: github.event_name == 'push' working-directory: ./src/github.com/argoproj/argo-cd env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} run: | - snyk container test quay.io/argoproj/argocd:latest --org=argoproj --file=Dockerfile --severity-threshold=high + make snyk-container-tests + - uses: github/codeql-action/upload-sarif@v1 + if: github.event_name == 'push' + with: + category: Snyk scan for Argo CD image + sarif_file: /tmp/argocd-image.sarif # deploy - run: git clone "https://$TOKEN@github.com/argoproj/argoproj-deployments" diff --git a/.github/workflows/update-snyk.yaml b/.github/workflows/update-snyk.yaml new file mode 100644 index 0000000000..3ea89137a1 --- /dev/null +++ b/.github/workflows/update-snyk.yaml @@ -0,0 +1,24 @@ +name: Snyk report update +on: + schedule: + - cron: '0 0 * * 0' # midnight every Sunday +jobs: + snyk-report: + name: Update Snyk report in the docs directory + runs-on: ubuntu-22.04 + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + - name: Build reports + env: + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + run: | + make snyk-report + git config --global user.email 'ci@argoproj.com' + git config --global user.name 'CI' + git add docs/snyk/index.md + git add docs/snyk/*/*.html + git commit -m "[Bot] Update Snyk reports" + git push diff --git a/Makefile b/Makefile index 1910cddfb7..6c4dc783b6 100644 --- a/Makefile +++ b/Makefile @@ -571,3 +571,15 @@ applicationset-controller: .PHONY: checksums checksums: for f in ./dist/$(BIN_NAME)-*; do openssl dgst -sha256 "$$f" | awk ' { print $$2 }' > "$$f".sha256 ; done + +.PHONY: snyk-container-tests +snyk-container-tests: + ./hack/snyk-container-tests.sh + +.PHONY: snyk-non-container-tests +snyk-non-container-tests: + ./hack/snyk-non-container-tests.sh + +.PHONY: snyk-report +snyk-report: + ./hack/snyk-report.sh $(target_branch) diff --git a/docs/snyk/index.md b/docs/snyk/index.md new file mode 100644 index 0000000000..d2b94866b4 --- /dev/null +++ b/docs/snyk/index.md @@ -0,0 +1,51 @@ +# Snyk Scans + +Every Sunday, Snyk scans are generated for Argo CD's `master` branch and the most recent patches of the three most +recent minor releases. + +!!! note + For the most recent scans, view the [`latest` version of the docs](https://argo-cd.readthedocs.io/en/latest/snyk/). + You can return to your preferred version of the docs site using the dropdown selector at the top of the page. + +## Scans + +### master + +* [dependencies (golang and JavaScript)](master/argocd-test.html) — go.mod: 0 critical, 1 high, 2 medium, 0 low; ui/yarn.lock: 0 critical, 1 high, 1 medium, 0 low +* [(image) ghcr.io/dexidp/dex:v2.32.0](master/ghcr.io_dexidp_dex:v2.32.0.html) — 0 critical, 2 high, 0 medium, 0 low +* [(image) haproxy:2.0.29-alpine](master/haproxy:2.0.29-alpine.html) — 0 critical, 0 high, 0 medium, 0 low +* [(image) quay.io/argoproj/argocd:latest](master/quay.io_argoproj_argocd:latest.html) — 0 critical, 0 high, 3 medium, 17 low +* [(image) redis:7.0.4-alpine](master/redis:7.0.4-alpine.html) — 0 critical, 0 high, 0 medium, 0 low +* [(IaC) manifests/install.yaml](master/argocd-iac-install.html) +* [(IaC) manifests/namespace-install.yaml](master/argocd-iac-namespace-install.html) + +### v2.4.7 + +* [dependencies (golang and JavaScript)](v2.4.7/argocd-test.html) — go.mod: 0 critical, 1 high, 3 medium, 0 low; ui/yarn.lock: 0 critical, 2 high, 1 medium, 0 low +* [(image) ghcr.io/dexidp/dex:v2.30.2](v2.4.7/ghcr.io_dexidp_dex:v2.30.2.html) — 1 critical, 4 high, 0 medium, 1 low +* [(image) haproxy:2.0.25-alpine](v2.4.7/haproxy:2.0.25-alpine.html) — 3 critical, 4 high, 0 medium, 1 low +* [(image) quay.io/argoproj/argocd:v2.4.7](v2.4.7/quay.io_argoproj_argocd:v2.4.7.html) — 0 critical, 0 high, 3 medium, 17 low +* [(image) redis:7.0.0-alpine](v2.4.7/redis:7.0.0-alpine.html) — 0 critical, 2 high, 0 medium, 0 low +* [(IaC) manifests/install.yaml](v2.4.7/argocd-iac-install.html) +* [(IaC) manifests/namespace-install.yaml](v2.4.7/argocd-iac-namespace-install.html) + +### v2.3.6 + +* [dependencies (golang and JavaScript)](v2.3.6/argocd-test.html) — go.mod: 0 critical, 1 high, 3 medium, 0 low; ui/yarn.lock: 1 critical, 10 high, 24 medium, 2 low +* [(image) ghcr.io/dexidp/dex:v2.30.2](v2.3.6/ghcr.io_dexidp_dex:v2.30.2.html) — 1 critical, 4 high, 0 medium, 1 low +* [(image) haproxy:2.0.25-alpine](v2.3.6/haproxy:2.0.25-alpine.html) — 3 critical, 4 high, 0 medium, 1 low +* [(image) quay.io/argoproj/argocd-applicationset:v0.4.1](v2.3.6/quay.io_argoproj_argocd-applicationset:v0.4.1.html) — 0 critical, 4 high, 38 medium, 29 low +* [(image) quay.io/argoproj/argocd:v2.3.6](v2.3.6/quay.io_argoproj_argocd:v2.3.6.html) — 0 critical, 0 high, 4 medium, 17 low +* [(image) redis:6.2.6-alpine](v2.3.6/redis:6.2.6-alpine.html) — 0 critical, 1 high, 0 medium, 0 low +* [(IaC) manifests/install.yaml](v2.3.6/argocd-iac-install.html) +* [(IaC) manifests/namespace-install.yaml](v2.3.6/argocd-iac-namespace-install.html) + +### v2.2.11 + +* [dependencies (golang and JavaScript)](v2.2.11/argocd-test.html) — go.mod: 0 critical, 1 high, 3 medium, 0 low; ui/yarn.lock: 1 critical, 11 high, 32 medium, 2 low +* [(image) ghcr.io/dexidp/dex:v2.30.2](v2.2.11/ghcr.io_dexidp_dex:v2.30.2.html) — 1 critical, 4 high, 0 medium, 1 low +* [(image) haproxy:2.0.25-alpine](v2.2.11/haproxy:2.0.25-alpine.html) — 3 critical, 4 high, 0 medium, 1 low +* [(image) quay.io/argoproj/argocd:v2.2.11](v2.2.11/quay.io_argoproj_argocd:v2.2.11.html) — 0 critical, 0 high, 4 medium, 25 low +* [(image) redis:6.2.6-alpine](v2.2.11/redis:6.2.6-alpine.html) — 0 critical, 1 high, 0 medium, 0 low +* [(IaC) manifests/install.yaml](v2.2.11/argocd-iac-install.html) +* [(IaC) manifests/namespace-install.yaml](v2.2.11/argocd-iac-namespace-install.html) diff --git a/docs/snyk/master/argocd-iac-install.html b/docs/snyk/master/argocd-iac-install.html new file mode 100644 index 0000000000..60949e5a59 --- /dev/null +++ b/docs/snyk/master/argocd-iac-install.html @@ -0,0 +1,2243 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:00:28 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/install.yaml (Kubernetes)
  • +
+
+ +
+
32 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/install.yaml
Path /private/argo-cd/manifests/install.yaml
Project Type Kubernetes
+
+
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9206 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 11] + + role + + rules[4] + + resources + +
  • + +
  • + Line number: 9245 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 12] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9311 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 13] + + role + + rules[1] + + resources + +
  • + +
  • + Line number: 9330 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 13] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 9330 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 14] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9371 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 46] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 10293 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9841 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9954 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10010 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10084 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10293 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10140 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 47] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10378 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 48] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10663 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 43] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 9934 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 10094 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 42] + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + livenessProbe + +
  • + +
  • + Line number: 9841 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 43] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 43] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 9954 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 45] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 10084 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 46] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 10293 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9841 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9954 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10010 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10084 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10293 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10140 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 47] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10378 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 48] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10663 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/master/argocd-iac-namespace-install.html b/docs/snyk/master/argocd-iac-namespace-install.html new file mode 100644 index 0000000000..bd7bb2613b --- /dev/null +++ b/docs/snyk/master/argocd-iac-namespace-install.html @@ -0,0 +1,2243 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:00:38 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/namespace-install.yaml (Kubernetes)
  • +
+
+ +
+
32 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/namespace-install.yaml
Path /private/argo-cd/manifests/namespace-install.yaml
Project Type Kubernetes
+
+
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 7] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 65 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 8] + + role + + rules[4] + + resources + +
  • + +
  • + Line number: 104 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 9] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 170 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[1] + + resources + +
  • + +
  • + Line number: 189 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 189 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 11] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 230 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 39] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 1067 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 615 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 728 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 694 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 784 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 858 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 1067 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 914 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 40] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 1152 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 1437 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 708 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 868 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 35] + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + livenessProbe + +
  • + +
  • + Line number: 615 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 694 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 728 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 38] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 858 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 39] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 1067 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 615 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 694 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 728 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 784 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 858 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 1067 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 914 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 40] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 1152 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 1437 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/master/argocd-test.html b/docs/snyk/master/argocd-test.html new file mode 100644 index 0000000000..12d7aeef16 --- /dev/null +++ b/docs/snyk/master/argocd-test.html @@ -0,0 +1,4348 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 2:59:11 pm

+
+
+ Scanned the following paths: +
    +
  • /private/argo-cd/argoproj/argo-cd/v2 (gomodules)
  • /private/argo-cd (yarn)
  • +
+
+ +
+
5 known vulnerabilities
+
160 vulnerable dependency paths
+
1716 dependencies
+
+
+
+
+ +
+
+
+

Authorization Bypass Through User-Controlled Key

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-path +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.6.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.6.0 + + git-up@4.0.5 + + parse-url@6.0.2 + + parse-path@4.0.4 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-path is a Parse paths (local paths, urls: ssh/git/etc)

+

Affected versions of this package are vulnerable to Authorization Bypass Through User-Controlled Key which is unable to detect the right resource.

+

Remediation

+

Upgrade parse-path to version 5.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + gopkg.in/yaml.v3 +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/argoproj/notifications-engine/pkg/api@#567361917320 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/mock@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/controller@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@#67ddccd3cc95 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@#67ddccd3cc95 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@#67ddccd3cc95 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@#67ddccd3cc95 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@#67ddccd3cc95 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.24.2 + + k8s.io/client-go/testing@0.24.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.24.2 + + k8s.io/client-go/kubernetes@0.24.2 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.24.2 + + k8s.io/client-go/applyconfigurations/meta/v1@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/util/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/util/proto@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + github.com/google/gnostic/openapiv2@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/sync/common@#67ddccd3cc95 + + github.com/argoproj/gitops-engine/pkg/utils/kube@#67ddccd3cc95 + + k8s.io/kubectl/pkg/cmd/util@0.24.2 + + k8s.io/kubectl/pkg/validation@0.24.2 + + k8s.io/cli-runtime/pkg/resource@0.24.2 + + sigs.k8s.io/kustomize/api/krusty@0.11.4 + + sigs.k8s.io/kustomize/api/resmap@0.11.4 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.6 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.24.2 + + k8s.io/client-go/discovery@0.24.2 + + k8s.io/client-go/openapi@0.24.2 + + k8s.io/kube-openapi/pkg/handler3@#3ee0da9b0b42 + + github.com/google/gnostic/openapiv3@0.5.7-v3refs + + github.com/google/gnostic/compiler@0.5.7-v3refs + + github.com/google/gnostic/jsonschema@0.5.7-v3refs + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
+ +
+ +
+ +

Overview

+

gopkg.in/yaml.v3 is a YAML support package for the Go language.

+

Affected versions of this package are vulnerable to Denial of Service (DoS) via the Unmarshal function, which causes the program to crash when attempting to deserialize invalid input.

+

PoC

+
package main
+        
+        import (
+            "gopkg.in/yaml.v3"
+        )
+        
+        func main() {
+            var t interface{}
+            yaml.Unmarshal([]byte("0: [:!00 \xef"), &t)
+        }
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade gopkg.in/yaml.v3 to version 3.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + json-pointer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.64 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.64 + + json-pointer@0.6.2 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.64 + + openapi-sampler@1.2.1 + + json-pointer@0.6.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

json-pointer is a set of utilities for JSON pointers described by RFC 6901

+

Affected versions of this package are vulnerable to Prototype Pollution. A type confusion vulnerability can lead to a bypass of CVE-2020-7709 when the pointer components are arrays.

+

PoC

+
const pointer = require('json-pointer');
+        
+        // pointer.set({}, ['__proto__', 'polluted'], 'yes')
+        // console.log(polluted) // ReferenceError: polluted is not defined
+        
+        pointer.set({}, [['__proto__'], 'polluted'], 'yes')
+        console.log(polluted)"
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

A fix was pushed into the master branch but not yet published.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + go.mongodb.org/mongo-driver/bson/bsonrw +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/go-openapi/runtime/middleware@0.19.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.5 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.2 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.5 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsoncodec@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

go.mongodb.org/mongo-driver/bson/bsonrw is a The MongoDB supported driver for Go.

+

Affected versions of this package are vulnerable to Improper Input Validation. Specific cstrings input may not be properly validated in the MongoDB Go Driver when marshalling Go objects into BSON. A malicious user could use a Go object with specific string to potentially inject additional fields into marshalled documents.

+

Remediation

+

Upgrade go.mongodb.org/mongo-driver/bson/bsonrw to version 1.5.1 or higher.

+

References

+ + +
+ + + +
+
+

Insecure Randomness

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + github.com/Masterminds/goutils +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/argoproj/notifications-engine/pkg/api@#567361917320 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + github.com/argoproj/notifications-engine/pkg/templates@#567361917320 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + github.com/argoproj/notifications-engine/pkg/templates@#567361917320 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/controller@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + github.com/argoproj/notifications-engine/pkg/templates@#567361917320 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

github.com/masterminds/goutils is a provides users with utility functions to manipulate strings in various ways.

+

Affected versions of this package are vulnerable to Insecure Randomness via the RandomAlphaNumeric(int) and CryptoRandomAlphaNumeric(int) functions. Small values of int in the functions above will return a smaller subset of results than they should. For example, RandomAlphaNumeric(1) would always return a digit in the 0-9 range, while RandomAlphaNumeric(4) return around ~7 million of the ~13M possible permutations.

+

Remediation

+

Upgrade github.com/masterminds/goutils to version 1.1.1 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/master/ghcr.io_dexidp_dex:v2.32.0.html b/docs/snyk/master/ghcr.io_dexidp_dex:v2.32.0.html new file mode 100644 index 0000000000..7ee0752363 --- /dev/null +++ b/docs/snyk/master/ghcr.io_dexidp_dex:v2.32.0.html @@ -0,0 +1,717 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 2:59:16 pm

+
+
+ Scanned the following path: +
    +
  • ghcr.io/dexidp/dex:v2.32.0/dexidp/dex (apk)
  • +
+
+ +
+
2 known vulnerabilities
+
10 vulnerable dependency paths
+
14 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|ghcr.io/dexidp/dex
Path ghcr.io/dexidp/dex:v2.32.0/dexidp/dex
Package Manager apk
+
+
+
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.16 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.32.0 and openssl/libcrypto1.1@1.1.1o-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + openssl/libssl1.1@1.1.1o-r0 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + apk-tools/apk-tools@2.12.9-r3 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + busybox/ssl_client@1.35.0-r13 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + apk-tools/apk-tools@2.12.9-r3 + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + busybox/ssl_client@1.35.0-r13 + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.16 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.16 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.16 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.32.0 and busybox/busybox@1.35.0-r13 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + busybox/busybox@1.35.0-r13 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + alpine-baselayout/alpine-baselayout-data@3.2.0-r20 + + alpine-baselayout/alpine-baselayout@3.2.0-r20 + + busybox/busybox@1.35.0-r13 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.32.0 + + busybox/ssl_client@1.35.0-r13 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.16 relevant versions.

+

A use-after-free in Busybox 1.35-x's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the copyvar function.

+

Remediation

+

Upgrade Alpine:3.16 busybox to version 1.35.0-r15 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/master/haproxy:2.0.29-alpine.html b/docs/snyk/master/haproxy:2.0.29-alpine.html new file mode 100644 index 0000000000..9462f0b23a --- /dev/null +++ b/docs/snyk/master/haproxy:2.0.29-alpine.html @@ -0,0 +1,492 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 2:59:20 pm

+
+
+ Scanned the following path: +
    +
  • haproxy:2.0.29-alpine (apk)
  • +
+
+ +
+
0 known vulnerabilities
+
0 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|haproxy
Path haproxy:2.0.29-alpine
Package Manager apk
+
+
+ No known vulnerabilities detected. +
+
+ + + diff --git a/docs/snyk/master/quay.io_argoproj_argocd:latest.html b/docs/snyk/master/quay.io_argoproj_argocd:latest.html new file mode 100644 index 0000000000..ad4a159d25 --- /dev/null +++ b/docs/snyk/master/quay.io_argoproj_argocd:latest.html @@ -0,0 +1,2495 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 2:59:41 pm

+
+
+ Scanned the following path: +
    +
  • quay.io/argoproj/argocd:latest/argoproj/argocd (deb)
  • +
+
+ +
+
20 known vulnerabilities
+
66 vulnerable dependency paths
+
162 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|quay.io/argoproj/argocd
Path quay.io/argoproj/argocd:latest/argoproj/argocd
Package Manager deb
Manifest Dockerfile
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, gnupg2/gpg@2.2.27-3ubuntu2.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + sqlite3/libsqlite3-0@3.37.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An out-of-bounds read was addressed with improved bounds checking. This issue is fixed in iOS 13.5 and iPadOS 13.5, macOS Catalina 10.15.5, tvOS 13.4.5, watchOS 6.2.5, iTunes 12.10.7 for Windows, iCloud for Windows 11.2, iCloud for Windows 7.19. A malicious application may cause a denial of service or potentially disclose memory contents.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + perl/perl-modules-5.34 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, git@1:2.34.1-1ubuntu1.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + perl/perl-modules-5.34@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + perl/libperl5.34@5.34.0-3ubuntu1 + + perl/perl-modules-5.34@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + perl/libperl5.34@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + meta-common-packages@meta + + perl/perl-base@5.34.0-3ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream perl package.

+

CPAN 2.28 allows Signature Verification Bypass.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 perl.

+

References

+ + +
+ + + +
+
+

CVE-2021-46828

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + libtirpc/libtirpc-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and libtirpc/libtirpc-common@1.3.2-2build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + libtirpc/libtirpc-common@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + libtirpc/libtirpc-common@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + libtirpc/libtirpc3@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libtirpc/libtirpc3@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libtirpc package.

+

In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 libtirpc.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + tar +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + meta-common-packages@meta + + tar@1.34+dfsg-1build3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream tar package.

+

pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 tar.

+

References

+ + +
+ + + +
+
+

CVE-2020-9991

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, gnupg2/gpg@2.2.27-3ubuntu2.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + sqlite3/libsqlite3-0@3.37.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

This issue was addressed with improved checks. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iCloud for Windows 7.21, tvOS 14.0. A remote attacker may be able to cause a denial of service.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, gnupg2/gpg@2.2.27-3ubuntu2.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + sqlite3/libsqlite3-0@3.37.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An information disclosure issue was addressed with improved state management. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iTunes for Windows 12.10.9, iCloud for Windows 11.5, tvOS 14.0. A remote attacker may be able to leak memory.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Time-of-check Time-of-use (TOCTOU)

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + shadow/passwd +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and shadow/passwd@1:4.8.1-2ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + shadow/passwd@1:4.8.1-2ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + openssh/openssh-client@1:8.9p1-3 + + shadow/passwd@1:4.8.1-2ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + shadow/login@1:4.8.1-2ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream shadow package.

+

shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees

+

Remediation

+

There is no fixed version for Ubuntu:22.04 shadow.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + grep@3.7-1build1 + + pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package.

+

In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 pcre3.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.39-3build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 pcre2.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.39-3build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 pcre2.

+

References

+ + +
+ + + +
+
+

Release of Invalid Pointer or Reference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and patch@2.7.6-7build2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + patch@2.7.6-7build2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

An Invalid Pointer vulnerability exists in GNU patch 2.7 via the another_hunk function, which causes a Denial of Service.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 patch.

+

References

+ + +
+ + + +
+
+

Double Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and patch@2.7.6-7build2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + patch@2.7.6-7build2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

A double free exists in the another_hunk function in pch.c in GNU patch through 2.7.6.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 patch.

+

References

+ + +
+ + + +
+
+

CVE-2021-41617

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and openssh/openssh-client@1:8.9p1-3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + openssh/openssh-client@1:8.9p1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

sshd in OpenSSH 6.2 through 8.x before 8.8, when certain non-default configurations are used, allows privilege escalation because supplemental groups are not initialized as expected. Helper programs for AuthorizedKeysCommand and AuthorizedPrincipalsCommand may run with privileges associated with group memberships of the sshd process, if the configuration specifies running the command as a different user.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 openssh.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and openssh/openssh-client@1:8.9p1-3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + openssh/openssh-client@1:8.9p1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

The client side in OpenSSH 5.7 through 8.4 has an Observable Discrepancy leading to an information leak in the algorithm negotiation. This allows man-in-the-middle attackers to target initial connection attempts (where no host key for the server has been cached by the client). NOTE: some reports state that 8.5 and 8.6 are also affected.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 openssh.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + ncurses/libtinfo6 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and ncurses/libtinfo6@6.3-2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + bash@5.1-6ubuntu1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/libncursesw6@6.3-2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + less@590-1build1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + libedit/libedit2@3.1-20210910-1build1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/libncurses6@6.3-2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/ncurses-bin@6.3-2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + procps@2:3.3.17-6ubuntu2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + util-linux@2.37.2-4ubuntu3 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + gnupg2/gpgconf@2.2.27-3ubuntu2.1 + + readline/libreadline8@8.1.2-1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gnupg2/gnupg@2.2.27-3ubuntu2.1 + + gnupg2/gpg-agent@2.2.27-3ubuntu2.1 + + pinentry/pinentry-curses@1.1.1-1build2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/libncursesw6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + procps@2:3.3.17-6ubuntu2 + + ncurses/libncursesw6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gnupg2/gnupg@2.2.27-3ubuntu2.1 + + gnupg2/gpg-agent@2.2.27-3ubuntu2.1 + + pinentry/pinentry-curses@1.1.1-1build2 + + ncurses/libncursesw6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/libncurses6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + procps@2:3.3.17-6ubuntu2 + + ncurses/libncurses6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/ncurses-base@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + ncurses/ncurses-bin@6.3-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream ncurses package.

+

ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 ncurses.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + krb5/libk5crypto3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and krb5/libk5crypto3@1.19.2-2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + krb5/libk5crypto3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + krb5/libk5crypto3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + krb5/libkrb5-3@1.19.2-2 + + krb5/libk5crypto3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + krb5/libkrb5-3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + krb5/libkrb5-3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + openssh/openssh-client@1:8.9p1-3 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + curl/libcurl3-gnutls@7.81.0-1ubuntu1.3 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + curl/libcurl3-gnutls@7.81.0-1ubuntu1.3 + + libssh/libssh-4@0.9.6-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + meta-common-packages@meta + + krb5/libkrb5support0@1.19.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 krb5.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + gmp/libgmp10 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + coreutils@8.32-4.1ubuntu1 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + apt@2.4.5 + + gnutls28/libgnutls30@3.7.3-4ubuntu1 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + apt@2.4.5 + + gnutls28/libgnutls30@3.7.3-4ubuntu1 + + nettle/libhogweed6@3.7.3-1build2 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + curl/libcurl3-gnutls@7.81.0-1ubuntu1.3 + + rtmpdump/librtmp1@2.4+20151223.gitfa8646d.1-2build4 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream gmp package.

+

GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 gmp.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and glibc/libc-bin@2.35-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + glibc/libc-bin@2.35-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + meta-common-packages@meta + + glibc/libc6@2.35-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

sha256crypt and sha512crypt through 0.6 allow attackers to cause a denial of service (CPU consumption) because the algorithm's runtime is proportional to the square of the length of the password.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 glibc.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@latest, git@1:2.34.1-1ubuntu1.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + git/git-man@1:2.34.1-1ubuntu1.4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git@1:2.34.1-1ubuntu1.4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + git-lfs@3.0.2-1 + + git@1:2.34.1-1ubuntu1.4 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package.

+

GIT version 2.15.1 and earlier contains a Input Validation Error vulnerability in Client that can result in problems including messing up terminal configuration to RCE. This attack appear to be exploitable via The user must interact with a malicious git server, (or have their traffic modified in a MITM attack).

+

Remediation

+

There is no fixed version for Ubuntu:22.04 git.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + coreutils +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@latest and coreutils@8.32-4.1ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@latest + + coreutils@8.32-4.1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream coreutils package.

+

chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 coreutils.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/master/redis:7.0.4-alpine.html b/docs/snyk/master/redis:7.0.4-alpine.html new file mode 100644 index 0000000000..db66173978 --- /dev/null +++ b/docs/snyk/master/redis:7.0.4-alpine.html @@ -0,0 +1,492 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 2:59:46 pm

+
+
+ Scanned the following path: +
    +
  • redis:7.0.4-alpine (apk)
  • +
+
+ +
+
0 known vulnerabilities
+
0 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|redis
Path redis:7.0.4-alpine
Package Manager apk
+
+
+ No known vulnerabilities detected. +
+
+ + + diff --git a/docs/snyk/v2.2.11/argocd-iac-install.html b/docs/snyk/v2.2.11/argocd-iac-install.html new file mode 100644 index 0000000000..2046f8fd85 --- /dev/null +++ b/docs/snyk/v2.2.11/argocd-iac-install.html @@ -0,0 +1,2439 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:06:00 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/install.yaml (Kubernetes)
  • +
+
+ +
+
35 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/install.yaml
Path /private/argo-cd/manifests/install.yaml
Project Type Kubernetes
+
+
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + containers[dex] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 3067 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 31] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 3130 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 31] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 3130 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 6] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 2594 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 7] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 2633 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 8] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 2652 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 32] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3057 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 31] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3130 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3179 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 33] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3388 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 34] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 3638 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 30] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 3064 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 31] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 3130 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 30] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 3057 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 30] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 31] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 3130 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 32] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3057 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 30] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3077 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 31] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3130 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3313 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 32] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3179 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 33] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3388 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 34] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 3638 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/v2.2.11/argocd-iac-namespace-install.html b/docs/snyk/v2.2.11/argocd-iac-namespace-install.html new file mode 100644 index 0000000000..dcb5441c3c --- /dev/null +++ b/docs/snyk/v2.2.11/argocd-iac-namespace-install.html @@ -0,0 +1,2439 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:06:09 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/namespace-install.yaml (Kubernetes)
  • +
+
+ +
+
35 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/namespace-install.yaml
Path /private/argo-cd/manifests/namespace-install.yaml
Project Type Kubernetes
+
+
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + containers[dex] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 426 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 25] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 489 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 25] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 489 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 4] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 38 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 5] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 77 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 6] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 96 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 26] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 416 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 25] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 489 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 538 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 27] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 747 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 28] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 997 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 24] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 423 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 25] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 489 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 24] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 416 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 24] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 25] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 489 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 26] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 416 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 24] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 436 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 25] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 489 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 672 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 26] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 538 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 27] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 747 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 28] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 997 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/v2.2.11/argocd-test.html b/docs/snyk/v2.2.11/argocd-test.html new file mode 100644 index 0000000000..f14820fbd2 --- /dev/null +++ b/docs/snyk/v2.2.11/argocd-test.html @@ -0,0 +1,8698 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:04:40 pm

+
+
+ Scanned the following paths: +
    +
  • /private/argo-cd/argoproj/argo-cd/v2 (gomodules)
  • /private/argo-cd (yarn)
  • +
+
+ +
+
50 known vulnerabilities
+
180 vulnerable dependency paths
+
2114 dependencies
+
+
+
+
+ +
+
+
+

Server-side Request Forgery (SSRF)

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) in the parseUrl function, due to mishandling hostnames when processing usernames and passwords.

+

PoC:

+
const parseUrl = require("parse-url");
+        const express = require('express');
+        const http = require('http');
+        const app = express();
+        
+        const isLocal = () => (req, res, next) => (req.connection.remoteAddress === '::ffff:127.0.0.1'|| req.connection.remoteAddress === '::1' ? true:false)
+            ? next()
+            : res.json({'state':'You\'re not locally'});
+        
+        parsed = parseUrl("http://google:com:@@127.0.0.1:9999/ssrf_check");
+        console.log(parsed);
+        
+        app.get('/', (req, res) => {
+            if(parsed.resource == '127.0.0.1'){
+                res.send('Not good');
+            } else{
+                http.get(parsed.href)
+                res.send('Good');
+            }
+        });
+        
+        app.get('/ssrf_check', isLocal(), (req, res) =>{
+            console.log('ssrf bypass');
+            res.send(true);
+        });
+        
+        app.listen(9999);
+        
+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + url-parse +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + url-parse@1.5.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + original@1.0.2 + + url-parse@1.5.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

url-parse is a Small footprint URL parser that works seamlessly across Node.js and browser environments.

+

Affected versions of this package are vulnerable to Improper Input Validation due to improper fix of CVE-2020-8124 , it is possible to be exploited via the \b (backspace) character.

+

PoC:

+
const parse = require('./index.js')
+        
+        url = parse('\bhttp://google.com')
+        
+        console.log(url)
+        
+

Output:

+
{
+          slashes: false,
+          protocol: '',
+          hash: '',
+          query: '',
+          pathname: '\bhttp://google.com',
+          auth: '',
+          host: '',
+          port: '',
+          hostname: '',
+          password: '',
+          username: '',
+          origin: 'null',
+          href: '\bhttp://google.com'
+        }
+        
+

Remediation

+

Upgrade url-parse to version 1.5.9 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + unset-value +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack@4.44.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Prototype Pollution via the unset function in index.js, because it allows access to object prototype properties.

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade unset-value to version 2.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Authorization Bypass Through User-Controlled Key

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-path +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + parse-path@4.0.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-path is a Parse paths (local paths, urls: ssh/git/etc)

+

Affected versions of this package are vulnerable to Authorization Bypass Through User-Controlled Key which is unable to detect the right resource.

+

Remediation

+

Upgrade parse-path to version 5.0.0 or higher.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to NULL Pointer Dereference in the function Sass::Functions::selector_append which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact. node-sass is affected by this vulnerability due to its bundled usage of libsass.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Use After Free via the SharedPtr class in SharedPtr.cpp (or SharedPtr.hpp) that may cause a denial of service (application crash) or possibly have unspecified other impact. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Improper Verification of Cryptographic Signature due to RSA's PKCS#1 v1.5 signature verification code which does not check for tailing garbage bytes after decoding a DigestInfo ASN.1 structure. This can allow padding bytes to be removed and garbage data added to forge a signature when a low public exponent is being used.

+

Remediation

+

Upgrade node-forge to version 1.3.0 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + moment +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and moment@2.29.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + moment-timezone@0.5.33 + + moment@2.29.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

moment is a lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the preprocessRFC2822() function in from-string.js, when processing a very long crafted string (over 10k characters).

+

PoC:

+
moment("(".repeat(500000))
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade moment to version 2.29.4 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + json-schema +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, node-sass@6.0.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + request@2.88.0 + + http-signature@1.2.0 + + jsprim@1.4.1 + + json-schema@0.2.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + node-gyp@7.1.2 + + request@2.88.2 + + http-signature@1.2.0 + + jsprim@1.4.1 + + json-schema@0.2.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Prototype Pollution via the validate function, which when given a special payload will pollute Object with undesired attributes.

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade json-schema to version 0.4.0 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + gopkg.in/yaml.v3 +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, k8s.io/client-go/discovery@0.22.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/mock@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.22.2 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.22.2 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.5.5 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.22.2 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.22.2 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.22.2 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.22.2 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.5.5 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/client@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.8.3 + + k8s.io/client-go/restmapper@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.22.2 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.22.2 + + k8s.io/client-go/kubernetes@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.5.5 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.22.2 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.22.2 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.22.2 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.22.2 + + k8s.io/client-go/testing@0.22.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/client@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.8.3 + + k8s.io/client-go/restmapper@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/client@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.8.3 + + k8s.io/client-go/restmapper@0.22.2 + + k8s.io/client-go/discovery@0.22.2 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/util/openapi@0.22.2 + + k8s.io/kube-openapi/pkg/util/proto@#95288971da7e + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.5.5 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.5.5 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.5.5 + + k8s.io/kubectl/pkg/cmd/util@0.22.2 + + k8s.io/cli-runtime/pkg/resource@0.22.2 + + sigs.k8s.io/kustomize/api/krusty@0.8.11 + + sigs.k8s.io/kustomize/api/resmap@0.8.11 + + sigs.k8s.io/kustomize/kyaml/kio@0.11.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
+ +
+ +
+ +

Overview

+

gopkg.in/yaml.v3 is a YAML support package for the Go language.

+

Affected versions of this package are vulnerable to Denial of Service (DoS) via the Unmarshal function, which causes the program to crash when attempting to deserialize invalid input.

+

PoC

+
package main
+        
+        import (
+            "gopkg.in/yaml.v3"
+        )
+        
+        func main() {
+            var t interface{}
+            yaml.Unmarshal([]byte("0: [:!00 \xef"), &t)
+        }
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade gopkg.in/yaml.v3 to version 3.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + async +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, source-map-loader@0.2.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + source-map-loader@0.2.4 + + async@2.6.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + portfinder@1.0.28 + + async@2.6.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Prototype Pollution via the mapValues() method, due to improper check in createObjectIterator function.

+

PoC

+
//when objects are parsed, all properties are created as own (the objects can come from outside sources (http requests/ file))
+        const hasOwn = JSON.parse('{"__proto__": {"isAdmin": true}}');
+        
+        //does not have the property,  because it's inside object's own "__proto__"
+        console.log(hasOwn.isAdmin);
+        
+        async.mapValues(hasOwn, (val, key, cb) => cb(null, val), (error, result) => {
+          // after the method executes, hasOwn.__proto__ value (isAdmin: true) replaces the prototype of the newly created object, leading to potential exploits.
+          console.log(result.isAdmin);
+        });
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade async to version 2.6.4, 3.2.2 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + ansi-html +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + ansi-html@0.0.7 + + + +
  • +
+ +
+ +
+ +

Overview

+

ansi-html is an An elegant lib that converts the chalked (ANSI) text to HTML.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.

+

PoC

+
require('ansi-html')('x1b[0mx1b[' + '0'.repeat(35))
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade ansi-html to version 0.0.9 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + ajv +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + swagger2openapi@6.2.3 + + oas-validator@4.0.8 + + ajv@5.5.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

ajv is an Another JSON Schema Validator

+

Affected versions of this package are vulnerable to Prototype Pollution. A carefully crafted JSON schema could be provided that allows execution of other code by prototype pollution. (While untrusted schemas are recommended against, the worst case of an untrusted schema should be a denial of service, not execution of code.)

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade ajv to version 6.12.3 or higher.

+

References

+ + +
+ + + +
+
+

Access Restriction Bypass

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + url-parse +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + url-parse@1.5.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + original@1.0.2 + + url-parse@1.5.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

url-parse is a Small footprint URL parser that works seamlessly across Node.js and browser environments.

+

Affected versions of this package are vulnerable to Access Restriction Bypass due to improper parsing process, that may lead to incorrect handling of authentication credentials and hostname, which allows bypass of hostname validation.

+

PoC:

+
// PoC.js
+         var parse = require('url-parse')
+        var cc=parse("http://admin:password123@@127.0.0.1")
+        
+        //Output:
+        { slashes: true,
+          protocol: 'http:',
+          hash: '',
+          query: '',
+          pathname: '/',
+          auth: 'admin:password123',
+          host: '@127.0.0.1',
+          port: '',
+          hostname: '@127.0.0.1',
+          password: 'password123',
+          username: 'admin',
+          origin: 'http://@127.0.0.1',
+          href: 'http://admin:password123@@127.0.0.1/' }
+        
+

Remediation

+

Upgrade url-parse to version 1.5.6 or higher.

+

References

+ + +
+ + + +
+
+

Authorization Bypass

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + url-parse +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + url-parse@1.5.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + original@1.0.2 + + url-parse@1.5.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

url-parse is a Small footprint URL parser that works seamlessly across Node.js and browser environments.

+

Affected versions of this package are vulnerable to Authorization Bypass via the hostname field of a parsed URL, because "url-parse" is unable to find the correct hostname when no port number is provided in the URL.

+

PoC:

+
var Url = require('url-parse');
+        var PAYLOAD = "http://example.com:";
+        
+        console.log(Url(PAYLOAD));
+        
+        // Expected hostname: example.com
+        // Actual hostname by url-parse: example.com:
+        
+

Output:

+
{
+          slashes: true,
+          protocol: 'http:',
+          hash: '',
+          query: '',
+          pathname: '/',
+          auth: '',
+          host: 'example.com:',
+          port: '',
+          hostname: 'example.com:',
+          password: '',
+          username: '',
+          origin: 'http://example.com:',
+          href: 'http://example.com:/'
+        }
+        
+

Remediation

+

Upgrade url-parse to version 1.5.8 or higher.

+

References

+ + +
+ + + +
+
+

Authorization Bypass Through User-Controlled Key

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + url-parse +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + url-parse@1.5.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + original@1.0.2 + + url-parse@1.5.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

url-parse is a Small footprint URL parser that works seamlessly across Node.js and browser environments.

+

Affected versions of this package are vulnerable to Authorization Bypass Through User-Controlled Key due to incorrect conversion of @ in the protocol field of the HREF.

+

PoC:

+
parse = require('url-parse')
+        
+        console.log(parse("http:@/127.0.0.1"))
+        
+

Output:

+
{
+          slashes: true,
+          protocol: 'http:',
+          hash: '',
+          query: '',
+          pathname: '/127.0.0.1',
+          auth: '',
+          host: '',
+          port: '',
+          hostname: '',
+          password: '',
+          username: '',
+          origin: 'null',
+          href: 'http:///127.0.0.1'
+        }
+        
+

Remediation

+

Upgrade url-parse to version 1.5.7 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + uglify-js +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, html-webpack-plugin@3.2.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + html-webpack-plugin@3.2.0 + + html-minifier@3.5.21 + + uglify-js@3.4.10 + + + +
  • +
+ +
+ +
+ +

Overview

+

uglify-js is a JavaScript parser, minifier, compressor and beautifier toolkit.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the string_template and the decode_template functions.

+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade uglify-js to version 3.14.3 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + terser +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack@4.44.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + terser@4.8.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to insecure usage of regular expressions.

+

PoC:

+
echo 'console.log(/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX"))' | npx terser -mc unsafe=true
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade terser to version 4.8.1, 5.14.2 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + scss-tokenizer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, node-sass@6.0.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + sass-graph@2.2.5 + + scss-tokenizer@0.2.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the loadAnnotation() function, due to the usage of insecure regex.

+

PoC

+
var scss = require("scss-tokenizer")
+        function build_attack(n) {
+            var ret = "a{}"
+            for (var i = 0; i < n; i++) {
+                ret += "/*# sourceMappingURL="
+            }
+            return ret + "!";
+        }
+        
+        // postcss.parse('a{}/*# sourceMappingURL=a.css.map */')
+        for(var i = 1; i <= 500000; i++) {
+            if (i % 1000 == 0) {
+                var time = Date.now();
+                var attack_str = build_attack(i)
+                try{
+                    scss.tokenize(attack_str)
+                    var time_cost = Date.now() - time;
+                    console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms");
+                    }
+                catch(e){
+                var time_cost = Date.now() - time;
+                console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms");
+                }
+            }
+        }
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

There is no fixed version for scss-tokenizer.

+

References

+ + +
+ + + +
+
+

Cross-site Scripting (XSS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + prismjs +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + prismjs@1.25.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

prismjs is a lightweight, robust, elegant syntax highlighting library.

+

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via the command line plugin which does not properly escape its output, leading to the input text being inserted into the DOM as HTML code.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

Upgrade prismjs to version 1.27.0 or higher.

+

References

+ + +
+ + + +
+
+

Cross-site Scripting (XSS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of special characters for ASCII that start with \x and also for all Unicodes start with \u.

+

PoC:

+
const http = require("http");
+        const parseUrl = require("parse-url");
+        const url =  parseUrl('jav\u000Dascript://%0aalert(1)');
+        console.log(url)
+        const server = http.createServer((request, response) => {
+            response.writeHead(200);
+            if (url.scheme !== "javascript" && url.scheme !== null) {
+                response.end("<a href=\'" + url.href + "\'>Wowww!</a>" );
+            }
+            else{
+                response.end("Nooo!");
+            }
+        });
+        server.listen(80, "127.0.0.1",function(){
+            console.log("http://"+this.address().address+":"+this.address().port);
+        });
+        
+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Information Exposure due to improper validation.

+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Cross-site Scripting (XSS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of special ASCII characters that start with \r\r or \r. + This vulnerability exists due to an incomplete fix for CVE-2022-2217.

+

PoC:

+
const http = require("http");
+        const parseUrl = require("parse-url");
+        const url =  parseUrl('jav\r\r\rascript://%0aalert(1)');
+        console.log(url)
+        const server = http.createServer((request, response) => {
+            response.writeHead(200);
+            if (url.scheme !== "javascript" && url.scheme !== null) {
+                response.end("<a href=\'" + url.href + "\'>Wowww!</a>" );
+            }
+            else{
+                response.end("Nooo!");
+            }
+        });
+        server.listen(80, "127.0.0.1",function(){
+            console.log("http://"+this.address().address+":"+this.address().port);
+        });
+        
+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Improper Certificate Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Improper Certificate Validation. Certificate validation is disabled by default when requesting binaries, even if the user is not specifying an alternative download path.

+

Remediation

+

Upgrade node-sass to version 7.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-Bounds

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-Bounds. A heap-based buffer over-read exists in Sass::Prelexer::parenthese_scope in prelexer.hpp. node-sass is affected by this vulnerability due to its bundled usage of libsass.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-bounds Read via Sass::weaveParents in ast_sel_weave.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Uncontrolled Recursion via Sass::Eval::operator()(Sass::Binary_Expression*) in eval.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Denial of Service (DoS). Uncontrolled recursion is possible in Sass::Complex_Selector::perform in ast.hpp and Sass::Inspect::operator in inspect.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to NULL Pointer Dereference via Sass::Parser::parseCompoundSelectorin parser_selectors.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Out-of-Bounds

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-Bounds via Sass::Prelexer::alternatives in prelexer.hpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-bounds Read. The function handle_error in sass_context.cpp allows attackers to cause a denial-of-service resulting from a heap-based buffer over-read via a crafted sass file. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Open Redirect

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Open Redirect via parseUrl function when it mishandles certain uses of backslash such as https:/\/\/\ and interprets the URI as a relative path.

+

PoC:

+

+        // poc.js
+        var forge = require("node-forge");
+        var url = forge.util.parseUrl("https:/\/\/\www.github.com/foo/bar");
+        console.log(url);
+        
+        // Output of node poc.js:
+        
+        {
+          full: 'https://',
+          scheme: 'https',
+          host: '',
+          port: 443,
+          path: '/www.github.com/foo/bar',                        <<<---- path  should be "/foo/bar"
+          fullHost: ''
+        }
+        
+

Remediation

+

Upgrade node-forge to version 1.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Prototype Pollution via the forge.debug API if called with untrusted input.

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade node-forge to version 1.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Improper Verification of Cryptographic Signature due to RSA's PKCS#1 v1.5 signature verification code which does not properly check DigestInfo for a proper ASN.1 structure. This can lead to successful verification with signatures that contain invalid structures but a valid digest.

+

Remediation

+

Upgrade node-forge to version 1.3.0 or higher.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Improper Verification of Cryptographic Signature due to RSAs PKCS#1` v1.5 signature verification code which is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used.

+

Remediation

+

Upgrade node-forge to version 1.3.0 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-fetch +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, argo-ui@1.0.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + portable-fetch@3.0.0 + + node-fetch@1.7.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-fetch is a light-weight module that brings window.fetch to node.js

+

Affected versions of this package are vulnerable to Information Exposure when fetching a remote url with Cookie, if it get a Location response header, it will follow that url and try to fetch that url with provided cookie. This can lead to forwarding secure headers to 3th party.

+

Remediation

+

Upgrade node-fetch to version 2.6.7, 3.1.1 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-fetch +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, argo-ui@1.0.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + portable-fetch@3.0.0 + + node-fetch@1.7.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-fetch is a light-weight module that brings window.fetch to node.js

+

Affected versions of this package are vulnerable to Denial of Service. Node Fetch did not honor the size option after following a redirect, which means that when a content size was over the limit, a FetchError would never get thrown and the process would end without failure.

+

Remediation

+

Upgrade node-fetch to version 2.6.1, 3.0.0-beta.9 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + marked +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + marked@0.7.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

marked is a low-level compiler for parsing markdown without caching or blocking for long periods of time.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) when passing unsanitized user input to inline.reflinkSearch, if it is not being parsed by a time-limited worker thread.

+

PoC

+
import * as marked from 'marked';
+        
+        console.log(marked.parse(`[x]: x
+        
+        \\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](\\[\\](`));
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade marked to version 4.0.10 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + marked +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + marked@0.7.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

marked is a low-level compiler for parsing markdown without caching or blocking for long periods of time.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) when unsanitized user input is passed to block.def.

+

PoC

+
import * as marked from "marked";
+        marked.parse(`[x]:${' '.repeat(1500)}x ${' '.repeat(1500)} x`);
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade marked to version 4.0.10 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + marked +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + marked@0.7.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

marked is a low-level compiler for parsing markdown without caching or blocking for long periods of time.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). The em regex within src/rules.js file have multiple unused capture groups which could lead to a denial of service attack if user input is reachable.

+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade marked to version 1.1.1 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + jsonpointer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + swagger2openapi@6.2.3 + + better-ajv-errors@0.6.7 + + jsonpointer@4.1.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + swagger2openapi@6.2.3 + + oas-validator@4.0.8 + + better-ajv-errors@0.6.7 + + jsonpointer@4.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

jsonpointer is a Simple JSON Addressing.

+

Affected versions of this package are vulnerable to Prototype Pollution. A type confusion vulnerability can lead to a bypass of a previous Prototype Pollution fix when the pointer components are arrays.

+

PoC

+
const jsonpointer = require('jsonpointer');
+        
+        // jsonpointer.set({}, ['__proto__', '__proto__', 'polluted'], 'yes');
+        // console.log(polluted); // ReferenceError: polluted is not defined
+        
+        jsonpointer.set({}, [['__proto__'], ['__proto__'], 'polluted'], 'yes');
+        console.log(polluted); // yes
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade jsonpointer to version 5.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + json-pointer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.40 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + json-pointer@0.6.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.40 + + openapi-sampler@1.1.0 + + json-pointer@0.6.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

json-pointer is a set of utilities for JSON pointers described by RFC 6901

+

Affected versions of this package are vulnerable to Prototype Pollution. A type confusion vulnerability can lead to a bypass of CVE-2020-7709 when the pointer components are arrays.

+

PoC

+
const pointer = require('json-pointer');
+        
+        // pointer.set({}, ['__proto__', 'polluted'], 'yes')
+        // console.log(polluted) // ReferenceError: polluted is not defined
+        
+        pointer.set({}, [['__proto__'], 'polluted'], 'yes')
+        console.log(polluted)"
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

A fix was pushed into the master branch but not yet published.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + golang.org/x/text/internal/language +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, sigs.k8s.io/controller-runtime/pkg/envtest@0.8.3 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/internal/testing/integration@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/internal/testing/integration/internal@0.8.3 + + github.com/onsi/gomega/gexec@1.15.0 + + github.com/onsi/gomega@1.15.0 + + github.com/onsi/gomega/matchers@1.15.0 + + golang.org/x/net/html/charset@#04defd469f4e + + golang.org/x/text/encoding/htmlindex@0.3.6 + + golang.org/x/text/language@0.3.6 + + golang.org/x/text/internal/language@0.3.6 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/internal/testing/integration@0.8.3 + + sigs.k8s.io/controller-runtime/pkg/internal/testing/integration/internal@0.8.3 + + github.com/onsi/gomega/gexec@1.15.0 + + github.com/onsi/gomega@1.15.0 + + github.com/onsi/gomega/matchers@1.15.0 + + golang.org/x/net/html/charset@#04defd469f4e + + golang.org/x/text/encoding/htmlindex@0.3.6 + + golang.org/x/text/language@0.3.6 + + golang.org/x/text/internal/language/compact@0.3.6 + + golang.org/x/text/internal/language@0.3.6 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Out-of-bounds Read due to improper index calculation, an incorrectly formatted language tag can cause Parse to panic. If Parse is used to process untrusted user inputs, this may be used as a vector for a denial of service attack.

+

Remediation

+

Upgrade golang.org/x/text/internal/language to version 0.3.7 or higher.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + go.mongodb.org/mongo-driver/bson/bsonrw +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/go-openapi/runtime/middleware@0.19.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.2 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.1 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.1 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.2 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.1 + + go.mongodb.org/mongo-driver/bson/bsoncodec@1.1.1 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

go.mongodb.org/mongo-driver/bson/bsonrw is a The MongoDB supported driver for Go.

+

Affected versions of this package are vulnerable to Improper Input Validation. Specific cstrings input may not be properly validated in the MongoDB Go Driver when marshalling Go objects into BSON. A malicious user could use a Go object with specific string to potentially inject additional fields into marshalled documents.

+

Remediation

+

Upgrade go.mongodb.org/mongo-driver/bson/bsonrw to version 1.5.1 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + glob-parent +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + glob-parent@3.1.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + glob-parent@3.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

glob-parent is a package that helps extracting the non-magic parent path from a glob string.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). The enclosure regex used to check for strings ending in enclosure containing path separator.

+

PoC by Yeting Li

+
var globParent = require("glob-parent")
+        function build_attack(n) {
+        var ret = "{"
+        for (var i = 0; i < n; i++) {
+        ret += "/"
+        }
+        
+        return ret;
+        }
+        
+        globParent(build_attack(5000));
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade glob-parent to version 5.1.2 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + github.com/prometheus/client_golang/prometheus/promhttp +
  • + +
  • Introduced through: + + github.com/argoproj/argo-cd/v2@0.0.0 and github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/component-base/metrics/prometheus/workqueue@0.22.2 + + k8s.io/component-base/metrics/legacyregistry@0.22.2 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/component-base/metrics/prometheus/workqueue@0.22.2 + + k8s.io/component-base/metrics/legacyregistry@0.22.2 + + k8s.io/component-base/metrics@0.22.2 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Denial of Service (DoS) when handling requests with non-standard HTTP methods.

+

Note: In order to be affected, an instrumented software must:

+
    +
  1. use promhttp.InstrumentHandler* middleware except RequestsInFlight

    +
  2. +
  3. not filter any specific methods (e.g GET) before middleware

    +
  4. +
  5. pass metric with method label name to the middleware

    +
  6. +
  7. not have any firewall/LB/proxy that filters away requests with unknown method.

    +
  8. +
+

Workarounds:

+
    +
  1. removing the method label name from counter/gauge used in the InstrumentHandler

    +
  2. +
  3. turning off affected promhttp handlers

    +
  4. +
  5. adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request

    +
  6. +
  7. using a reverse proxy or web application firewall, configured to only allow a limited set of methods.

    +
  8. +
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade github.com/prometheus/client_golang/prometheus/promhttp to version 1.11.1 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + follow-redirects +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + http-proxy@1.18.1 + + follow-redirects@1.14.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Information Exposure by leaking the cookie header to a third party site in the process of fetching a remote URL with the cookie in the request body. If the response contains a location header, it will follow the redirect to another URL of a potentially malicious actor, to which the cookie would be exposed.

+

Remediation

+

Upgrade follow-redirects to version 1.14.7 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + eventsource +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Information Exposure by allowing cookies and the authorization headers to be leaked to external sites.

+

Remediation

+

Upgrade eventsource to version 1.1.1, 2.0.2 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + minimist +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, ts-node@4.1.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + ts-node@4.1.0 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + jest-junit@6.4.0 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + ts-node@4.1.0 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + tslint@6.1.3 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + copy-webpack-plugin@6.1.1 + + loader-utils@2.0.0 + + json5@2.2.0 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + portfinder@1.0.28 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + webpack-dev-middleware@3.7.3 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + sass-loader@6.0.7 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + source-map-loader@0.2.4 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + style-loader@0.20.3 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + ts-loader@6.0.4 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + loader-utils@1.4.0 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + cacache@12.0.4 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + cacache@12.0.4 + + move-concurrently@1.0.1 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + cacache@12.0.4 + + move-concurrently@1.0.1 + + copy-concurrently@1.0.5 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
+ +
+ +
+ +

Overview

+

minimist is a parse argument options module.

+

Affected versions of this package are vulnerable to Prototype Pollution due to a missing handler to Function.prototype.

+

Notes:

+
    +
  • This vulnerability is a bypass to CVE-2020-7598

    +
  • +
  • The reason for the different CVSS between CVE-2021-44906 to CVE-2020-7598, is that CVE-2020-7598 can pollute objects, while CVE-2021-44906 can pollute only function.

    +
  • +
+

PoC by Snyk

+
require('minimist')('--_.constructor.constructor.prototype.foo bar'.split(' '));
+        console.log((function(){}).foo); // bar
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade minimist to version 1.2.6 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + follow-redirects +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + http-proxy@1.18.1 + + follow-redirects@1.14.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Information Exposure due a leakage of the Authorization header from the same hostname during HTTPS to HTTP redirection. An attacker who can listen in on the wire (or perform a MITM attack) will be able to receive the Authorization header due to the usage of the insecure HTTP protocol which does not verify the hostname the request is sending to.

+

Remediation

+

Upgrade follow-redirects to version 1.14.8 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.2.11/ghcr.io_dexidp_dex:v2.30.2.html b/docs/snyk/v2.2.11/ghcr.io_dexidp_dex:v2.30.2.html new file mode 100644 index 0000000000..46f1eb81e0 --- /dev/null +++ b/docs/snyk/v2.2.11/ghcr.io_dexidp_dex:v2.30.2.html @@ -0,0 +1,1291 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:04:45 pm

+
+
+ Scanned the following path: +
    +
  • ghcr.io/dexidp/dex:v2.30.2/dexidp/dex (apk)
  • +
+
+ +
+
6 known vulnerabilities
+
36 vulnerable dependency paths
+
16 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|ghcr.io/dexidp/dex
Path ghcr.io/dexidp/dex:v2.30.2/dexidp/dex
Package Manager apk
+
+
+
+
+

CVE-2022-28391

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and busybox/busybox@1.33.1-r6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + alpine-baselayout/alpine-baselayout@3.2.0-r16 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.14 relevant versions.

+

BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.

+

Remediation

+

Upgrade Alpine:3.14 busybox to version 1.33.1-r7 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + zlib/zlib +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and zlib/zlib@1.2.11-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + zlib/zlib@1.2.11-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Alpine:3.14 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Alpine:3.14 zlib to version 1.2.12-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and openssl/libcrypto1.1@1.1.1l-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.14 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.14 openssl to version 1.1.1n-r0 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and openssl/libcrypto1.1@1.1.1l-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.14 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.14 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + libretls/libretls +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and libretls/libretls@3.3.3p1-r2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + libretls/libretls@3.3.3p1-r2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libretls package. + See How to fix? for Alpine:3.14 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.14 libretls to version 3.3.3p1-r3 or higher.

+

References

+ + +
+ + + +
+
+

ALPINE-13661

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and busybox/busybox@1.33.1-r6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + alpine-baselayout/alpine-baselayout@3.2.0-r16 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Alpine:3.14 busybox to version 1.33.1-r7 or higher.

+ +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.2.11/haproxy:2.0.25-alpine.html b/docs/snyk/v2.2.11/haproxy:2.0.25-alpine.html new file mode 100644 index 0000000000..2825c44451 --- /dev/null +++ b/docs/snyk/v2.2.11/haproxy:2.0.25-alpine.html @@ -0,0 +1,1375 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:04:49 pm

+
+
+ Scanned the following path: +
    +
  • haproxy:2.0.25-alpine (apk)
  • +
+
+ +
+
8 known vulnerabilities
+
33 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|haproxy
Path haproxy:2.0.25-alpine
Package Manager apk
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + pcre2/pcre2 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and pcre2/pcre2@10.39-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + pcre2/pcre2@10.39-r0 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + pcre2/pcre2@10.39-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package. + See How to fix? for Alpine:3.15 relevant versions.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

Upgrade Alpine:3.15 pcre2 to version 10.40-r0 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + pcre2/pcre2 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and pcre2/pcre2@10.39-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + pcre2/pcre2@10.39-r0 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + pcre2/pcre2@10.39-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package. + See How to fix? for Alpine:3.15 relevant versions.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

Upgrade Alpine:3.15 pcre2 to version 10.40-r0 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2022-28391

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and busybox/busybox@1.34.1-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + alpine-baselayout/alpine-baselayout@3.2.0-r18 + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.15 relevant versions.

+

BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.

+

Remediation

+

Upgrade Alpine:3.15 busybox to version 1.34.1-r5 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + zlib/zlib +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and zlib/zlib@1.2.11-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + zlib/zlib@1.2.11-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Alpine:3.15 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Alpine:3.15 zlib to version 1.2.12-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and openssl/libcrypto1.1@1.1.1l-r7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1n-r0 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and openssl/libcrypto1.1@1.1.1l-r7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + libretls/libretls +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and libretls/libretls@3.3.4-r2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + libretls/libretls@3.3.4-r2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libretls package. + See How to fix? for Alpine:3.15 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.15 libretls to version 3.3.4-r3 or higher.

+

References

+ + +
+ + + +
+
+

ALPINE-13661

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and busybox/busybox@1.34.1-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + alpine-baselayout/alpine-baselayout@3.2.0-r18 + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Alpine:3.15 busybox to version 1.34.1-r5 or higher.

+ +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.2.11/quay.io_argoproj_argocd:v2.2.11.html b/docs/snyk/v2.2.11/quay.io_argoproj_argocd:v2.2.11.html new file mode 100644 index 0000000000..c302211965 --- /dev/null +++ b/docs/snyk/v2.2.11/quay.io_argoproj_argocd:v2.2.11.html @@ -0,0 +1,4486 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:05:39 pm

+
+
+ Scanned the following path: +
    +
  • quay.io/argoproj/argocd:v2.2.11/argoproj/argocd (deb)
  • +
+
+ +
+
29 known vulnerabilities
+
185 vulnerable dependency paths
+
264 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|quay.io/argoproj/argocd
Path quay.io/argoproj/argocd:v2.2.11/argoproj/argocd
Package Manager deb
Manifest Dockerfile
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, gnupg2/gpg@2.2.20-1ubuntu3 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + gnupg2/gpg@2.2.20-1ubuntu3 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + python3-defaults/libpython3-dev@3.9.4-1 + + python3.9/libpython3.9-dev@3.9.5-3ubuntu0~21.04.1 + + python3.9/libpython3.9-stdlib@3.9.5-3ubuntu0~21.04.1 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An out-of-bounds read was addressed with improved bounds checking. This issue is fixed in iOS 13.5 and iPadOS 13.5, macOS Catalina 10.15.5, tvOS 13.4.5, watchOS 6.2.5, iTunes 12.10.7 for Windows, iCloud for Windows 11.2, iCloud for Windows 7.19. A malicious application may cause a denial of service or potentially disclose memory contents.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + perl/perl-modules-5.32 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, git@1:2.30.2-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + perl@5.32.1-3ubuntu2.1 + + perl/perl-modules-5.32@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + perl@5.32.1-3ubuntu2.1 + + perl/libperl5.32@5.32.1-3ubuntu2.1 + + perl/perl-modules-5.32@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + perl@5.32.1-3ubuntu2.1 + + perl/libperl5.32@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + perl@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + libalgorithm-diff-xs-perl@0.04-6build1 + + perl@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + libalgorithm-merge-perl@0.08-3 + + perl@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + libfile-fcntllock-perl@0.22-3build5 + + perl@5.32.1-3ubuntu2.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + perl/perl-base@5.32.1-3ubuntu2.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream perl package.

+

CPAN 2.28 allows Signature Verification Bypass.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 perl.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + krb5/krb5-locales +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and krb5/krb5-locales@1.18.3-4 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + krb5/krb5-locales@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libgssapi-krb5-2@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libk5crypto3@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libkrb5-3@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libkrb5support0@1.18.3-4 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

ec_verify in kdc/kdc_preauth_ec.c in the Key Distribution Center (KDC) in MIT Kerberos 5 (aka krb5) before 1.18.4 and 1.19.x before 1.19.2 allows remote attackers to cause a NULL pointer dereference and daemon crash. This occurs because a return value is not properly managed in a certain situation.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 krb5.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + glibc/libc6-dev +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and glibc/libc6-dev@2.33-0ubuntu5 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + expat/libexpat1-dev@2.2.10-2 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + python3-defaults/libpython3-dev@3.9.4-1 + + python3.9/libpython3.9-dev@3.9.5-3ubuntu0~21.04.1 + + zlib/zlib1g-dev@1:1.2.11.dfsg-2ubuntu6 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/g++@4:10.3.0-1ubuntu1 + + gcc-10/g++-10@10.3.0-1ubuntu1 + + gcc-10/libstdc++-10-dev@10.3.0-1ubuntu1 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-dev-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + glibc/libc6-dev@2.33-0ubuntu5 + + glibc/libc-dev-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-devtools@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + glibc/libc6@2.33-0ubuntu5 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

In librt in the GNU C Library (aka glibc) through 2.34, sysdeps/unix/sysv/linux/mq_notify.c mishandles certain NOTIFY_REMOVED data, leading to a NULL pointer dereference. NOTE: this vulnerability was introduced as a side effect of the CVE-2021-33574 fix.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 glibc.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + tiff/libtiff5 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and tiff/libtiff5@4.2.0-1build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + tiff/libtiff5@4.2.0-1build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-devtools@2.33-0ubuntu5 + + libgd2/libgd3@2.3.0-2ubuntu0.1 + + tiff/libtiff5@4.2.0-1build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream tiff package.

+

LibTIFF 4.0.9 has a NULL pointer dereference in the jpeg_fdct_16x16 function in jfdctint.c.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 tiff.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + tar +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + tar@1.34+dfsg-1build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream tar package.

+

pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 tar.

+

References

+ + +
+ + + +
+
+

CVE-2020-9991

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, gnupg2/gpg@2.2.20-1ubuntu3 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + gnupg2/gpg@2.2.20-1ubuntu3 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + python3-defaults/libpython3-dev@3.9.4-1 + + python3.9/libpython3.9-dev@3.9.5-3ubuntu0~21.04.1 + + python3.9/libpython3.9-stdlib@3.9.5-3ubuntu0~21.04.1 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

This issue was addressed with improved checks. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iCloud for Windows 7.21, tvOS 14.0. A remote attacker may be able to cause a denial of service.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, gnupg2/gpg@2.2.20-1ubuntu3 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + gnupg2/gpg@2.2.20-1ubuntu3 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + python3-defaults/libpython3-dev@3.9.4-1 + + python3.9/libpython3.9-dev@3.9.5-3ubuntu0~21.04.1 + + python3.9/libpython3.9-stdlib@3.9.5-3ubuntu0~21.04.1 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + sqlite3/libsqlite3-0@3.34.1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An information disclosure issue was addressed with improved state management. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iTunes for Windows 12.10.9, iCloud for Windows 11.5, tvOS 14.0. A remote attacker may be able to leak memory.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Time-of-check Time-of-use (TOCTOU)

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + shadow/passwd +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and shadow/passwd@1:4.8.1-1ubuntu8.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + shadow/passwd@1:4.8.1-1ubuntu8.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu8.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + openssh/openssh-client@1:8.4p1-5ubuntu1.2 + + shadow/passwd@1:4.8.1-1ubuntu8.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + shadow/login@1:4.8.1-1ubuntu8.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + util-linux/mount@2.36.1-7ubuntu2 + + util-linux@2.36.1-7ubuntu2 + + shadow/login@1:4.8.1-1ubuntu8.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream shadow package.

+

shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees

+

Remediation

+

There is no fixed version for Ubuntu:21.04 shadow.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and pcre3/libpcre3@2:8.39-13build3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + grep@3.6-1 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package.

+

libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \X or \R has more than one fixed quantifier, a related issue to CVE-2019-20454.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 pcre3.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and pcre3/libpcre3@2:8.39-13build3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + grep@3.6-1 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package.

+

In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 pcre3.

+

References

+ + +
+ + + +
+
+

Double Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and patch@2.7.6-7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + patch@2.7.6-7 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + dpkg/dpkg-dev@1.20.9ubuntu1 + + patch@2.7.6-7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

A double free exists in the another_hunk function in pch.c in GNU patch through 2.7.6.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 patch.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and openssh/openssh-client@1:8.4p1-5ubuntu1.2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + openssh/openssh-client@1:8.4p1-5ubuntu1.2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

The client side in OpenSSH 5.7 through 8.4 has an Observable Discrepancy leading to an information leak in the algorithm negotiation. This allows man-in-the-middle attackers to target initial connection attempts (where no host key for the server has been cached by the client). NOTE: some reports state that 8.5 and 8.6 are also affected.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 openssh.

+

References

+ + +
+ + + +
+
+

CVE-2021-41617

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and openssh/openssh-client@1:8.4p1-5ubuntu1.2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + openssh/openssh-client@1:8.4p1-5ubuntu1.2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

sshd in OpenSSH 6.2 through 8.x before 8.8, when certain non-default configurations are used, allows privilege escalation because supplemental groups are not initialized as expected. Helper programs for AuthorizedKeysCommand and AuthorizedPrincipalsCommand may run with privileges associated with group memberships of the sshd process, if the configuration specifies running the command as a different user.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 openssh.

+

References

+ + +
+ + + +
+
+

CVE-2018-1000654

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + libtasn1-6 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and libtasn1-6@4.16.0-2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + libtasn1-6@4.16.0-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + apt@2.2.4ubuntu0.1 + + gnutls28/libgnutls30@3.7.1-3ubuntu1 + + libtasn1-6@4.16.0-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libtasn1-6 package.

+

GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 libtasn1-6.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + libgd2/libgd3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and libgd2/libgd3@2.3.0-2ubuntu0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + libgd2/libgd3@2.3.0-2ubuntu0.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-devtools@2.33-0ubuntu5 + + libgd2/libgd3@2.3.0-2ubuntu0.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libgd2 package.

+

The GD Graphics Library (aka LibGD) through 2.3.2 has an out-of-bounds read because of the lack of certain gdGetBuf and gdPutBuf return value checks.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 libgd2.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + krb5/krb5-locales +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and krb5/krb5-locales@1.18.3-4 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + krb5/krb5-locales@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libgssapi-krb5-2@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libk5crypto3@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libkrb5-3@1.18.3-4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + krb5/libkrb5support0@1.18.3-4 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 krb5.

+

References

+ + +
+ + + +
+
+

Out-of-Bounds

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + jbigkit/libjbig0 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and jbigkit/libjbig0@2.1-3.1build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + jbigkit/libjbig0@2.1-3.1build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-devtools@2.33-0ubuntu5 + + libgd2/libgd3@2.3.0-2ubuntu0.1 + + tiff/libtiff5@4.2.0-1build1 + + jbigkit/libjbig0@2.1-3.1build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream jbigkit package.

+

In LibTIFF 4.0.8, there is a memory malloc failure in tif_jbig.c. A crafted TIFF document can lead to an abort resulting in a remote denial of service attack.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 jbigkit.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + heimdal/libhcrypto4-heimdal +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, git@1:2.30.2-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libhcrypto4-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libhcrypto4-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + heimdal/libhcrypto4-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + heimdal/libhx509-5-heimdal@7.7.0+dfsg-2 + + heimdal/libhcrypto4-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libwind0-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + heimdal/libwind0-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + heimdal/libhx509-5-heimdal@7.7.0+dfsg-2 + + heimdal/libwind0-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + heimdal/libhx509-5-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + heimdal/libkrb5-26-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + heimdal/libheimntlm0-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1ubuntu2.3 + + openldap/libldap-2.4-2@2.4.57+dfsg-2ubuntu1 + + heimdal/libgssapi3-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + heimdal/libasn1-8-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + heimdal/libheimbase1-heimdal@7.7.0+dfsg-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + heimdal/libroken18-heimdal@7.7.0+dfsg-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream heimdal package.

+

A null pointer de-reference was found in the way samba kerberos server handled missing sname in TGS-REQ (Ticket Granting Server - Request). An authenticated user could use this flaw to crash the samba server.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 heimdal.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + gmp/libgmp10 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream gmp package.

+

GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 gmp.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + glibc/libc6-dev +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and glibc/libc6-dev@2.33-0ubuntu5 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + expat/libexpat1-dev@2.2.10-2 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + python3-defaults/libpython3-dev@3.9.4-1 + + python3.9/libpython3.9-dev@3.9.5-3ubuntu0~21.04.1 + + zlib/zlib1g-dev@1:1.2.11.dfsg-2ubuntu6 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/g++@4:10.3.0-1ubuntu1 + + gcc-10/g++-10@10.3.0-1ubuntu1 + + gcc-10/libstdc++-10-dev@10.3.0-1ubuntu1 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-dev-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + glibc/libc6-dev@2.33-0ubuntu5 + + glibc/libc-dev-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-devtools@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + glibc/libc6@2.33-0ubuntu5 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 glibc.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + glibc/libc6-dev +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and glibc/libc6-dev@2.33-0ubuntu5 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + expat/libexpat1-dev@2.2.10-2 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + python3-defaults/libpython3-dev@3.9.4-1 + + python3.9/libpython3.9-dev@3.9.5-3ubuntu0~21.04.1 + + zlib/zlib1g-dev@1:1.2.11.dfsg-2ubuntu6 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/g++@4:10.3.0-1ubuntu1 + + gcc-10/g++-10@10.3.0-1ubuntu1 + + gcc-10/libstdc++-10-dev@10.3.0-1ubuntu1 + + glibc/libc6-dev@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-dev-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + glibc/libc6-dev@2.33-0ubuntu5 + + glibc/libc-dev-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-bin@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + glibc/libc-devtools@2.33-0ubuntu5 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + meta-common-packages@meta + + glibc/libc6@2.33-0ubuntu5 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 glibc.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.2.11, git@1:2.30.2-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + git/git-man@1:2.30.2-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git@1:2.30.2-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + git-lfs@2.13.2-1 + + git@1:2.30.2-1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package.

+

GIT version 2.15.1 and earlier contains a Input Validation Error vulnerability in Client that can result in problems including messing up terminal configuration to RCE. This attack appear to be exploitable via The user must interact with a malicious git server, (or have their traffic modified in a MITM attack).

+

Remediation

+

There is no fixed version for Ubuntu:21.04 git.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + coreutils +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and coreutils@8.32-4ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + coreutils@8.32-4ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + fontconfig/fontconfig-config@2.13.1-4.2ubuntu3 + + ucf@3.0043 + + coreutils@8.32-4ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream coreutils package.

+

chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 coreutils.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + binutils/binutils-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and binutils/binutils-common@2.36.1-6ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + dpkg/dpkg-dev@1.20.9ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/gcc@4:10.3.0-1ubuntu1 + + gcc-10@10.3.0-1ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream binutils package.

+

GNU binutils gold gold v1.11-v1.16 (GNU binutils v2.21-v2.31.1) is affected by: Improper Input Validation, Signed/Unsigned Comparison, Out-of-bounds Read. The impact is: Denial of service. The component is: gold/fileread.cc:497, elfcpp/elfcpp_file.h:644. The attack vector is: An ELF file with an invalid e_shoff header field must be opened.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 binutils.

+

References

+ + +
+ + + +
+
+

Missing Release of Resource after Effective Lifetime

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + binutils/binutils-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and binutils/binutils-common@2.36.1-6ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + dpkg/dpkg-dev@1.20.9ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/gcc@4:10.3.0-1ubuntu1 + + gcc-10@10.3.0-1ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream binutils package.

+

The demangle_template function in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.31.1, has a memory leak via a crafted string, leading to a denial of service (memory consumption), as demonstrated by cxxfilt, a related issue to CVE-2018-12698.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 binutils.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + binutils/binutils-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and binutils/binutils-common@2.36.1-6ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + dpkg/dpkg-dev@1.20.9ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/gcc@4:10.3.0-1ubuntu1 + + gcc-10@10.3.0-1ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream binutils package.

+

The C++ symbol demangler routine in cplus-dem.c in libiberty, as distributed in GNU Binutils 2.29, allows remote attackers to cause a denial of service (excessive memory allocation and application crash) via a crafted file, as demonstrated by a call from the Binary File Descriptor (BFD) library (aka libbfd).

+

Remediation

+

There is no fixed version for Ubuntu:21.04 binutils.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + binutils/binutils-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and binutils/binutils-common@2.36.1-6ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + dpkg/dpkg-dev@1.20.9ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/gcc@4:10.3.0-1ubuntu1 + + gcc-10@10.3.0-1ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream binutils package.

+

A flaw was discovered in GNU libiberty within demangle_path() in rust-demangle.c, as distributed in GNU Binutils version 2.36. A crafted symbol can cause stack memory to be exhausted leading to a crash.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 binutils.

+

References

+ + +
+ + + +
+
+

CVE-2021-3648

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.04 +
  • +
  • + Vulnerable module: + + binutils/binutils-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.2.11 and binutils/binutils-common@2.36.1-6ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/binutils-common@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + binutils/libbinutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf-nobfd0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + binutils/libctf0@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + binutils/binutils-x86-64-linux-gnu@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + dpkg/dpkg-dev@1.20.9ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.2.11 + + build-essential@12.8ubuntu3 + + gcc-defaults/gcc@4:10.3.0-1ubuntu1 + + gcc-10@10.3.0-1ubuntu1 + + binutils@2.36.1-6ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream binutils package.

+

** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2021-3530. Reason: This candidate is a reservation duplicate of CVE-2021-3530. Notes: All CVE users should reference CVE-2021-3530 instead of this candidate. All references and descriptions in this candidate have been removed to prevent accidental usage.

+

Remediation

+

There is no fixed version for Ubuntu:21.04 binutils.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.2.11/redis:6.2.6-alpine.html b/docs/snyk/v2.2.11/redis:6.2.6-alpine.html new file mode 100644 index 0000000000..136c6d73f1 --- /dev/null +++ b/docs/snyk/v2.2.11/redis:6.2.6-alpine.html @@ -0,0 +1,651 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:05:44 pm

+
+
+ Scanned the following path: +
    +
  • redis:6.2.6-alpine (apk)
  • +
+
+ +
+
1 known vulnerabilities
+
9 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|redis
Path redis:6.2.6-alpine
Package Manager apk
+
+
+
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|redis@6.2.6-alpine and openssl/libcrypto1.1@1.1.1n-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + openssl/libssl1.1@1.1.1n-r0 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + .redis-rundeps@20220405.104447 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + libretls/libretls@3.3.4-r3 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + .redis-rundeps@20220405.104447 + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + libretls/libretls@3.3.4-r3 + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.3.6/argocd-iac-install.html b/docs/snyk/v2.3.6/argocd-iac-install.html new file mode 100644 index 0000000000..8c03c2a260 --- /dev/null +++ b/docs/snyk/v2.3.6/argocd-iac-install.html @@ -0,0 +1,3263 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:03:56 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/install.yaml (Kubernetes)
  • +
+
+ +
+
50 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/install.yaml
Path /private/argo-cd/manifests/install.yaml
Project Type Kubernetes
+
+
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[dex] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 9874 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 9986 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 9986 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 9] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9172 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 9211 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 11] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9272 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 12] + + role + + rules[1] + + resources + +
  • + +
  • + Line number: 9291 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 12] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 9291 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 13] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9332 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 45] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9864 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9986 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10035 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10244 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 47] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10494 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 42] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 9871 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 9986 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 41] + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + livenessProbe + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 42] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 9864 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 42] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 44] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 9986 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 45] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9800 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9864 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9884 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9920 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9986 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10169 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10035 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10244 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 47] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10494 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/v2.3.6/argocd-iac-namespace-install.html b/docs/snyk/v2.3.6/argocd-iac-namespace-install.html new file mode 100644 index 0000000000..1f90b10bda --- /dev/null +++ b/docs/snyk/v2.3.6/argocd-iac-namespace-install.html @@ -0,0 +1,3263 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:04:25 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/namespace-install.yaml (Kubernetes)
  • +
+
+ +
+
50 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/namespace-install.yaml
Path /private/argo-cd/manifests/namespace-install.yaml
Project Type Kubernetes
+
+
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 7170 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 7216 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 7282 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container does not drop all default capabilities

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-6 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + capabilities + + drop + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

Containers are running with potentially unnecessary privileges

+ +

Remediation

+

Add `ALL` to `securityContext.capabilities.drop` list, and add only required capabilities in `securityContext.capabilities.add`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 7216 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 7282 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without privilege escalation control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-9 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + allowPrivilegeEscalation + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

Processes could elevate current privileges via known vectors, for example SUID binaries

+ +

Remediation

+

Set `securityContext.allowPrivilegeEscalation` to `false`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Container is running without root user control

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-10 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + runAsNonRoot + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

Container could be running with full administrative privileges

+ +

Remediation

+

Set `securityContext.runAsNonRoot` to `true`

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 7] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 6553 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 8] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 6592 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 9] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 6653 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[1] + + resources + +
  • + +
  • + Line number: 6672 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 6672 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 11] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 6713 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 39] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7160 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7216 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7282 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7331 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 40] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7540 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 7790 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 7167 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 7216 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 7282 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 35] + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + livenessProbe + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 7160 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 38] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 7282 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 39] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7096 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7160 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7180 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7216 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7282 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7465 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7331 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 40] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7540 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 7790 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/v2.3.6/argocd-test.html b/docs/snyk/v2.3.6/argocd-test.html new file mode 100644 index 0000000000..8284604c11 --- /dev/null +++ b/docs/snyk/v2.3.6/argocd-test.html @@ -0,0 +1,7745 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:02:19 pm

+
+
+ Scanned the following paths: +
    +
  • /private/argo-cd/argoproj/argo-cd/v2 (gomodules)
  • /private/argo-cd (yarn)
  • +
+
+ +
+
41 known vulnerabilities
+
176 vulnerable dependency paths
+
2209 dependencies
+
+
+
+
+ +
+
+
+

Server-side Request Forgery (SSRF)

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) in the parseUrl function, due to mishandling hostnames when processing usernames and passwords.

+

PoC:

+
const parseUrl = require("parse-url");
+        const express = require('express');
+        const http = require('http');
+        const app = express();
+        
+        const isLocal = () => (req, res, next) => (req.connection.remoteAddress === '::ffff:127.0.0.1'|| req.connection.remoteAddress === '::1' ? true:false)
+            ? next()
+            : res.json({'state':'You\'re not locally'});
+        
+        parsed = parseUrl("http://google:com:@@127.0.0.1:9999/ssrf_check");
+        console.log(parsed);
+        
+        app.get('/', (req, res) => {
+            if(parsed.resource == '127.0.0.1'){
+                res.send('Not good');
+            } else{
+                http.get(parsed.href)
+                res.send('Good');
+            }
+        });
+        
+        app.get('/ssrf_check', isLocal(), (req, res) =>{
+            console.log('ssrf bypass');
+            res.send(true);
+        });
+        
+        app.listen(9999);
+        
+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + url-parse +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + url-parse@1.5.7 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + original@1.0.2 + + url-parse@1.5.7 + + + +
  • +
+ +
+ +
+ +

Overview

+

url-parse is a Small footprint URL parser that works seamlessly across Node.js and browser environments.

+

Affected versions of this package are vulnerable to Improper Input Validation due to improper fix of CVE-2020-8124 , it is possible to be exploited via the \b (backspace) character.

+

PoC:

+
const parse = require('./index.js')
+        
+        url = parse('\bhttp://google.com')
+        
+        console.log(url)
+        
+

Output:

+
{
+          slashes: false,
+          protocol: '',
+          hash: '',
+          query: '',
+          pathname: '\bhttp://google.com',
+          auth: '',
+          host: '',
+          port: '',
+          hostname: '',
+          password: '',
+          username: '',
+          origin: 'null',
+          href: '\bhttp://google.com'
+        }
+        
+

Remediation

+

Upgrade url-parse to version 1.5.9 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + unset-value +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack@4.44.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + findup-sync@3.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + braces@2.3.2 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + nanomatch@1.2.13 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + anymatch@2.0.0 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + readdirp@2.2.1 + + micromatch@3.1.10 + + extglob@2.0.4 + + expand-brackets@2.1.4 + + snapdragon@0.8.2 + + base@0.11.2 + + cache-base@1.0.1 + + unset-value@1.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Prototype Pollution via the unset function in index.js, because it allows access to object prototype properties.

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade unset-value to version 2.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Authorization Bypass Through User-Controlled Key

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-path +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + parse-path@4.0.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-path is a Parse paths (local paths, urls: ssh/git/etc)

+

Affected versions of this package are vulnerable to Authorization Bypass Through User-Controlled Key which is unable to detect the right resource.

+

Remediation

+

Upgrade parse-path to version 5.0.0 or higher.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to NULL Pointer Dereference in the function Sass::Functions::selector_append which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact. node-sass is affected by this vulnerability due to its bundled usage of libsass.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Use After Free via the SharedPtr class in SharedPtr.cpp (or SharedPtr.hpp) that may cause a denial of service (application crash) or possibly have unspecified other impact. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Improper Verification of Cryptographic Signature due to RSA's PKCS#1 v1.5 signature verification code which does not check for tailing garbage bytes after decoding a DigestInfo ASN.1 structure. This can allow padding bytes to be removed and garbage data added to forge a signature when a low public exponent is being used.

+

Remediation

+

Upgrade node-forge to version 1.3.0 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + moment +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and moment@2.29.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + antd@4.18.3 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + moment-timezone@0.5.33 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + antd@4.18.3 + + rc-picker@2.5.19 + + moment@2.29.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

moment is a lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the preprocessRFC2822() function in from-string.js, when processing a very long crafted string (over 10k characters).

+

PoC:

+
moment("(".repeat(500000))
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade moment to version 2.29.4 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + json-schema +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, node-sass@6.0.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + request@2.88.0 + + http-signature@1.2.0 + + jsprim@1.4.1 + + json-schema@0.2.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + node-gyp@7.1.2 + + request@2.88.2 + + http-signature@1.2.0 + + jsprim@1.4.1 + + json-schema@0.2.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Prototype Pollution via the validate function, which when given a special payload will pollute Object with undesired attributes.

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade json-schema to version 0.4.0 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + gopkg.in/yaml.v3 +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/mock@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/controller@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.6.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.6.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.6.2 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#91deed20b998 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#91deed20b998 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#91deed20b998 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.6.2 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.6.2 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.6.2 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.0 + + github.com/stretchr/testify/assert@1.7.0 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
+ +
+ +
+ +

Overview

+

gopkg.in/yaml.v3 is a YAML support package for the Go language.

+

Affected versions of this package are vulnerable to Denial of Service (DoS) via the Unmarshal function, which causes the program to crash when attempting to deserialize invalid input.

+

PoC

+
package main
+        
+        import (
+            "gopkg.in/yaml.v3"
+        )
+        
+        func main() {
+            var t interface{}
+            yaml.Unmarshal([]byte("0: [:!00 \xef"), &t)
+        }
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade gopkg.in/yaml.v3 to version 3.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + async +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, source-map-loader@0.2.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + source-map-loader@0.2.4 + + async@2.6.3 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + portfinder@1.0.28 + + async@2.6.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Prototype Pollution via the mapValues() method, due to improper check in createObjectIterator function.

+

PoC

+
//when objects are parsed, all properties are created as own (the objects can come from outside sources (http requests/ file))
+        const hasOwn = JSON.parse('{"__proto__": {"isAdmin": true}}');
+        
+        //does not have the property,  because it's inside object's own "__proto__"
+        console.log(hasOwn.isAdmin);
+        
+        async.mapValues(hasOwn, (val, key, cb) => cb(null, val), (error, result) => {
+          // after the method executes, hasOwn.__proto__ value (isAdmin: true) replaces the prototype of the newly created object, leading to potential exploits.
+          console.log(result.isAdmin);
+        });
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade async to version 2.6.4, 3.2.2 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + ansi-html +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + ansi-html@0.0.7 + + + +
  • +
+ +
+ +
+ +

Overview

+

ansi-html is an An elegant lib that converts the chalked (ANSI) text to HTML.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.

+

PoC

+
require('ansi-html')('x1b[0mx1b[' + '0'.repeat(35))
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade ansi-html to version 0.0.9 or higher.

+

References

+ + +
+ + + +
+
+

Authorization Bypass

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + url-parse +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + url-parse@1.5.7 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + original@1.0.2 + + url-parse@1.5.7 + + + +
  • +
+ +
+ +
+ +

Overview

+

url-parse is a Small footprint URL parser that works seamlessly across Node.js and browser environments.

+

Affected versions of this package are vulnerable to Authorization Bypass via the hostname field of a parsed URL, because "url-parse" is unable to find the correct hostname when no port number is provided in the URL.

+

PoC:

+
var Url = require('url-parse');
+        var PAYLOAD = "http://example.com:";
+        
+        console.log(Url(PAYLOAD));
+        
+        // Expected hostname: example.com
+        // Actual hostname by url-parse: example.com:
+        
+

Output:

+
{
+          slashes: true,
+          protocol: 'http:',
+          hash: '',
+          query: '',
+          pathname: '/',
+          auth: '',
+          host: 'example.com:',
+          port: '',
+          hostname: 'example.com:',
+          password: '',
+          username: '',
+          origin: 'http://example.com:',
+          href: 'http://example.com:/'
+        }
+        
+

Remediation

+

Upgrade url-parse to version 1.5.8 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + uglify-js +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, html-webpack-plugin@3.2.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + html-webpack-plugin@3.2.0 + + html-minifier@3.5.21 + + uglify-js@3.4.10 + + + +
  • +
+ +
+ +
+ +

Overview

+

uglify-js is a JavaScript parser, minifier, compressor and beautifier toolkit.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the string_template and the decode_template functions.

+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade uglify-js to version 3.14.3 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + terser +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack@4.44.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + terser@4.8.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to insecure usage of regular expressions.

+

PoC:

+
echo 'console.log(/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX"))' | npx terser -mc unsafe=true
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade terser to version 4.8.1, 5.14.2 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + scss-tokenizer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, node-sass@6.0.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + sass-graph@2.2.5 + + scss-tokenizer@0.2.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the loadAnnotation() function, due to the usage of insecure regex.

+

PoC

+
var scss = require("scss-tokenizer")
+        function build_attack(n) {
+            var ret = "a{}"
+            for (var i = 0; i < n; i++) {
+                ret += "/*# sourceMappingURL="
+            }
+            return ret + "!";
+        }
+        
+        // postcss.parse('a{}/*# sourceMappingURL=a.css.map */')
+        for(var i = 1; i <= 500000; i++) {
+            if (i % 1000 == 0) {
+                var time = Date.now();
+                var attack_str = build_attack(i)
+                try{
+                    scss.tokenize(attack_str)
+                    var time_cost = Date.now() - time;
+                    console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms");
+                    }
+                catch(e){
+                var time_cost = Date.now() - time;
+                console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms");
+                }
+            }
+        }
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

There is no fixed version for scss-tokenizer.

+

References

+ + +
+ + + +
+
+

Cross-site Scripting (XSS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of special characters for ASCII that start with \x and also for all Unicodes start with \u.

+

PoC:

+
const http = require("http");
+        const parseUrl = require("parse-url");
+        const url =  parseUrl('jav\u000Dascript://%0aalert(1)');
+        console.log(url)
+        const server = http.createServer((request, response) => {
+            response.writeHead(200);
+            if (url.scheme !== "javascript" && url.scheme !== null) {
+                response.end("<a href=\'" + url.href + "\'>Wowww!</a>" );
+            }
+            else{
+                response.end("Nooo!");
+            }
+        });
+        server.listen(80, "127.0.0.1",function(){
+            console.log("http://"+this.address().address+":"+this.address().port);
+        });
+        
+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Information Exposure due to improper validation.

+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Cross-site Scripting (XSS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-url +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.1.2 + + git-up@4.0.5 + + parse-url@6.0.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-url is an An advanced url parser supporting git urls too.

+

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of special ASCII characters that start with \r\r or \r. + This vulnerability exists due to an incomplete fix for CVE-2022-2217.

+

PoC:

+
const http = require("http");
+        const parseUrl = require("parse-url");
+        const url =  parseUrl('jav\r\r\rascript://%0aalert(1)');
+        console.log(url)
+        const server = http.createServer((request, response) => {
+            response.writeHead(200);
+            if (url.scheme !== "javascript" && url.scheme !== null) {
+                response.end("<a href=\'" + url.href + "\'>Wowww!</a>" );
+            }
+            else{
+                response.end("Nooo!");
+            }
+        });
+        server.listen(80, "127.0.0.1",function(){
+            console.log("http://"+this.address().address+":"+this.address().port);
+        });
+        
+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

Upgrade parse-url to version 6.0.1 or higher.

+

References

+ + +
+ + + +
+
+

Improper Certificate Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Improper Certificate Validation. Certificate validation is disabled by default when requesting binaries, even if the user is not specifying an alternative download path.

+

Remediation

+

Upgrade node-sass to version 7.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-Bounds

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-Bounds. A heap-based buffer over-read exists in Sass::Prelexer::parenthese_scope in prelexer.hpp. node-sass is affected by this vulnerability due to its bundled usage of libsass.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-bounds Read via Sass::weaveParents in ast_sel_weave.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Uncontrolled Recursion via Sass::Eval::operator()(Sass::Binary_Expression*) in eval.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Denial of Service (DoS). Uncontrolled recursion is possible in Sass::Complex_Selector::perform in ast.hpp and Sass::Inspect::operator in inspect.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to NULL Pointer Dereference via Sass::Parser::parseCompoundSelectorin parser_selectors.cpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Out-of-Bounds

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-Bounds via Sass::Prelexer::alternatives in prelexer.hpp. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-sass +
  • + +
  • Introduced through: + + argo-cd-ui@1.0.0 and node-sass@6.0.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + node-sass@6.0.1 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-sass is a Node.js bindings package for libsass.

+

Affected versions of this package are vulnerable to Out-of-bounds Read. The function handle_error in sass_context.cpp allows attackers to cause a denial-of-service resulting from a heap-based buffer over-read via a crafted sass file. Note: node-sass is affected by this vulnerability due to its bundled usage of the libsass package.

+

Details

+

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

+

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

+

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

+

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

+

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

+

Types of attacks

+

There are a few methods by which XSS can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginDescription
StoredServerThe malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
ReflectedServerThe attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-basedClientThe attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
MutatedThe attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.
+

Affected environments

+

The following environments are susceptible to an XSS attack:

+
    +
  • Web servers
  • +
  • Application servers
  • +
  • Web application environments
  • +
+

How to prevent

+

This section describes the top best practices designed to specifically protect your code:

+
    +
  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • +
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • +
  • Give users the option to disable client-side scripts.
  • +
  • Redirect invalid requests.
  • +
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • +
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • +
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
  • +
+

Remediation

+

There is no fixed version for node-sass.

+

References

+ + +
+ + + +
+
+

Open Redirect

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Open Redirect via parseUrl function when it mishandles certain uses of backslash such as https:/\/\/\ and interprets the URI as a relative path.

+

PoC:

+

+        // poc.js
+        var forge = require("node-forge");
+        var url = forge.util.parseUrl("https:/\/\/\www.github.com/foo/bar");
+        console.log(url);
+        
+        // Output of node poc.js:
+        
+        {
+          full: 'https://',
+          scheme: 'https',
+          host: '',
+          port: 443,
+          path: '/www.github.com/foo/bar',                        <<<---- path  should be "/foo/bar"
+          fullHost: ''
+        }
+        
+

Remediation

+

Upgrade node-forge to version 1.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Prototype Pollution via the forge.debug API if called with untrusted input.

+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade node-forge to version 1.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Improper Verification of Cryptographic Signature due to RSA's PKCS#1 v1.5 signature verification code which does not properly check DigestInfo for a proper ASN.1 structure. This can lead to successful verification with signatures that contain invalid structures but a valid digest.

+

Remediation

+

Upgrade node-forge to version 1.3.0 or higher.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-forge +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + selfsigned@1.10.11 + + node-forge@0.10.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-forge is a JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

+

Affected versions of this package are vulnerable to Improper Verification of Cryptographic Signature due to RSAs PKCS#1` v1.5 signature verification code which is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used.

+

Remediation

+

Upgrade node-forge to version 1.3.0 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-fetch +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, argo-ui@1.0.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + portable-fetch@3.0.0 + + node-fetch@1.7.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-fetch is a light-weight module that brings window.fetch to node.js

+

Affected versions of this package are vulnerable to Information Exposure when fetching a remote url with Cookie, if it get a Location response header, it will follow that url and try to fetch that url with provided cookie. This can lead to forwarding secure headers to 3th party.

+

Remediation

+

Upgrade node-fetch to version 2.6.7, 3.1.1 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + node-fetch +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, argo-ui@1.0.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + portable-fetch@3.0.0 + + node-fetch@1.7.3 + + + +
  • +
+ +
+ +
+ +

Overview

+

node-fetch is a light-weight module that brings window.fetch to node.js

+

Affected versions of this package are vulnerable to Denial of Service. Node Fetch did not honor the size option after following a redirect, which means that when a content size was over the limit, a FetchError would never get thrown and the process would end without failure.

+

Remediation

+

Upgrade node-fetch to version 2.6.1, 3.0.0-beta.9 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + json-pointer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.64 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.64 + + json-pointer@0.6.2 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.64 + + openapi-sampler@1.2.1 + + json-pointer@0.6.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

json-pointer is a set of utilities for JSON pointers described by RFC 6901

+

Affected versions of this package are vulnerable to Prototype Pollution. A type confusion vulnerability can lead to a bypass of CVE-2020-7709 when the pointer components are arrays.

+

PoC

+
const pointer = require('json-pointer');
+        
+        // pointer.set({}, ['__proto__', 'polluted'], 'yes')
+        // console.log(polluted) // ReferenceError: polluted is not defined
+        
+        pointer.set({}, [['__proto__'], 'polluted'], 'yes')
+        console.log(polluted)"
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

A fix was pushed into the master branch but not yet published.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + go.mongodb.org/mongo-driver/bson/bsonrw +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/go-openapi/runtime/middleware@0.19.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.5 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.2 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.5 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsoncodec@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

go.mongodb.org/mongo-driver/bson/bsonrw is a The MongoDB supported driver for Go.

+

Affected versions of this package are vulnerable to Improper Input Validation. Specific cstrings input may not be properly validated in the MongoDB Go Driver when marshalling Go objects into BSON. A malicious user could use a Go object with specific string to potentially inject additional fields into marshalled documents.

+

Remediation

+

Upgrade go.mongodb.org/mongo-driver/bson/bsonrw to version 1.5.1 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + glob-parent +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + chokidar@2.1.8 + + glob-parent@3.1.0 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + watchpack@1.7.5 + + watchpack-chokidar2@2.0.1 + + chokidar@2.1.8 + + glob-parent@3.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

glob-parent is a package that helps extracting the non-magic parent path from a glob string.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). The enclosure regex used to check for strings ending in enclosure containing path separator.

+

PoC by Yeting Li

+
var globParent = require("glob-parent")
+        function build_attack(n) {
+        var ret = "{"
+        for (var i = 0; i < n; i++) {
+        ret += "/"
+        }
+        
+        return ret;
+        }
+        
+        globParent(build_attack(5000));
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade glob-parent to version 5.1.2 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + github.com/prometheus/client_golang/prometheus/promhttp +
  • + +
  • Introduced through: + + github.com/argoproj/argo-cd/v2@0.0.0 and github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Denial of Service (DoS) when handling requests with non-standard HTTP methods.

+

Note: In order to be affected, an instrumented software must:

+
    +
  1. use promhttp.InstrumentHandler* middleware except RequestsInFlight

    +
  2. +
  3. not filter any specific methods (e.g GET) before middleware

    +
  4. +
  5. pass metric with method label name to the middleware

    +
  6. +
  7. not have any firewall/LB/proxy that filters away requests with unknown method.

    +
  8. +
+

Workarounds:

+
    +
  1. removing the method label name from counter/gauge used in the InstrumentHandler

    +
  2. +
  3. turning off affected promhttp handlers

    +
  4. +
  5. adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request

    +
  6. +
  7. using a reverse proxy or web application firewall, configured to only allow a limited set of methods.

    +
  8. +
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade github.com/prometheus/client_golang/prometheus/promhttp to version 1.11.1 or higher.

+

References

+ + +
+ + + +
+
+

Insecure Randomness

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + github.com/Masterminds/goutils +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/templates@#91deed20b998 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/templates@#91deed20b998 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/controller@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/api@#91deed20b998 + + github.com/argoproj/notifications-engine/pkg/templates@#91deed20b998 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

github.com/masterminds/goutils is a provides users with utility functions to manipulate strings in various ways.

+

Affected versions of this package are vulnerable to Insecure Randomness via the RandomAlphaNumeric(int) and CryptoRandomAlphaNumeric(int) functions. Small values of int in the functions above will return a smaller subset of results than they should. For example, RandomAlphaNumeric(1) would always return a digit in the 0-9 range, while RandomAlphaNumeric(4) return around ~7 million of the ~13M possible permutations.

+

Remediation

+

Upgrade github.com/masterminds/goutils to version 1.1.1 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + eventsource +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + sockjs-client@1.4.0 + + eventsource@1.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Information Exposure by allowing cookies and the authorization headers to be leaked to external sites.

+

Remediation

+

Upgrade eventsource to version 1.1.1, 2.0.2 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + minimist +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, ts-node@4.1.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + ts-node@4.1.0 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + jest-junit@6.4.0 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + ts-node@4.1.0 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + tslint@6.1.3 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + copy-webpack-plugin@6.1.1 + + loader-utils@2.0.0 + + json5@2.2.0 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + monaco-editor-webpack-plugin@6.0.0 + + loader-utils@2.0.0 + + json5@2.2.0 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + portfinder@1.0.28 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + webpack-dev-middleware@3.7.3 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + sass-loader@6.0.7 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + source-map-loader@0.2.4 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + style-loader@0.20.3 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + ts-loader@6.0.4 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + loader-utils@1.2.3 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-cli@3.3.12 + + loader-utils@1.4.0 + + json5@1.0.1 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + cacache@12.0.4 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + cacache@12.0.4 + + move-concurrently@1.0.1 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack@4.44.2 + + terser-webpack-plugin@1.4.5 + + cacache@12.0.4 + + move-concurrently@1.0.1 + + copy-concurrently@1.0.5 + + mkdirp@0.5.5 + + minimist@1.2.5 + + + +
  • +
+ +
+ +
+ +

Overview

+

minimist is a parse argument options module.

+

Affected versions of this package are vulnerable to Prototype Pollution due to a missing handler to Function.prototype.

+

Notes:

+
    +
  • This vulnerability is a bypass to CVE-2020-7598

    +
  • +
  • The reason for the different CVSS between CVE-2021-44906 to CVE-2020-7598, is that CVE-2020-7598 can pollute objects, while CVE-2021-44906 can pollute only function.

    +
  • +
+

PoC by Snyk

+
require('minimist')('--_.constructor.constructor.prototype.foo bar'.split(' '));
+        console.log((function(){}).foo); // bar
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

Upgrade minimist to version 1.2.6 or higher.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + follow-redirects +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, webpack-dev-server@3.11.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + webpack-dev-server@3.11.0 + + http-proxy-middleware@0.19.1 + + http-proxy@1.18.1 + + follow-redirects@1.14.7 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Information Exposure due a leakage of the Authorization header from the same hostname during HTTPS to HTTP redirection. An attacker who can listen in on the wire (or perform a MITM attack) will be able to receive the Authorization header due to the usage of the insecure HTTP protocol which does not verify the hostname the request is sending to.

+

Remediation

+

Upgrade follow-redirects to version 1.14.8 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.3.6/ghcr.io_dexidp_dex:v2.30.2.html b/docs/snyk/v2.3.6/ghcr.io_dexidp_dex:v2.30.2.html new file mode 100644 index 0000000000..5be4b5d3ce --- /dev/null +++ b/docs/snyk/v2.3.6/ghcr.io_dexidp_dex:v2.30.2.html @@ -0,0 +1,1291 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:02:23 pm

+
+
+ Scanned the following path: +
    +
  • ghcr.io/dexidp/dex:v2.30.2/dexidp/dex (apk)
  • +
+
+ +
+
6 known vulnerabilities
+
36 vulnerable dependency paths
+
16 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|ghcr.io/dexidp/dex
Path ghcr.io/dexidp/dex:v2.30.2/dexidp/dex
Package Manager apk
+
+
+
+
+

CVE-2022-28391

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and busybox/busybox@1.33.1-r6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + alpine-baselayout/alpine-baselayout@3.2.0-r16 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.14 relevant versions.

+

BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.

+

Remediation

+

Upgrade Alpine:3.14 busybox to version 1.33.1-r7 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + zlib/zlib +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and zlib/zlib@1.2.11-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + zlib/zlib@1.2.11-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Alpine:3.14 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Alpine:3.14 zlib to version 1.2.12-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and openssl/libcrypto1.1@1.1.1l-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.14 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.14 openssl to version 1.1.1n-r0 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and openssl/libcrypto1.1@1.1.1l-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.14 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.14 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + libretls/libretls +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and libretls/libretls@3.3.3p1-r2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + libretls/libretls@3.3.3p1-r2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libretls package. + See How to fix? for Alpine:3.14 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.14 libretls to version 3.3.3p1-r3 or higher.

+

References

+ + +
+ + + +
+
+

ALPINE-13661

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and busybox/busybox@1.33.1-r6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + alpine-baselayout/alpine-baselayout@3.2.0-r16 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Alpine:3.14 busybox to version 1.33.1-r7 or higher.

+ +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.3.6/haproxy:2.0.25-alpine.html b/docs/snyk/v2.3.6/haproxy:2.0.25-alpine.html new file mode 100644 index 0000000000..2984761395 --- /dev/null +++ b/docs/snyk/v2.3.6/haproxy:2.0.25-alpine.html @@ -0,0 +1,1375 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:02:27 pm

+
+
+ Scanned the following path: +
    +
  • haproxy:2.0.25-alpine (apk)
  • +
+
+ +
+
8 known vulnerabilities
+
33 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|haproxy
Path haproxy:2.0.25-alpine
Package Manager apk
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + pcre2/pcre2 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and pcre2/pcre2@10.39-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + pcre2/pcre2@10.39-r0 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + pcre2/pcre2@10.39-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package. + See How to fix? for Alpine:3.15 relevant versions.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

Upgrade Alpine:3.15 pcre2 to version 10.40-r0 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + pcre2/pcre2 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and pcre2/pcre2@10.39-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + pcre2/pcre2@10.39-r0 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + pcre2/pcre2@10.39-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package. + See How to fix? for Alpine:3.15 relevant versions.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

Upgrade Alpine:3.15 pcre2 to version 10.40-r0 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2022-28391

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and busybox/busybox@1.34.1-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + alpine-baselayout/alpine-baselayout@3.2.0-r18 + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.15 relevant versions.

+

BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.

+

Remediation

+

Upgrade Alpine:3.15 busybox to version 1.34.1-r5 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + zlib/zlib +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and zlib/zlib@1.2.11-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + zlib/zlib@1.2.11-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Alpine:3.15 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Alpine:3.15 zlib to version 1.2.12-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and openssl/libcrypto1.1@1.1.1l-r7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1n-r0 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and openssl/libcrypto1.1@1.1.1l-r7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + libretls/libretls +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and libretls/libretls@3.3.4-r2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + libretls/libretls@3.3.4-r2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libretls package. + See How to fix? for Alpine:3.15 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.15 libretls to version 3.3.4-r3 or higher.

+

References

+ + +
+ + + +
+
+

ALPINE-13661

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and busybox/busybox@1.34.1-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + alpine-baselayout/alpine-baselayout@3.2.0-r18 + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Alpine:3.15 busybox to version 1.34.1-r5 or higher.

+ +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.3.6/quay.io_argoproj_argocd-applicationset:v0.4.1.html b/docs/snyk/v2.3.6/quay.io_argoproj_argocd-applicationset:v0.4.1.html new file mode 100644 index 0000000000..cd2d4ed6a3 --- /dev/null +++ b/docs/snyk/v2.3.6/quay.io_argoproj_argocd-applicationset:v0.4.1.html @@ -0,0 +1,7714 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:02:41 pm

+
+
+ Scanned the following path: +
    +
  • quay.io/argoproj/argocd-applicationset:v0.4.1/argoproj/argocd-applicationset (deb)
  • +
+
+ +
+
71 known vulnerabilities
+
244 vulnerable dependency paths
+
161 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|quay.io/argoproj/argocd-applicationset
Path quay.io/argoproj/argocd-applicationset:v0.4.1/argoproj/argocd-applicationset
Package Manager deb
Manifest Dockerfile
+
+
+
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssl/libssl1.1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and openssl/libssl1.1@1.1.1l-1ubuntu1.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + cyrus-sasl2/libsasl2-modules@2.1.27+dfsg-2.1build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libfido2/libfido2-1@1.6.0-2build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + libssh/libssh-4@0.9.6-1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Ubuntu:21.10 openssl to version 1.1.1l-1ubuntu1.2 or higher.

+

References

+ + +
+ + + +
+
+

Exposure of Resource to Wrong Sphere

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

xmlparse.c in Expat (aka libexpat) before 2.4.5 allows attackers to insert namespace-separator characters into namespace URIs.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Improper Encoding or Escaping of Output

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

xmltok_impl.c in Expat (aka libexpat) before 2.4.5 lacks certain validation of encoding, such as checks for whether a UTF-8 character is valid in a certain context.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

SQL Injection

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + cyrus-sasl2/libsasl2-modules +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and cyrus-sasl2/libsasl2-modules@2.1.27+dfsg-2.1build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + cyrus-sasl2/libsasl2-modules@2.1.27+dfsg-2.1build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + openldap/libldap-2.5-0@2.5.6+dfsg-1~exp1ubuntu1 + + cyrus-sasl2/libsasl2-2@2.1.27+dfsg-2.1build1 + + cyrus-sasl2/libsasl2-modules-db@2.1.27+dfsg-2.1build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + openldap/libldap-2.5-0@2.5.6+dfsg-1~exp1ubuntu1 + + cyrus-sasl2/libsasl2-2@2.1.27+dfsg-2.1build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream cyrus-sasl2 package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In Cyrus SASL 2.1.17 through 2.1.27 before 2.1.28, plugins/sql.c does not escape the password for a SQL INSERT or UPDATE statement.

+

Remediation

+

Upgrade Ubuntu:21.10 cyrus-sasl2 to version 2.1.27+dfsg-2.1ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + zlib/zlib1g +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + zlib/zlib1g@1:1.2.11.dfsg-2ubuntu7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Ubuntu:21.10 zlib to version 1:1.2.11.dfsg-2ubuntu7.1 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2022-1271

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + xz-utils/liblzma5 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + xz-utils/liblzma5@5.2.5-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Ubuntu:21.10 xz-utils to version 5.2.5-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2021-3996

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + util-linux/libblkid1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and util-linux/libblkid1@2.36.1-8ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libmount1@2.36.1-8ubuntu2 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libuuid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + util-linux/libuuid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libuuid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libmount1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux/libmount1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libmount1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libsmartcols1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux/libsmartcols1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libsmartcols1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Ubuntu:21.10 util-linux to version 2.36.1-8ubuntu2.2 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2021-3995

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + util-linux/libblkid1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and util-linux/libblkid1@2.36.1-8ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libmount1@2.36.1-8ubuntu2 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libblkid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libuuid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + util-linux/libuuid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libuuid1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libmount1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux/libmount1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libmount1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/libsmartcols1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux/libsmartcols1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + util-linux/libsmartcols1@2.36.1-8ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Ubuntu:21.10 util-linux to version 2.36.1-8ubuntu2.2 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, gnupg2/gpg@2.2.20-1ubuntu4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + sqlite3/libsqlite3-0@3.35.5-1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An out-of-bounds read was addressed with improved bounds checking. This issue is fixed in iOS 13.5 and iPadOS 13.5, macOS Catalina 10.15.5, tvOS 13.4.5, watchOS 6.2.5, iTunes 12.10.7 for Windows, iCloud for Windows 11.2, iCloud for Windows 7.19. A malicious application may cause a denial of service or potentially disclose memory contents.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 sqlite3.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + perl/perl-modules-5.32 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + perl@5.32.1-3ubuntu3 + + perl/perl-modules-5.32@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + perl@5.32.1-3ubuntu3 + + perl/libperl5.32@5.32.1-3ubuntu3 + + perl/perl-modules-5.32@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + perl@5.32.1-3ubuntu3 + + perl/libperl5.32@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + perl@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + perl/perl-base@5.32.1-3ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream perl package.

+

CPAN 2.28 allows Signature Verification Bypass.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 perl.

+

References

+ + +
+ + + +
+
+

OS Command Injection

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssl/libssl1.1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and openssl/libssl1.1@1.1.1l-1ubuntu1.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + cyrus-sasl2/libsasl2-modules@2.1.27+dfsg-2.1build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libfido2/libfido2-1@1.6.0-2build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + libssh/libssh-4@0.9.6-1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).

+

Remediation

+

Upgrade Ubuntu:21.10 openssl to version 1.1.1l-1ubuntu1.3 or higher.

+

References

+ + +
+ + + +
+
+

OS Command Injection

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssl/libssl1.1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and openssl/libssl1.1@1.1.1l-1ubuntu1.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + cyrus-sasl2/libsasl2-modules@2.1.27+dfsg-2.1build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libfido2/libfido2-1@1.6.0-2build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + libssh/libssh-4@0.9.6-1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).

+

Remediation

+

Upgrade Ubuntu:21.10 openssl to version 1.1.1l-1ubuntu1.5 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssl/libssl1.1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and openssl/libssl1.1@1.1.1l-1ubuntu1.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + cyrus-sasl2/libsasl2-modules@2.1.27+dfsg-2.1build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libfido2/libfido2-1@1.6.0-2build1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + libssh/libssh-4@0.9.6-1 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + openssl/libssl1.1@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ca-certificates@20210119ubuntu1 + + openssl@1.1.1l-1ubuntu1.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Ubuntu:21.10 openssl to version 1.1.1l-1ubuntu1.6 or higher.

+

References

+ + +
+ + + +
+
+

SQL Injection

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openldap/libldap-2.5-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, gnupg2/dirmngr@2.2.20-1ubuntu4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/dirmngr@2.2.20-1ubuntu4 + + openldap/libldap-2.5-0@2.5.6+dfsg-1~exp1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + openldap/libldap-2.5-0@2.5.6+dfsg-1~exp1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openldap/libldap-common@2.5.6+dfsg-1~exp1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openldap package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In OpenLDAP 2.x before 2.5.12 and 2.6.x before 2.6.2, a SQL injection vulnerability exists in the experimental back-sql backend to slapd, via a SQL statement within an LDAP query. This can occur during an LDAP search operation when the search filter is processed, due to a lack of proper escaping.

+

Remediation

+

Upgrade Ubuntu:21.10 openldap to version 2.5.6+dfsg-1~exp1ubuntu1.1 or higher.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + krb5/libk5crypto3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and krb5/libk5crypto3@1.18.3-6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + libssh/libssh-4@0.9.6-1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + krb5/libkrb5support0@1.18.3-6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

The Key Distribution Center (KDC) in MIT Kerberos 5 (aka krb5) before 1.18.5 and 1.19.x before 1.19.3 has a NULL pointer dereference in kdc/do_tgs_req.c via a FAST inner body that lacks a server field.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 krb5.

+

References

+ + +
+ + + +
+
+

CVE-2022-1271

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + gzip +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and gzip@1.10-4ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gzip@1.10-4ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Ubuntu:21.10 gzip to version 1.10-4ubuntu1.1 or higher.

+

References

+ + +
+ + + +
+
+

Arbitrary Code Injection

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + gnupg2/gpgv +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and gnupg2/gpgv@2.2.20-1ubuntu4 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpgv@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + apt@2.3.9 + + gnupg2/gpgv@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpgv@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/dirmngr@2.2.20-1ubuntu4 + + gnupg2/gpgconf@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + gnupg2/gpgconf@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + gnupg2/gpgconf@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpgsm@2.2.20-1ubuntu4 + + gnupg2/gpgconf@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/dirmngr@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/dirmngr@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-client@2.2.20-1ubuntu4 + + gnupg2/dirmngr@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg-l10n@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gnupg-l10n@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg-utils@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gnupg-utils@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-client@2.2.20-1ubuntu4 + + gnupg2/gpg@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-server@2.2.20-1ubuntu4 + + gnupg2/gpg@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-client@2.2.20-1ubuntu4 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-server@2.2.20-1ubuntu4 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg-wks-client@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-client@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg-wks-server@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-wks-server@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpgsm@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpgsm@2.2.20-1ubuntu4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream gnupg2 package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.

+

Remediation

+

Upgrade Ubuntu:21.10 gnupg2 to version 2.2.20-1ubuntu4.1 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2021-3999

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and glibc/libc-bin@2.34-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + glibc/libc-bin@2.34-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + glibc/libc6@2.34-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Ubuntu:21.10 glibc to version 2.34-0ubuntu3.2 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2021-3998

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and glibc/libc-bin@2.34-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + glibc/libc-bin@2.34-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + glibc/libc6@2.34-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Ubuntu:21.10 glibc to version 2.34-0ubuntu3.2 or higher.

+

References

+ + +
+ + + +
+
+

Uncontrolled Search Path Element

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + git/git-man@1:2.32.0-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git-lfs@2.13.2-1 + + git@1:2.32.0-1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

Git for Windows is a fork of Git containing Windows-specific patches. This vulnerability affects users working on multi-user machines, where untrusted parties have write access to the same hard disk. Those untrusted parties could create the folder C:\.git, which would be picked up by Git operations run supposedly outside a repository while searching for a Git directory. Git would then respect any config in said Git directory. Git Bash users who set GIT_PS1_SHOWDIRTYSTATE are vulnerable as well. Users who installed posh-gitare vulnerable simply by starting a PowerShell. Users of IDEs such as Visual Studio are vulnerable: simply creating a new project would already read and respect the config specified in C:\.git\config. Users of the Microsoft fork of Git are vulnerable simply by starting a Git Bash. The problem has been patched in Git for Windows v2.35.2. Users unable to upgrade may create the folder .git on all drives where Git commands are run, and remove read/write access from those folders as a workaround. Alternatively, define or extend GIT_CEILING_DIRECTORIES to cover the parent directory of the user profile, e.g. C:\Users if the user profile is located in C:\Users\my-user-name.

+

Remediation

+

Upgrade Ubuntu:21.10 git to version 1:2.32.0-1ubuntu1.2 or higher.

+

References

+ + +
+ + + +
+
+

Uncontrolled Search Path Element

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + git/git-man@1:2.32.0-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git-lfs@2.13.2-1 + + git@1:2.32.0-1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

Git is a distributed revision control system. Git prior to versions 2.37.1, 2.36.2, 2.35.4, 2.34.4, 2.33.4, 2.32.3, 2.31.4, and 2.30.5, is vulnerable to privilege escalation in all platforms. An unsuspecting user could still be affected by the issue reported in CVE-2022-24765, for example when navigating as root into a shared tmp directory that is owned by them, but where an attacker could create a git repository. Versions 2.37.1, 2.36.2, 2.35.4, 2.34.4, 2.33.4, 2.32.3, 2.31.4, and 2.30.5 contain a patch for this issue. The simplest way to avoid being affected by the exploit described in the example is to avoid running git as root (or an Administrator in Windows), and if needed to reduce its use to a minimum. While a generic workaround is not possible, a system could be hardened from the exploit described in the example by removing any such repository if it exists already and creating one as root to block any future attacks.

+

Remediation

+

Upgrade Ubuntu:21.10 git to version 1:2.32.0-1ubuntu1.3 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In doProlog in xmlparse.c in Expat (aka libexpat) before 2.4.3, an integer overflow exists for m_groupSize.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

storeAtts in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

nextScaffoldPart in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

lookup in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

defineAttribute in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

build_model in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

addBinding in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

Expat (aka libexpat) before 2.4.4 has a signed integer overflow in XML_GetBuffer, for configurations with a nonzero XML_CONTEXT_BYTES.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

Expat (aka libexpat) before 2.4.4 has an integer overflow in the doProlog function.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In Expat (aka libexpat) before 2.4.5, there is an integer overflow in storeRawNames.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.3 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In Expat (aka libexpat) before 2.4.5, there is an integer overflow in copyString.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.3 or higher.

+

References

+ + +
+ + + +
+
+

Resource Exhaustion

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In Expat (aka libexpat) before 2.4.5, an attacker can trigger stack exhaustion in build_model via a large nesting depth in the DTD element.

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.3 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + e2fsprogs/libcom-err2 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and e2fsprogs/libcom-err2@1.46.3-1ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs/libcom-err2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + e2fsprogs/libcom-err2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + e2fsprogs/libss2@1.46.3-1ubuntu3 + + e2fsprogs/libcom-err2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + e2fsprogs/libcom-err2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + e2fsprogs/libcom-err2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs/libext2fs2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + e2fsprogs/libext2fs2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs/libss2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + e2fsprogs/libss2@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs/logsave@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + e2fsprogs/logsave@1.46.3-1ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + e2fsprogs@1.46.3-1ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream e2fsprogs package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.

+

Remediation

+

Upgrade Ubuntu:21.10 e2fsprogs to version 1.46.3-1ubuntu3.1 or higher.

+

References

+ + +
+ + + +
+
+

Directory Traversal

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + dpkg +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + dpkg@1.20.9ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream dpkg package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.

+

Remediation

+

Upgrade Ubuntu:21.10 dpkg to version 1.20.9ubuntu2.2 or higher.

+

References

+ + +
+ + + +
+
+

Improper Authentication

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

An improper authentication vulnerability exists in curl 7.33.0 to and including 7.82.0 which might allow reuse OAUTH2-authenticated connections without properly making sure that the connection was authenticated with the same credentials as set for this transfer. This affects SASL-enabled protocols: SMPTP(S), IMAP(S), POP3(S) and LDAP(S) (openldap only).

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Insufficiently Protected Credentials

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

An insufficiently protected credentials vulnerability exists in curl 4.9 to and include curl 7.82.0 are affected that could allow an attacker to extract credentials when follows HTTP(S) redirects is used with authentication could leak credentials to other services that exist on different protocols or port numbers.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Improper Certificate Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

libcurl would reuse a previously created connection even when a TLS or SSHrelated option had been changed that should have prohibited reuse.libcurl keeps previously used connections in a connection pool for subsequenttransfers to reuse if one of them matches the setup. However, several TLS andSSH settings were left out from the configuration match checks, making themmatch too easily.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.2 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

When curl < 7.84.0 does FTP transfers secured by krb5, it handles message verification failures wrongly. This flaw makes it possible for a Man-In-The-Middle attack to go unnoticed and even allows it to inject data to the client.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.3 or higher.

+

References

+ + +
+ + + +
+
+

Incorrect Default Permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

When curl < 7.84.0 saves cookies, alt-svc and hsts data to local files, it makes the operation atomic by finalizing the operation with a rename from a temporary name to the final target file name.In that rename operation, it might accidentally widen the permissions for the target file, leaving the updated file accessible to more users than intended.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.3 or higher.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

curl < 7.84.0 supports "chained" HTTP compression algorithms, meaning that a serverresponse can be compressed multiple times and potentially with different algorithms. The number of acceptable "links" in this "decompression chain" was unbounded, allowing a malicious server to insert a virtually unlimited number of compression steps.The use of such a decompression chain could result in a "malloc bomb", makingcurl end up spending enormous amounts of allocated heap memory, or trying toand returning out of memory errors.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.3 or higher.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

A malicious server can serve excessive amounts of Set-Cookie: headers in a HTTP response to curl and curl < 7.84.0 stores all of them. A sufficiently large amount of (big) cookies make subsequent HTTP requests to this, or other servers to which the cookies match, create requests that become larger than the threshold that curl uses internally to avoid sending crazy large requests (1048576 bytes) and instead returns an error.This denial state might remain for as long as the same cookies are kept, match and haven't expired. Due to cookie matching rules, a server on foo.example.com can set cookies that also would match for bar.example.com, making it it possible for a "sister server" to effectively cause a denial of service for a sibling site on the same second level domain using this method.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.3 or higher.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + tar +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + tar@1.34+dfsg-1build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream tar package.

+

pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 tar.

+

References

+ + +
+ + + +
+
+

CVE-2021-36690

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, gnupg2/gpg@2.2.20-1ubuntu4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + sqlite3/libsqlite3-0@3.35.5-1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

** DISPUTED ** A segmentation fault can occur in the sqlite3.exe command-line component of SQLite 3.36.0 via the idxGetTableInfo function when there is a crafted SQL query. NOTE: the vendor disputes the relevance of this report because a sqlite3.exe user already has full privileges (e.g., is intentionally allowed to execute commands). This report does NOT imply any problem in the SQLite library.

+

Remediation

+

Upgrade Ubuntu:21.10 sqlite3 to version 3.35.5-1ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2020-9991

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, gnupg2/gpg@2.2.20-1ubuntu4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + sqlite3/libsqlite3-0@3.35.5-1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

This issue was addressed with improved checks. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iCloud for Windows 7.21, tvOS 14.0. A remote attacker may be able to cause a denial of service.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 sqlite3.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, gnupg2/gpg@2.2.20-1ubuntu4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + sqlite3/libsqlite3-0@3.35.5-1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An information disclosure issue was addressed with improved state management. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iTunes for Windows 12.10.9, iCloud for Windows 11.5, tvOS 14.0. A remote attacker may be able to leak memory.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 sqlite3.

+

References

+ + +
+ + + +
+
+

Time-of-check Time-of-use (TOCTOU)

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + shadow/passwd +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and shadow/passwd@1:4.8.1-1ubuntu9 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + shadow/passwd@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + shadow/passwd@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + shadow/login@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + shadow/login@1:4.8.1-1ubuntu9 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream shadow package.

+

shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees

+

Remediation

+

There is no fixed version for Ubuntu:21.10 shadow.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and pcre3/libpcre3@2:8.39-13build3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + grep@3.7-0ubuntu1 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \X or \R has more than one fixed quantifier, a related issue to CVE-2019-20454.

+

Remediation

+

Upgrade Ubuntu:21.10 pcre3 to version 2:8.39-13ubuntu0.21.10.1 or higher.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and pcre3/libpcre3@2:8.39-13build3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + grep@3.7-0ubuntu1 + + pcre3/libpcre3@2:8.39-13build3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package.

+

In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 pcre3.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.37-0ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 pcre2.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.37-0ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 pcre2.

+

References

+ + +
+ + + +
+
+

Double Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and patch@2.7.6-7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + patch@2.7.6-7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

A double free exists in the another_hunk function in pch.c in GNU patch through 2.7.6.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 patch.

+

References

+ + +
+ + + +
+
+

Release of Invalid Pointer or Reference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and patch@2.7.6-7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + patch@2.7.6-7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

An Invalid Pointer vulnerability exists in GNU patch 2.7 via the another_hunk function, which causes a Denial of Service.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 patch.

+

References

+ + +
+ + + +
+
+

CVE-2021-41617

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and openssh/openssh-client@1:8.4p1-6ubuntu2.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

sshd in OpenSSH 6.2 through 8.x before 8.8, when certain non-default configurations are used, allows privilege escalation because supplemental groups are not initialized as expected. Helper programs for AuthorizedKeysCommand and AuthorizedPrincipalsCommand may run with privileges associated with group memberships of the sshd process, if the configuration specifies running the command as a different user.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 openssh.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and openssh/openssh-client@1:8.4p1-6ubuntu2.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

The client side in OpenSSH 5.7 through 8.4 has an Observable Discrepancy leading to an information leak in the algorithm negotiation. This allows man-in-the-middle attackers to target initial connection attempts (where no host key for the server has been cached by the client). NOTE: some reports state that 8.5 and 8.6 are also affected.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 openssh.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + ncurses/libtinfo6 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and ncurses/libtinfo6@6.2+20201114-2build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + bash@5.1-3ubuntu2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/libncursesw6@6.2+20201114-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + less@551-2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libedit/libedit2@3.1-20191231-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/libncurses6@6.2+20201114-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/ncurses-bin@6.2+20201114-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + procps@2:3.3.17-5ubuntu3 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + util-linux/mount@2.36.1-8ubuntu2 + + util-linux@2.36.1-8ubuntu2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gpg@2.2.20-1ubuntu4 + + gnupg2/gpgconf@2.2.20-1ubuntu4 + + readline/libreadline8@8.1-2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + pinentry/pinentry-curses@1.1.1-1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/libncursesw6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + procps@2:3.3.17-5ubuntu3 + + ncurses/libncursesw6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gnupg2/gnupg@2.2.20-1ubuntu4 + + gnupg2/gpg-agent@2.2.20-1ubuntu4 + + pinentry/pinentry-curses@1.1.1-1 + + ncurses/libncursesw6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/libncurses6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + procps@2:3.3.17-5ubuntu3 + + ncurses/libncurses6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/ncurses-base@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + ncurses/ncurses-bin@6.2+20201114-2build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream ncurses package.

+

ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 ncurses.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + libsepol/libsepol1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and libsepol/libsepol1@3.1-1ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + libsemanage/libsemanage1@3.1-1ubuntu2 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libsepol package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.

+

Remediation

+

Upgrade Ubuntu:21.10 libsepol to version 3.1-1ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + libsepol/libsepol1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and libsepol/libsepol1@3.1-1ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + libsemanage/libsemanage1@3.1-1ubuntu2 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libsepol package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).

+

Remediation

+

Upgrade Ubuntu:21.10 libsepol to version 3.1-1ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + libsepol/libsepol1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and libsepol/libsepol1@3.1-1ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + libsemanage/libsemanage1@3.1-1ubuntu2 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libsepol package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).

+

Remediation

+

Upgrade Ubuntu:21.10 libsepol to version 3.1-1ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + libsepol/libsepol1 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and libsepol/libsepol1@3.1-1ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + libsemanage/libsemanage1@3.1-1ubuntu2 + + libsepol/libsepol1@3.1-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libsepol package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).

+

Remediation

+

Upgrade Ubuntu:21.10 libsepol to version 3.1-1ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + krb5/libk5crypto3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and krb5/libk5crypto3@1.18.3-6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + libssh/libssh-4@0.9.6-1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + krb5/libkrb5support0@1.18.3-6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 krb5.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + gmp/libgmp10 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + coreutils@8.32-4ubuntu2 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + apt@2.3.9 + + gnutls28/libgnutls30@3.7.1-5ubuntu1 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + apt@2.3.9 + + gnutls28/libgnutls30@3.7.1-5ubuntu1 + + nettle/libhogweed6@3.7.3-1 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + rtmpdump/librtmp1@2.4+20151223.gitfa8646d.1-2build3 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream gmp package.

+

GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 gmp.

+

References

+ + +
+ + + +
+
+

Buffer Overflow

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and glibc/libc-bin@2.34-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + glibc/libc-bin@2.34-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + glibc/libc6@2.34-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.

+

Remediation

+

Upgrade Ubuntu:21.10 glibc to version 2.34-0ubuntu3.2 or higher.

+

References

+ + +
+ + + +
+
+

Buffer Overflow

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and glibc/libc-bin@2.34-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + glibc/libc-bin@2.34-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + glibc/libc6@2.34-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.

+

Remediation

+

Upgrade Ubuntu:21.10 glibc to version 2.34-0ubuntu3.2 or higher.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and glibc/libc-bin@2.34-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + glibc/libc-bin@2.34-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + meta-common-packages@meta + + glibc/libc6@2.34-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

sha256crypt and sha512crypt through 0.6 allow attackers to cause a denial of service (CPU consumption) because the algorithm's runtime is proportional to the square of the length of the password.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 glibc.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + git/git-man@1:2.32.0-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git-lfs@2.13.2-1 + + git@1:2.32.0-1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package.

+

GIT version 2.15.1 and earlier contains a Input Validation Error vulnerability in Client that can result in problems including messing up terminal configuration to RCE. This attack appear to be exploitable via The user must interact with a malicious git server, (or have their traffic modified in a MITM attack).

+

Remediation

+

There is no fixed version for Ubuntu:21.10 git.

+

References

+ + +
+ + + +
+
+

Incorrect Calculation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + expat/libexpat1 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + expat/libexpat1@2.4.1-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream expat package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

In Expat (aka libexpat) before 2.4.3, a left shift by 29 (or more) places in the storeAtts function in xmlparse.c can lead to realloc misbehavior (e.g., allocating too few bytes, or only freeing memory).

+

Remediation

+

Upgrade Ubuntu:21.10 expat to version 2.4.1-2ubuntu0.1 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2022-27775

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

An information disclosure vulnerability exists in curl 7.65.0 to 7.82.0 are vulnerable that by using an IPv6 address that was in the connection pool but with a different zone id it could reuse a connection instead.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Insufficiently Protected Credentials

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

A insufficiently protected credentials vulnerability in fixed in curl 7.83.0 might leak authentication or cookie header data on HTTP redirects to the same host but another port number.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.1 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + curl/libcurl3-gnutls +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1, git@1:2.32.0-1ubuntu1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + git@1:2.32.0-1ubuntu1 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream curl package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

libcurl provides the CURLOPT_CERTINFO option to allow applications torequest details to be returned about a server's certificate chain.Due to an erroneous function, a malicious server could make libcurl built withNSS get stuck in a never-ending busy-loop when trying to retrieve thatinformation.

+

Remediation

+

Upgrade Ubuntu:21.10 curl to version 7.74.0-1.3ubuntu2.2 or higher.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + coreutils +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 and coreutils@8.32-4ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd-applicationset@v0.4.1 + + coreutils@8.32-4ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream coreutils package.

+

chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 coreutils.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.3.6/quay.io_argoproj_argocd:v2.3.6.html b/docs/snyk/v2.3.6/quay.io_argoproj_argocd:v2.3.6.html new file mode 100644 index 0000000000..459c93fde9 --- /dev/null +++ b/docs/snyk/v2.3.6/quay.io_argoproj_argocd:v2.3.6.html @@ -0,0 +1,2701 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:03:08 pm

+
+
+ Scanned the following path: +
    +
  • quay.io/argoproj/argocd:v2.3.6/argoproj/argocd (deb)
  • +
+
+ +
+
21 known vulnerabilities
+
76 vulnerable dependency paths
+
162 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|quay.io/argoproj/argocd
Path quay.io/argoproj/argocd:v2.3.6/argoproj/argocd
Package Manager deb
Manifest Dockerfile
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, gnupg2/gpg@2.2.20-1ubuntu4.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gnupg2/gpg@2.2.20-1ubuntu4.1 + + sqlite3/libsqlite3-0@3.35.5-1ubuntu0.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An out-of-bounds read was addressed with improved bounds checking. This issue is fixed in iOS 13.5 and iPadOS 13.5, macOS Catalina 10.15.5, tvOS 13.4.5, watchOS 6.2.5, iTunes 12.10.7 for Windows, iCloud for Windows 11.2, iCloud for Windows 7.19. A malicious application may cause a denial of service or potentially disclose memory contents.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 sqlite3.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + perl/perl-modules-5.32 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, git@1:2.32.0-1ubuntu1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + perl@5.32.1-3ubuntu3 + + perl/perl-modules-5.32@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + perl@5.32.1-3ubuntu3 + + perl/libperl5.32@5.32.1-3ubuntu3 + + perl/perl-modules-5.32@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + perl@5.32.1-3ubuntu3 + + perl/libperl5.32@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + perl@5.32.1-3ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + perl/perl-base@5.32.1-3ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream perl package.

+

CPAN 2.28 allows Signature Verification Bypass.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 perl.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + krb5/libk5crypto3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and krb5/libk5crypto3@1.18.3-6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2.3 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2.3 + + libssh/libssh-4@0.9.6-1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + krb5/libkrb5support0@1.18.3-6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

The Key Distribution Center (KDC) in MIT Kerberos 5 (aka krb5) before 1.18.5 and 1.19.x before 1.19.3 has a NULL pointer dereference in kdc/do_tgs_req.c via a FAST inner body that lacks a server field.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 krb5.

+

References

+ + +
+ + + +
+
+

Uncontrolled Search Path Element

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, git@1:2.32.0-1ubuntu1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + git/git-man@1:2.32.0-1ubuntu1.2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git-lfs@2.13.2-1 + + git@1:2.32.0-1ubuntu1.2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package. + See How to fix? for Ubuntu:21.10 relevant versions.

+

Git is a distributed revision control system. Git prior to versions 2.37.1, 2.36.2, 2.35.4, 2.34.4, 2.33.4, 2.32.3, 2.31.4, and 2.30.5, is vulnerable to privilege escalation in all platforms. An unsuspecting user could still be affected by the issue reported in CVE-2022-24765, for example when navigating as root into a shared tmp directory that is owned by them, but where an attacker could create a git repository. Versions 2.37.1, 2.36.2, 2.35.4, 2.34.4, 2.33.4, 2.32.3, 2.31.4, and 2.30.5 contain a patch for this issue. The simplest way to avoid being affected by the exploit described in the example is to avoid running git as root (or an Administrator in Windows), and if needed to reduce its use to a minimum. While a generic workaround is not possible, a system could be hardened from the exploit described in the example by removing any such repository if it exists already and creating one as root to block any future attacks.

+

Remediation

+

Upgrade Ubuntu:21.10 git to version 1:2.32.0-1ubuntu1.3 or higher.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + tar +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + tar@1.34+dfsg-1build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream tar package.

+

pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 tar.

+

References

+ + +
+ + + +
+
+

CVE-2020-9991

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, gnupg2/gpg@2.2.20-1ubuntu4.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gnupg2/gpg@2.2.20-1ubuntu4.1 + + sqlite3/libsqlite3-0@3.35.5-1ubuntu0.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

This issue was addressed with improved checks. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iCloud for Windows 7.21, tvOS 14.0. A remote attacker may be able to cause a denial of service.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 sqlite3.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, gnupg2/gpg@2.2.20-1ubuntu4.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gnupg2/gpg@2.2.20-1ubuntu4.1 + + sqlite3/libsqlite3-0@3.35.5-1ubuntu0.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An information disclosure issue was addressed with improved state management. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iTunes for Windows 12.10.9, iCloud for Windows 11.5, tvOS 14.0. A remote attacker may be able to leak memory.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 sqlite3.

+

References

+ + +
+ + + +
+
+

Time-of-check Time-of-use (TOCTOU)

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + shadow/passwd +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and shadow/passwd@1:4.8.1-1ubuntu9 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + shadow/passwd@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + shadow/passwd@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + shadow/login@1:4.8.1-1ubuntu9 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + util-linux/mount@2.36.1-8ubuntu2.2 + + util-linux@2.36.1-8ubuntu2.2 + + shadow/login@1:4.8.1-1ubuntu9 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream shadow package.

+

shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees

+

Remediation

+

There is no fixed version for Ubuntu:21.10 shadow.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and pcre3/libpcre3@2:8.39-13ubuntu0.21.10.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + pcre3/libpcre3@2:8.39-13ubuntu0.21.10.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + grep@3.7-0ubuntu1 + + pcre3/libpcre3@2:8.39-13ubuntu0.21.10.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package.

+

In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 pcre3.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.37-0ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 pcre2.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.37-0ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 pcre2.

+

References

+ + +
+ + + +
+
+

Double Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and patch@2.7.6-7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + patch@2.7.6-7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

A double free exists in the another_hunk function in pch.c in GNU patch through 2.7.6.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 patch.

+

References

+ + +
+ + + +
+
+

Release of Invalid Pointer or Reference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and patch@2.7.6-7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + patch@2.7.6-7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

An Invalid Pointer vulnerability exists in GNU patch 2.7 via the another_hunk function, which causes a Denial of Service.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 patch.

+

References

+ + +
+ + + +
+
+

CVE-2021-41617

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and openssh/openssh-client@1:8.4p1-6ubuntu2.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

sshd in OpenSSH 6.2 through 8.x before 8.8, when certain non-default configurations are used, allows privilege escalation because supplemental groups are not initialized as expected. Helper programs for AuthorizedKeysCommand and AuthorizedPrincipalsCommand may run with privileges associated with group memberships of the sshd process, if the configuration specifies running the command as a different user.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 openssh.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and openssh/openssh-client@1:8.4p1-6ubuntu2.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

The client side in OpenSSH 5.7 through 8.4 has an Observable Discrepancy leading to an information leak in the algorithm negotiation. This allows man-in-the-middle attackers to target initial connection attempts (where no host key for the server has been cached by the client). NOTE: some reports state that 8.5 and 8.6 are also affected.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 openssh.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + ncurses/libtinfo6 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and ncurses/libtinfo6@6.2+20201114-2build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + bash@5.1-3ubuntu2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/libncursesw6@6.2+20201114-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + less@551-2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + libedit/libedit2@3.1-20191231-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/libncurses6@6.2+20201114-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/ncurses-bin@6.2+20201114-2build1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + procps@2:3.3.17-5ubuntu3 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + util-linux/mount@2.36.1-8ubuntu2.2 + + util-linux@2.36.1-8ubuntu2.2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gnupg2/gpg@2.2.20-1ubuntu4.1 + + gnupg2/gpgconf@2.2.20-1ubuntu4.1 + + readline/libreadline8@8.1-2 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gnupg2/gnupg@2.2.20-1ubuntu4.1 + + gnupg2/gpg-agent@2.2.20-1ubuntu4.1 + + pinentry/pinentry-curses@1.1.1-1 + + ncurses/libtinfo6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/libncursesw6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + procps@2:3.3.17-5ubuntu3 + + ncurses/libncursesw6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gnupg2/gnupg@2.2.20-1ubuntu4.1 + + gnupg2/gpg-agent@2.2.20-1ubuntu4.1 + + pinentry/pinentry-curses@1.1.1-1 + + ncurses/libncursesw6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/libncurses6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + procps@2:3.3.17-5ubuntu3 + + ncurses/libncurses6@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/ncurses-base@6.2+20201114-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + ncurses/ncurses-bin@6.2+20201114-2build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream ncurses package.

+

ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 ncurses.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + krb5/libk5crypto3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and krb5/libk5crypto3@1.18.3-6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + krb5/libk5crypto3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + krb5/libkrb5-3@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + openssh/openssh-client@1:8.4p1-6ubuntu2.1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2.3 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2.3 + + libssh/libssh-4@0.9.6-1 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-1ubuntu9 + + pam/libpam-modules@1.3.1-5ubuntu11 + + libnsl/libnsl2@1.3.0-2build1 + + libtirpc/libtirpc3@1.3.2-2 + + krb5/libgssapi-krb5-2@1.18.3-6 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + krb5/libkrb5support0@1.18.3-6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 krb5.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + gmp/libgmp10 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + coreutils@8.32-4ubuntu2 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + apt@2.3.9ubuntu0.1 + + gnutls28/libgnutls30@3.7.1-5ubuntu1 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + apt@2.3.9ubuntu0.1 + + gnutls28/libgnutls30@3.7.1-5ubuntu1 + + nettle/libhogweed6@3.7.3-1 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + curl/libcurl3-gnutls@7.74.0-1.3ubuntu2.3 + + rtmpdump/librtmp1@2.4+20151223.gitfa8646d.1-2build3 + + gmp/libgmp10@2:6.2.1+dfsg-1ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream gmp package.

+

GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 gmp.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and glibc/libc-bin@2.34-0ubuntu3.2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + glibc/libc-bin@2.34-0ubuntu3.2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + meta-common-packages@meta + + glibc/libc6@2.34-0ubuntu3.2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

sha256crypt and sha512crypt through 0.6 allow attackers to cause a denial of service (CPU consumption) because the algorithm's runtime is proportional to the square of the length of the password.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 glibc.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.3.6, git@1:2.32.0-1ubuntu1.2 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + git/git-man@1:2.32.0-1ubuntu1.2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git@1:2.32.0-1ubuntu1.2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + git-lfs@2.13.2-1 + + git@1:2.32.0-1ubuntu1.2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package.

+

GIT version 2.15.1 and earlier contains a Input Validation Error vulnerability in Client that can result in problems including messing up terminal configuration to RCE. This attack appear to be exploitable via The user must interact with a malicious git server, (or have their traffic modified in a MITM attack).

+

Remediation

+

There is no fixed version for Ubuntu:21.10 git.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:21.10 +
  • +
  • + Vulnerable module: + + coreutils +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.3.6 and coreutils@8.32-4ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.3.6 + + coreutils@8.32-4ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream coreutils package.

+

chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

+

Remediation

+

There is no fixed version for Ubuntu:21.10 coreutils.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.3.6/redis:6.2.6-alpine.html b/docs/snyk/v2.3.6/redis:6.2.6-alpine.html new file mode 100644 index 0000000000..7e697ebe36 --- /dev/null +++ b/docs/snyk/v2.3.6/redis:6.2.6-alpine.html @@ -0,0 +1,651 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:03:15 pm

+
+
+ Scanned the following path: +
    +
  • redis:6.2.6-alpine (apk)
  • +
+
+ +
+
1 known vulnerabilities
+
9 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|redis
Path redis:6.2.6-alpine
Package Manager apk
+
+
+
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|redis@6.2.6-alpine and openssl/libcrypto1.1@1.1.1n-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + openssl/libssl1.1@1.1.1n-r0 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + .redis-rundeps@20220405.104447 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + libretls/libretls@3.3.4-r3 + + openssl/libcrypto1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + .redis-rundeps@20220405.104447 + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@6.2.6-alpine + + libretls/libretls@3.3.4-r3 + + openssl/libssl1.1@1.1.1n-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.4.7/argocd-iac-install.html b/docs/snyk/v2.4.7/argocd-iac-install.html new file mode 100644 index 0000000000..b45b5ab59b --- /dev/null +++ b/docs/snyk/v2.4.7/argocd-iac-install.html @@ -0,0 +1,2243 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:01:54 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/install.yaml (Kubernetes)
  • +
+
+ +
+
32 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/install.yaml
Path /private/argo-cd/manifests/install.yaml
Project Type Kubernetes
+
+
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9052 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 11] + + role + + rules[4] + + resources + +
  • + +
  • + Line number: 9091 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 12] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9157 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 13] + + role + + rules[1] + + resources + +
  • + +
  • + Line number: 9176 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 13] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 9176 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 14] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 9217 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 46] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 10101 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9687 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9787 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9764 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9830 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9902 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10101 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 9956 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 47] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10184 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 48] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 10444 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 43] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 9771 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 9912 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 42] + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + livenessProbe + +
  • + +
  • + Line number: 9687 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 43] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 9764 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 43] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 9787 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 45] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 9902 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 46] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 10101 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 42] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9687 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9764 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 43] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9787 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 44] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9830 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 45] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9902 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10101 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 46] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 9956 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 47] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10184 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 48] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 10444 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/v2.4.7/argocd-iac-namespace-install.html b/docs/snyk/v2.4.7/argocd-iac-namespace-install.html new file mode 100644 index 0000000000..4ced1915fb --- /dev/null +++ b/docs/snyk/v2.4.7/argocd-iac-namespace-install.html @@ -0,0 +1,2243 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:02:04 pm

+
+
+ Scanned the following path: +
    +
  • /private/argo-cd/manifests/namespace-install.yaml (Kubernetes)
  • +
+
+ +
+
32 total issues
+
+
+
+
+ +
+ + + + + + +
Project manifests/namespace-install.yaml
Path /private/argo-cd/manifests/namespace-install.yaml
Project Type Kubernetes
+
+
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 7] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 61 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 8] + + role + + rules[4] + + resources + +
  • + +
  • + Line number: 100 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 9] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 166 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[1] + + resources + +
  • + +
  • + Line number: 185 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 10] + + role + + rules[3] + + resources + +
  • + +
  • + Line number: 185 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Role with dangerous permissions

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-47 +
  • + +
  • Introduced through: + [DocId: 11] + + role + + rules[0] + + resources + +
  • + +
  • + Line number: 226 +
  • +
+ +
+ +

Impact

+

Using this role grants dangerous permissions

+ +

Remediation

+

Consider removing this permissions

+ + +
+
+ + + +
+
+

Container could be running with outdated image

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-42 +
  • + +
  • Introduced through: + [DocId: 39] + + spec + + template + + spec + + initContainers[copyutil] + + imagePullPolicy + +
  • + +
  • + Line number: 1025 +
  • +
+ +
+ +

Impact

+

The container may run with outdated or unauthorized image

+ +

Remediation

+

Set `imagePullPolicy` attribute to `Always`

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 611 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 711 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 688 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 754 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 826 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 1025 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 880 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 40] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 1108 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container has no CPU limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-5 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + cpu + +
  • + +
  • + Line number: 1368 +
  • +
+ +
+ +

Impact

+

CPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.

+ +

Remediation

+

Add `resources.limits.cpu` field with required CPU limit value

+ + +
+
+ + + +
+
+

Container is running with multiple open ports

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-36 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + containers[dex] + + ports + +
  • + +
  • + Line number: 695 +
  • +
+ +
+ +

Impact

+

Increases the attack surface of the application and the container.

+ +

Remediation

+

Reduce `ports` count to 2

+ + +
+
+ + + +
+
+

Container is running with writable root filesystem

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-8 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + securityContext + + readOnlyRootFilesystem + +
  • + +
  • + Line number: 836 +
  • +
+ +
+ +

Impact

+

Compromised process could abuse writable root filesystem to elevate privileges

+ +

Remediation

+

Set `securityContext.readOnlyRootFilesystem` to `true`

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 35] + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + livenessProbe + +
  • + +
  • + Line number: 611 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + containers[dex] + + livenessProbe + +
  • + +
  • + Line number: 688 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 36] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 711 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 38] + + spec + + template + + spec + + containers[redis] + + livenessProbe + +
  • + +
  • + Line number: 826 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without liveness probe

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-41 +
  • + +
  • Introduced through: + [DocId: 39] + + spec + + template + + spec + + initContainers[copyutil] + + livenessProbe + +
  • + +
  • + Line number: 1025 +
  • +
+ +
+ +

Impact

+

Kubernetes will not be able to detect if application is able to service requests, and will not restart unhealthy pods

+ +

Remediation

+

Add `livenessProbe` attribute

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 35] + + input + + spec + + template + + spec + + containers[argocd-applicationset-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 611 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + containers[dex] + + resources + + limits + + memory + +
  • + +
  • + Line number: 688 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 36] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 711 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 37] + + input + + spec + + template + + spec + + containers[argocd-notifications-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 754 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 38] + + input + + spec + + template + + spec + + containers[redis] + + resources + + limits + + memory + +
  • + +
  • + Line number: 826 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + initContainers[copyutil] + + resources + + limits + + memory + +
  • + +
  • + Line number: 1025 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 39] + + input + + spec + + template + + spec + + containers[argocd-repo-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 880 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 40] + + input + + spec + + template + + spec + + containers[argocd-server] + + resources + + limits + + memory + +
  • + +
  • + Line number: 1108 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+

Container is running without memory limit

+
+ +
+ low severity +
+ +
+ +
    +
  • + Public ID: SNYK-CC-K8S-4 +
  • + +
  • Introduced through: + [DocId: 41] + + input + + spec + + template + + spec + + containers[argocd-application-controller] + + resources + + limits + + memory + +
  • + +
  • + Line number: 1368 +
  • +
+ +
+ +

Impact

+

Containers without memory limits are more likely to be terminated when the node runs out of memory

+ +

Remediation

+

Set `resources.limits.memory` value

+ + +
+
+ + + +
+
+
+ +
+ + + diff --git a/docs/snyk/v2.4.7/argocd-test.html b/docs/snyk/v2.4.7/argocd-test.html new file mode 100644 index 0000000000..6815aff39a --- /dev/null +++ b/docs/snyk/v2.4.7/argocd-test.html @@ -0,0 +1,3488 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:00:51 pm

+
+
+ Scanned the following paths: +
    +
  • /private/argo-cd/argoproj/argo-cd/v2 (gomodules)
  • /private/argo-cd (yarn)
  • +
+
+ +
+
7 known vulnerabilities
+
113 vulnerable dependency paths
+
1649 dependencies
+
+
+
+
+ +
+
+
+

Authorization Bypass Through User-Controlled Key

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + parse-path +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, git-url-parse@11.6.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + git-url-parse@11.6.0 + + git-up@4.0.5 + + parse-url@6.0.2 + + parse-path@4.0.4 + + + +
  • +
+ +
+ +
+ +

Overview

+

parse-path is a Parse paths (local paths, urls: ssh/git/etc)

+

Affected versions of this package are vulnerable to Authorization Bypass Through User-Controlled Key which is unable to detect the right resource.

+

Remediation

+

Upgrade parse-path to version 5.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Regular Expression Denial of Service (ReDoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + moment +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, argo-ui@1.0.0 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + antd@4.19.5 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + moment-timezone@0.5.33 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + antd@4.19.5 + + rc-picker@2.6.7 + + moment@2.29.1 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + moment@2.29.2 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + argo-ui@1.0.0 + + moment@2.29.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

moment is a lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.

+

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the preprocessRFC2822() function in from-string.js, when processing a very long crafted string (over 10k characters).

+

PoC:

+
moment("(".repeat(500000))
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

+

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

+

Let’s take the following regular expression as an example:

+
regex = /A(B|C+)+D/
+        
+

This regular expression accomplishes the following:

+
    +
  • A The string must start with the letter 'A'
  • +
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • +
  • D Finally, we ensure this section of the string ends with a 'D'
  • +
+

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

+

It most cases, it doesn't take very long for a regex engine to find a match:

+
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
+        0.04s user 0.01s system 95% cpu 0.052 total
+        
+        $ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
+        1.79s user 0.02s system 99% cpu 1.812 total
+        
+

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

+

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

+

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

+
    +
  1. CCC
  2. +
  3. CC+C
  4. +
  5. C+CC
  6. +
  7. C+C+C.
  8. +
+

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

+

From there, the number of steps the engine must use to validate a string just continues to grow.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StringNumber of C'sNumber of steps
ACCCX338
ACCCCX471
ACCCCCX5136
ACCCCCCCCCCCCCCX1465,553
+

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

+

Remediation

+

Upgrade moment to version 2.29.4 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + gopkg.in/yaml.v3 +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/argoproj/notifications-engine/pkg/api@#567361917320 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/stretchr/testify/mock@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/controller@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.7.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/apimachinery/pkg/util/managedfields@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.7.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/diff@0.7.0 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/tools/record@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/discovery/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes/fake@0.23.1 + + k8s.io/client-go/testing@0.23.1 + + k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/cache@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/cache@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/health@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + k8s.io/client-go/informers/core/v1@0.23.1 + + k8s.io/client-go/kubernetes@0.23.1 + + k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/storage/v1beta1@0.23.1 + + k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/handler@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/util/openapi@0.23.1 + + k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.0 + + github.com/argoproj/gitops-engine/pkg/sync/common@0.7.0 + + github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.0 + + k8s.io/kubectl/pkg/cmd/util@0.23.1 + + k8s.io/cli-runtime/pkg/resource@0.23.1 + + sigs.k8s.io/kustomize/api/krusty@0.10.1 + + sigs.k8s.io/kustomize/api/resmap@0.10.1 + + sigs.k8s.io/kustomize/kyaml/kio@0.13.0 + + github.com/stretchr/testify/require@1.7.1 + + github.com/stretchr/testify/assert@1.7.1 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime/pkg/source@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/source/internal@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/predicate@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/event@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/internal/objectutil@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.11.0 + + k8s.io/client-go/restmapper@0.23.1 + + k8s.io/client-go/discovery@0.23.1 + + github.com/googleapis/gnostic/openapiv2@0.5.5 + + github.com/googleapis/gnostic/compiler@0.5.5 + + github.com/googleapis/gnostic/jsonschema@0.5.5 + + gopkg.in/yaml.v3@#496545a6307b + + + +
  • +
+ +
+ +
+ +

Overview

+

gopkg.in/yaml.v3 is a YAML support package for the Go language.

+

Affected versions of this package are vulnerable to Denial of Service (DoS) via the Unmarshal function, which causes the program to crash when attempting to deserialize invalid input.

+

PoC

+
package main
+        
+        import (
+            "gopkg.in/yaml.v3"
+        )
+        
+        func main() {
+            var t interface{}
+            yaml.Unmarshal([]byte("0: [:!00 \xef"), &t)
+        }
+        
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade gopkg.in/yaml.v3 to version 3.0.0 or higher.

+

References

+ + +
+ + + +
+
+

Prototype Pollution

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: npm +
  • +
  • + Vulnerable module: + + json-pointer +
  • + +
  • Introduced through: + + + argo-cd-ui@1.0.0, redoc@2.0.0-rc.64 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.64 + + json-pointer@0.6.2 + + + +
  • +
  • + Introduced through: + argo-cd-ui@1.0.0 + + redoc@2.0.0-rc.64 + + openapi-sampler@1.2.1 + + json-pointer@0.6.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

json-pointer is a set of utilities for JSON pointers described by RFC 6901

+

Affected versions of this package are vulnerable to Prototype Pollution. A type confusion vulnerability can lead to a bypass of CVE-2020-7709 when the pointer components are arrays.

+

PoC

+
const pointer = require('json-pointer');
+        
+        // pointer.set({}, ['__proto__', 'polluted'], 'yes')
+        // console.log(polluted) // ReferenceError: polluted is not defined
+        
+        pointer.set({}, [['__proto__'], 'polluted'], 'yes')
+        console.log(polluted)"
+        
+

Details

+

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as _proto_, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

+

There are two main ways in which the pollution of prototypes occurs:

+
    +
  • Unsafe Object recursive merge

    +
  • +
  • Property definition by path

    +
  • +
+

Unsafe Object recursive merge

+

The logic of a vulnerable recursive merge function follows the following high-level model:

+
merge (target, source)
+        
+          foreach property of source
+        
+            if property exists and is an object on both the target and the source
+        
+              merge(target[property], source[property])
+        
+            else
+        
+              target[property] = source[property]
+        
+
+ +

When the source object contains a property named _proto_ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

+

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

+

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

+

Property definition by path

+

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

+

If the attacker can control the value of “path”, they can set this value to _proto_.myValue. myValue is then assigned to the prototype of the class of the object.

+

Types of attacks

+

There are a few methods by which Prototype Pollution can be manipulated:

+ + + + + + + + + + + + + + + + + + + + + + + +
TypeOriginShort description
Denial of service (DoS)ClientThis is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code ExecutionClientRemote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property InjectionClientThe attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.
+

Affected environments

+

The following environments are susceptible to a Prototype Pollution attack:

+
    +
  • Application server

    +
  • +
  • Web server

    +
  • +
+

How to prevent

+
    +
  1. Freeze the prototype— use Object.freeze (Object.prototype).

    +
  2. +
  3. Require schema validation of JSON input.

    +
  4. +
  5. Avoid using unsafe recursive merge functions.

    +
  6. +
  7. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

    +
  8. +
  9. As a best practice use Map instead of Object.

    +
  10. +
+

For more information on this vulnerability type:

+

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

+

Remediation

+

A fix was pushed into the master branch but not yet published.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + go.mongodb.org/mongo-driver/bson/bsonrw +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/go-openapi/runtime/middleware@0.19.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.5 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.2 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/go-openapi/runtime/middleware@0.19.4 + + github.com/go-openapi/validate@0.19.5 + + github.com/go-openapi/strfmt@0.19.3 + + go.mongodb.org/mongo-driver/bson@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsoncodec@1.1.2 + + go.mongodb.org/mongo-driver/bson/bsonrw@1.1.2 + + + +
  • +
+ +
+ +
+ +

Overview

+

go.mongodb.org/mongo-driver/bson/bsonrw is a The MongoDB supported driver for Go.

+

Affected versions of this package are vulnerable to Improper Input Validation. Specific cstrings input may not be properly validated in the MongoDB Go Driver when marshalling Go objects into BSON. A malicious user could use a Go object with specific string to potentially inject additional fields into marshalled documents.

+

Remediation

+

Upgrade go.mongodb.org/mongo-driver/bson/bsonrw to version 1.5.1 or higher.

+

References

+ + +
+ + + +
+
+

Denial of Service (DoS)

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + github.com/prometheus/client_golang/prometheus/promhttp +
  • + +
  • Introduced through: + + github.com/argoproj/argo-cd/v2@0.0.0 and github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + sigs.k8s.io/controller-runtime@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/manager@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook@0.11.0 + + sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.11.0 + + github.com/prometheus/client_golang/prometheus/promhttp@1.11.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

Affected versions of this package are vulnerable to Denial of Service (DoS) when handling requests with non-standard HTTP methods.

+

Note: In order to be affected, an instrumented software must:

+
    +
  1. use promhttp.InstrumentHandler* middleware except RequestsInFlight

    +
  2. +
  3. not filter any specific methods (e.g GET) before middleware

    +
  4. +
  5. pass metric with method label name to the middleware

    +
  6. +
  7. not have any firewall/LB/proxy that filters away requests with unknown method.

    +
  8. +
+

Workarounds:

+
    +
  1. removing the method label name from counter/gauge used in the InstrumentHandler

    +
  2. +
  3. turning off affected promhttp handlers

    +
  4. +
  5. adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request

    +
  6. +
  7. using a reverse proxy or web application firewall, configured to only allow a limited set of methods.

    +
  8. +
+

Details

+

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

+

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

+

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

+

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

+

Two common types of DoS vulnerabilities:

+
    +
  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

    +
  • +
  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

    +
  • +
+

Remediation

+

Upgrade github.com/prometheus/client_golang/prometheus/promhttp to version 1.11.1 or higher.

+

References

+ + +
+ + + +
+
+

Insecure Randomness

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: golang +
  • +
  • + Vulnerable module: + + github.com/Masterminds/goutils +
  • + +
  • Introduced through: + + + github.com/argoproj/argo-cd/v2@0.0.0, github.com/argoproj/notifications-engine/pkg/api@#567361917320 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + github.com/argoproj/notifications-engine/pkg/templates@#567361917320 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + github.com/argoproj/notifications-engine/pkg/templates@#567361917320 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
  • + Introduced through: + github.com/argoproj/argo-cd/v2@0.0.0 + + github.com/argoproj/notifications-engine/pkg/controller@#567361917320 + + github.com/argoproj/notifications-engine/pkg/api@#567361917320 + + github.com/argoproj/notifications-engine/pkg/templates@#567361917320 + + github.com/Masterminds/sprig@2.22.0 + + github.com/Masterminds/goutils@1.1.0 + + + +
  • +
+ +
+ +
+ +

Overview

+

github.com/masterminds/goutils is a provides users with utility functions to manipulate strings in various ways.

+

Affected versions of this package are vulnerable to Insecure Randomness via the RandomAlphaNumeric(int) and CryptoRandomAlphaNumeric(int) functions. Small values of int in the functions above will return a smaller subset of results than they should. For example, RandomAlphaNumeric(1) would always return a digit in the 0-9 range, while RandomAlphaNumeric(4) return around ~7 million of the ~13M possible permutations.

+

Remediation

+

Upgrade github.com/masterminds/goutils to version 1.1.1 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.4.7/ghcr.io_dexidp_dex:v2.30.2.html b/docs/snyk/v2.4.7/ghcr.io_dexidp_dex:v2.30.2.html new file mode 100644 index 0000000000..c40fe1b746 --- /dev/null +++ b/docs/snyk/v2.4.7/ghcr.io_dexidp_dex:v2.30.2.html @@ -0,0 +1,1291 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:00:56 pm

+
+
+ Scanned the following path: +
    +
  • ghcr.io/dexidp/dex:v2.30.2/dexidp/dex (apk)
  • +
+
+ +
+
6 known vulnerabilities
+
36 vulnerable dependency paths
+
16 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|ghcr.io/dexidp/dex
Path ghcr.io/dexidp/dex:v2.30.2/dexidp/dex
Package Manager apk
+
+
+
+
+

CVE-2022-28391

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and busybox/busybox@1.33.1-r6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + alpine-baselayout/alpine-baselayout@3.2.0-r16 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.14 relevant versions.

+

BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.

+

Remediation

+

Upgrade Alpine:3.14 busybox to version 1.33.1-r7 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + zlib/zlib +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and zlib/zlib@1.2.11-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + zlib/zlib@1.2.11-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Alpine:3.14 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Alpine:3.14 zlib to version 1.2.12-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and openssl/libcrypto1.1@1.1.1l-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.14 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.14 openssl to version 1.1.1n-r0 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and openssl/libcrypto1.1@1.1.1l-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libcrypto1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + apk-tools/apk-tools@2.12.7-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + openssl/libssl1.1@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + openssl/openssl@1.1.1l-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.14 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.14 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + libretls/libretls +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and libretls/libretls@3.3.3p1-r2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + libretls/libretls@3.3.3p1-r2 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + libretls/libretls@3.3.3p1-r2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libretls package. + See How to fix? for Alpine:3.14 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.14 libretls to version 3.3.3p1-r3 or higher.

+

References

+ + +
+ + + +
+
+

ALPINE-13661

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.14 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|ghcr.io/dexidp/dex@v2.30.2 and busybox/busybox@1.33.1-r6 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + alpine-baselayout/alpine-baselayout@3.2.0-r16 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + ca-certificates/ca-certificates@20191127-r5 + + busybox/busybox@1.33.1-r6 + + + +
  • +
  • + Introduced through: + docker-image|ghcr.io/dexidp/dex@v2.30.2 + + busybox/ssl_client@1.33.1-r6 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Alpine:3.14 busybox to version 1.33.1-r7 or higher.

+ +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.4.7/haproxy:2.0.25-alpine.html b/docs/snyk/v2.4.7/haproxy:2.0.25-alpine.html new file mode 100644 index 0000000000..4dd8b21846 --- /dev/null +++ b/docs/snyk/v2.4.7/haproxy:2.0.25-alpine.html @@ -0,0 +1,1375 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:01:00 pm

+
+
+ Scanned the following path: +
    +
  • haproxy:2.0.25-alpine (apk)
  • +
+
+ +
+
8 known vulnerabilities
+
33 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|haproxy
Path haproxy:2.0.25-alpine
Package Manager apk
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + pcre2/pcre2 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and pcre2/pcre2@10.39-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + pcre2/pcre2@10.39-r0 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + pcre2/pcre2@10.39-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package. + See How to fix? for Alpine:3.15 relevant versions.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

Upgrade Alpine:3.15 pcre2 to version 10.40-r0 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + pcre2/pcre2 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and pcre2/pcre2@10.39-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + pcre2/pcre2@10.39-r0 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + pcre2/pcre2@10.39-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package. + See How to fix? for Alpine:3.15 relevant versions.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

Upgrade Alpine:3.15 pcre2 to version 10.40-r0 or higher.

+

References

+ + +
+ + + +
+
+

CVE-2022-28391

+
+ +
+ critical severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and busybox/busybox@1.34.1-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + alpine-baselayout/alpine-baselayout@3.2.0-r18 + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.15 relevant versions.

+

BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.

+

Remediation

+

Upgrade Alpine:3.15 busybox to version 1.34.1-r5 or higher.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Write

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + zlib/zlib +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and zlib/zlib@1.2.11-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + zlib/zlib@1.2.11-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + zlib/zlib@1.2.11-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream zlib package. + See How to fix? for Alpine:3.15 relevant versions.

+

zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.

+

Remediation

+

Upgrade Alpine:3.15 zlib to version 1.2.12-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and openssl/libcrypto1.1@1.1.1l-r7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1n-r0 or higher.

+

References

+ + +
+ + + +
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and openssl/libcrypto1.1@1.1.1l-r7 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libcrypto1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + .haproxy-rundeps@20211130.023109 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + apk-tools/apk-tools@2.12.7-r3 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + openssl/libssl1.1@1.1.1l-r7 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.15 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.15 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Loop with Unreachable Exit Condition ('Infinite Loop')

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + libretls/libretls +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and libretls/libretls@3.3.4-r2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + libretls/libretls@3.3.4-r2 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + libretls/libretls@3.3.4-r2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libretls package. + See How to fix? for Alpine:3.15 relevant versions.

+

The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).

+

Remediation

+

Upgrade Alpine:3.15 libretls to version 3.3.4-r3 or higher.

+

References

+ + +
+ + + +
+
+

ALPINE-13661

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.15 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|haproxy@2.0.25-alpine and busybox/busybox@1.34.1-r3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + alpine-baselayout/alpine-baselayout@3.2.0-r18 + + busybox/busybox@1.34.1-r3 + + + +
  • +
  • + Introduced through: + docker-image|haproxy@2.0.25-alpine + + busybox/ssl_client@1.34.1-r3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

This vulnerability has not been analyzed by NVD yet.

+

Remediation

+

Upgrade Alpine:3.15 busybox to version 1.34.1-r5 or higher.

+ +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.4.7/quay.io_argoproj_argocd:v2.4.7.html b/docs/snyk/v2.4.7/quay.io_argoproj_argocd:v2.4.7.html new file mode 100644 index 0000000000..bc35dc99b0 --- /dev/null +++ b/docs/snyk/v2.4.7/quay.io_argoproj_argocd:v2.4.7.html @@ -0,0 +1,2495 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:01:10 pm

+
+
+ Scanned the following path: +
    +
  • quay.io/argoproj/argocd:v2.4.7/argoproj/argocd (deb)
  • +
+
+ +
+
20 known vulnerabilities
+
66 vulnerable dependency paths
+
162 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|quay.io/argoproj/argocd
Path quay.io/argoproj/argocd:v2.4.7/argoproj/argocd
Package Manager deb
Manifest Dockerfile
+
+
+
+
+

Out-of-bounds Read

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, gnupg2/gpg@2.2.27-3ubuntu2.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + sqlite3/libsqlite3-0@3.37.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An out-of-bounds read was addressed with improved bounds checking. This issue is fixed in iOS 13.5 and iPadOS 13.5, macOS Catalina 10.15.5, tvOS 13.4.5, watchOS 6.2.5, iTunes 12.10.7 for Windows, iCloud for Windows 11.2, iCloud for Windows 7.19. A malicious application may cause a denial of service or potentially disclose memory contents.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Improper Verification of Cryptographic Signature

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + perl/perl-modules-5.34 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, git@1:2.34.1-1ubuntu1.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + perl/perl-modules-5.34@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + perl/libperl5.34@5.34.0-3ubuntu1 + + perl/perl-modules-5.34@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + perl/libperl5.34@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + perl@5.34.0-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + meta-common-packages@meta + + perl/perl-base@5.34.0-3ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream perl package.

+

CPAN 2.28 allows Signature Verification Bypass.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 perl.

+

References

+ + +
+ + + +
+
+

CVE-2021-46828

+
+ +
+ medium severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + libtirpc/libtirpc-common +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and libtirpc/libtirpc-common@1.3.2-2build1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + libtirpc/libtirpc-common@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + libtirpc/libtirpc-common@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + libtirpc/libtirpc3@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libtirpc/libtirpc3@1.3.2-2build1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream libtirpc package.

+

In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 libtirpc.

+

References

+ + +
+ + + +
+
+

NULL Pointer Dereference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + tar +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + meta-common-packages@meta + + tar@1.34+dfsg-1build3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream tar package.

+

pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 tar.

+

References

+ + +
+ + + +
+
+

CVE-2020-9991

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, gnupg2/gpg@2.2.27-3ubuntu2.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + sqlite3/libsqlite3-0@3.37.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

This issue was addressed with improved checks. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iCloud for Windows 7.21, tvOS 14.0. A remote attacker may be able to cause a denial of service.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + sqlite3/libsqlite3-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, gnupg2/gpg@2.2.27-3ubuntu2.1 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + sqlite3/libsqlite3-0@3.37.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream sqlite3 package.

+

An information disclosure issue was addressed with improved state management. This issue is fixed in macOS Big Sur 11.0.1, watchOS 7.0, iOS 14.0 and iPadOS 14.0, iTunes for Windows 12.10.9, iCloud for Windows 11.5, tvOS 14.0. A remote attacker may be able to leak memory.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 sqlite3.

+

References

+ + +
+ + + +
+
+

Time-of-check Time-of-use (TOCTOU)

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + shadow/passwd +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and shadow/passwd@1:4.8.1-2ubuntu2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + shadow/passwd@1:4.8.1-2ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + openssh/openssh-client@1:8.9p1-3 + + shadow/passwd@1:4.8.1-2ubuntu2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + shadow/login@1:4.8.1-2ubuntu2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream shadow package.

+

shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees

+

Remediation

+

There is no fixed version for Ubuntu:22.04 shadow.

+

References

+ + +
+ + + +
+
+

Uncontrolled Recursion

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + pcre3/libpcre3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + grep@3.7-1build1 + + pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre3 package.

+

In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 pcre3.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.39-3build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 pcre2.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + pcre2/libpcre2-8-0 +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, meta-common-packages@meta and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + meta-common-packages@meta + + pcre2/libpcre2-8-0@10.39-3build1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream pcre2 package.

+

An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 pcre2.

+

References

+ + +
+ + + +
+
+

Release of Invalid Pointer or Reference

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and patch@2.7.6-7build2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + patch@2.7.6-7build2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

An Invalid Pointer vulnerability exists in GNU patch 2.7 via the another_hunk function, which causes a Denial of Service.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 patch.

+

References

+ + +
+ + + +
+
+

Double Free

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + patch +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and patch@2.7.6-7build2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + patch@2.7.6-7build2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream patch package.

+

A double free exists in the another_hunk function in pch.c in GNU patch through 2.7.6.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 patch.

+

References

+ + +
+ + + +
+
+

CVE-2021-41617

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and openssh/openssh-client@1:8.9p1-3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + openssh/openssh-client@1:8.9p1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

sshd in OpenSSH 6.2 through 8.x before 8.8, when certain non-default configurations are used, allows privilege escalation because supplemental groups are not initialized as expected. Helper programs for AuthorizedKeysCommand and AuthorizedPrincipalsCommand may run with privileges associated with group memberships of the sshd process, if the configuration specifies running the command as a different user.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 openssh.

+

References

+ + +
+ + + +
+
+

Information Exposure

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + openssh/openssh-client +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and openssh/openssh-client@1:8.9p1-3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + openssh/openssh-client@1:8.9p1-3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssh package.

+

The client side in OpenSSH 5.7 through 8.4 has an Observable Discrepancy leading to an information leak in the algorithm negotiation. This allows man-in-the-middle attackers to target initial connection attempts (where no host key for the server has been cached by the client). NOTE: some reports state that 8.5 and 8.6 are also affected.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 openssh.

+

References

+ + +
+ + + +
+
+

Out-of-bounds Read

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + ncurses/libtinfo6 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and ncurses/libtinfo6@6.3-2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + bash@5.1-6ubuntu1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/libncursesw6@6.3-2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + less@590-1build1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + libedit/libedit2@3.1-20210910-1build1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/libncurses6@6.3-2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/ncurses-bin@6.3-2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + procps@2:3.3.17-6ubuntu2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + util-linux@2.37.2-4ubuntu3 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gnupg2/gpg@2.2.27-3ubuntu2.1 + + gnupg2/gpgconf@2.2.27-3ubuntu2.1 + + readline/libreadline8@8.1.2-1 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gnupg2/gnupg@2.2.27-3ubuntu2.1 + + gnupg2/gpg-agent@2.2.27-3ubuntu2.1 + + pinentry/pinentry-curses@1.1.1-1build2 + + ncurses/libtinfo6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/libncursesw6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + procps@2:3.3.17-6ubuntu2 + + ncurses/libncursesw6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gnupg2/gnupg@2.2.27-3ubuntu2.1 + + gnupg2/gpg-agent@2.2.27-3ubuntu2.1 + + pinentry/pinentry-curses@1.1.1-1build2 + + ncurses/libncursesw6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/libncurses6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + procps@2:3.3.17-6ubuntu2 + + ncurses/libncurses6@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/ncurses-base@6.3-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + ncurses/ncurses-bin@6.3-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream ncurses package.

+

ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 ncurses.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + krb5/libk5crypto3 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and krb5/libk5crypto3@1.19.2-2 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + krb5/libk5crypto3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + krb5/libk5crypto3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + krb5/libkrb5-3@1.19.2-2 + + krb5/libk5crypto3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + krb5/libkrb5-3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + krb5/libkrb5-3@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + openssh/openssh-client@1:8.9p1-3 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + curl/libcurl3-gnutls@7.81.0-1ubuntu1.3 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + curl/libcurl3-gnutls@7.81.0-1ubuntu1.3 + + libssh/libssh-4@0.9.6-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + adduser@3.118ubuntu5 + + shadow/passwd@1:4.8.1-2ubuntu2 + + pam/libpam-modules@1.4.0-11ubuntu2 + + libnsl/libnsl2@1.3.0-2build2 + + libtirpc/libtirpc3@1.3.2-2build1 + + krb5/libgssapi-krb5-2@1.19.2-2 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + meta-common-packages@meta + + krb5/libkrb5support0@1.19.2-2 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream krb5 package.

+

An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 krb5.

+

References

+ + +
+ + + +
+
+

Integer Overflow or Wraparound

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + gmp/libgmp10 +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + coreutils@8.32-4.1ubuntu1 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + apt@2.4.5 + + gnutls28/libgnutls30@3.7.3-4ubuntu1 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + apt@2.4.5 + + gnutls28/libgnutls30@3.7.3-4ubuntu1 + + nettle/libhogweed6@3.7.3-1build2 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + curl/libcurl3-gnutls@7.81.0-1ubuntu1.3 + + rtmpdump/librtmp1@2.4+20151223.gitfa8646d.1-2build4 + + gmp/libgmp10@2:6.2.1+dfsg-3ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream gmp package.

+

GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 gmp.

+

References

+ + +
+ + + +
+
+

Allocation of Resources Without Limits or Throttling

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + glibc/libc-bin +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and glibc/libc-bin@2.35-0ubuntu3 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + glibc/libc-bin@2.35-0ubuntu3 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + meta-common-packages@meta + + glibc/libc6@2.35-0ubuntu3 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream glibc package.

+

sha256crypt and sha512crypt through 0.6 allow attackers to cause a denial of service (CPU consumption) because the algorithm's runtime is proportional to the square of the length of the password.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 glibc.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + git/git-man +
  • + +
  • Introduced through: + + + docker-image|quay.io/argoproj/argocd@v2.4.7, git@1:2.34.1-1ubuntu1.4 and others +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + git/git-man@1:2.34.1-1ubuntu1.4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git@1:2.34.1-1ubuntu1.4 + + + +
  • +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + git-lfs@3.0.2-1 + + git@1:2.34.1-1ubuntu1.4 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream git package.

+

GIT version 2.15.1 and earlier contains a Input Validation Error vulnerability in Client that can result in problems including messing up terminal configuration to RCE. This attack appear to be exploitable via The user must interact with a malicious git server, (or have their traffic modified in a MITM attack).

+

Remediation

+

There is no fixed version for Ubuntu:22.04 git.

+

References

+ + +
+ + + +
+
+

Improper Input Validation

+
+ +
+ low severity +
+ +
+ +
    +
  • + Package Manager: ubuntu:22.04 +
  • +
  • + Vulnerable module: + + coreutils +
  • + +
  • Introduced through: + + docker-image|quay.io/argoproj/argocd@v2.4.7 and coreutils@8.32-4.1ubuntu1 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|quay.io/argoproj/argocd@v2.4.7 + + coreutils@8.32-4.1ubuntu1 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream coreutils package.

+

chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

+

Remediation

+

There is no fixed version for Ubuntu:22.04 coreutils.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/docs/snyk/v2.4.7/redis:7.0.0-alpine.html b/docs/snyk/v2.4.7/redis:7.0.0-alpine.html new file mode 100644 index 0000000000..a7b5e25d37 --- /dev/null +++ b/docs/snyk/v2.4.7/redis:7.0.0-alpine.html @@ -0,0 +1,739 @@ + + + + + + + + + Snyk test report + + + + + + + + + +
+
+
+
+ + + Snyk - Open Source Security + + + + + + + +
+

Snyk test report

+ +

July 27th 2022, 3:01:14 pm

+
+
+ Scanned the following path: +
    +
  • redis:7.0.0-alpine (apk)
  • +
+
+ +
+
2 known vulnerabilities
+
12 vulnerable dependency paths
+
17 dependencies
+
+
+
+
+
+ + + + + + + +
Project docker-image|redis
Path redis:7.0.0-alpine
Package Manager apk
+
+
+
+
+

Inadequate Encryption Strength

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.16 +
  • +
  • + Vulnerable module: + + openssl/libcrypto1.1 +
  • + +
  • Introduced through: + + docker-image|redis@7.0.0-alpine and openssl/libcrypto1.1@1.1.1o-r0 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + openssl/libssl1.1@1.1.1o-r0 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + .redis-rundeps@20220525.220540 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + apk-tools/apk-tools@2.12.9-r3 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + busybox/ssl_client@1.35.0-r13 + + openssl/libcrypto1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + .redis-rundeps@20220525.220540 + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + apk-tools/apk-tools@2.12.9-r3 + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + busybox/ssl_client@1.35.0-r13 + + openssl/libssl1.1@1.1.1o-r0 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream openssl package. + See How to fix? for Alpine:3.16 relevant versions.

+

AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).

+

Remediation

+

Upgrade Alpine:3.16 openssl to version 1.1.1q-r0 or higher.

+

References

+ + +
+ + + +
+
+

Use After Free

+
+ +
+ high severity +
+ +
+ +
    +
  • + Package Manager: alpine:3.16 +
  • +
  • + Vulnerable module: + + busybox/busybox +
  • + +
  • Introduced through: + + docker-image|redis@7.0.0-alpine and busybox/busybox@1.35.0-r13 + +
  • +
+ +
+ + +

Detailed paths

+ +
    +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + busybox/busybox@1.35.0-r13 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + alpine-baselayout/alpine-baselayout-data@3.2.0-r20 + + alpine-baselayout/alpine-baselayout@3.2.0-r20 + + busybox/busybox@1.35.0-r13 + + + +
  • +
  • + Introduced through: + docker-image|redis@7.0.0-alpine + + busybox/ssl_client@1.35.0-r13 + + + +
  • +
+ +
+ +
+ +

NVD Description

+

Note: Versions mentioned in the description apply to the upstream busybox package. + See How to fix? for Alpine:3.16 relevant versions.

+

A use-after-free in Busybox 1.35-x's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the copyvar function.

+

Remediation

+

Upgrade Alpine:3.16 busybox to version 1.35.0-r15 or higher.

+

References

+ + +
+ + + +
+
+
+
+ + + diff --git a/hack/snyk-container-tests.sh b/hack/snyk-container-tests.sh new file mode 100755 index 0000000000..71440d4d22 --- /dev/null +++ b/hack/snyk-container-tests.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +set -e +set -o pipefail + +images=$(grep 'image: ' manifests/install.yaml manifests/namespace-install.yaml manifests/ha/install.yaml | sed 's/.*image: //' | sort | uniq) + +failed=false +while IFS= read -r image; do + extra_args="" + if echo "$image" | grep "argocd"; then + # Pass the file arg only for the Argo CD image. The file arg also gives us access to sarif output. + extra_args="--file=Dockerfile --sarif-file-output=/tmp/argocd-image.sarif" + fi + + set -x + if ! snyk container test "$image" --org=argoproj --severity-threshold=high $extra_args; then + failed=true + fi + set +x + +done <<< "$images" + +if [ "$failed" == "true" ]; then + exit 1 +fi diff --git a/hack/snyk-non-container-tests.sh b/hack/snyk-non-container-tests.sh new file mode 100755 index 0000000000..18016c5f1c --- /dev/null +++ b/hack/snyk-non-container-tests.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +set -e +set -o pipefail + +# Fail on high-or-greater vulnerabilities. +snyk test --all-projects --exclude=docs,site,ui-test --org=argoproj --severity-threshold=high --policy-path=.snyk --sarif-file-output=/tmp/argocd-test.sarif +snyk iac test manifests/install.yaml --org=argoproj --severity-threshold=high --policy-path=.snyk --sarif-file-output=/tmp/argocd-iac-test-install.sarif +snyk iac test manifests/namespace-install.yaml --org=argoproj --severity-threshold=high --policy-path=.snyk --sarif-file-output=/tmp/argocd-iac-test-namespace-install.sarif diff --git a/hack/snyk-report.sh b/hack/snyk-report.sh new file mode 100755 index 0000000000..5e86eea8cd --- /dev/null +++ b/hack/snyk-report.sh @@ -0,0 +1,136 @@ +#!/usr/bin/env bash + +set -e +set -o pipefail + +npm install snyk-to-html -g + +# Choose the branch where docs changes will actually be written. +target_branch="$1" +if [ "$target_branch" != "" ]; then + git checkout "$target_branch" +fi + +# In case the directory doesn't exist in the target branch. +mkdir -p docs/snyk + +# Clear the docs directory in case we need to delete an old version. +rm -rf docs/snyk/* + +cat > docs/snyk/index.md <<- EOM +# Snyk Scans + +Every Sunday, Snyk scans are generated for Argo CD's \`master\` branch and the most recent patches of the three most +recent minor releases. + +!!! note + For the most recent scans, view the [\`latest\` version of the docs](https://argo-cd.readthedocs.io/en/latest/snyk/). + You can return to your preferred version of the docs site using the dropdown selector at the top of the page. + +## Scans +EOM + +argocd_dir=$(pwd) +temp_dir=$(mktemp -d) +cd "$temp_dir" +git clone https://github.com/argoproj/argo-cd.git +cd argo-cd +git checkout master + +minor_version=$(sed -E 's/\.[0-9]+$//g' VERSION) +patch_num=$(git tag -l | grep "v$minor_version." | grep -o "[[:digit:]]*$" | sort -g | tail -n 1) +version="v$minor_version.$patch_num" +versions="master " +for i in 1 2 3; do + if [ "$version" == "" ]; then break; fi + # Nightmare code to get the most recent patches of the three most recent minor versions. + versions+="$version " + minor_num=$(printf '%s' "$minor_version" | sed -E 's/[0-9]+\.//') + minor_num=$((minor_num-1)) + minor_version=$(printf '%s' "$minor_version" | sed -E "s/\.[0-9]+$/.$minor_num/g") + patch_num=$(git tag -l | grep "v$minor_version." | grep -o "[[:digit:]]*$" | sort -g | tail -n 1) + version="v$minor_version.$patch_num" +done + +for version in $versions; do + printf '\n%s\n\n' "### $version" >> "$argocd_dir/docs/snyk/index.md" + + mkdir -p "$argocd_dir/docs/snyk/$version" + + git reset --hard # reset any pending changes to avoid checkout errors + git checkout "$version" + + # Get the latest ignore rules. + cp "$argocd_dir/.snyk" .snyk + + # || [ $? == 1 ] ignores errors due to vulnerabilities. + snyk test --all-projects --exclude=docs,site,ui-test --org=argoproj --policy-path=.snyk --sarif-file-output=/tmp/argocd-test.sarif --json-file-output=/tmp/argocd-test.json || [ $? == 1 ] + snyk-to-html -i /tmp/argocd-test.json -o "$argocd_dir/docs/snyk/$version/argocd-test.html" + printf '%s' "* [dependencies (golang and JavaScript)]($version/argocd-test.html) — " >> "$argocd_dir/docs/snyk/index.md" + jq 'map( + { + # Collect all the vulnerabilities severities. Group by id to avoid double-counting. + severity: (.vulnerabilities | group_by(.id) | map(.[0])[].severity), + displayTargetFile: (.displayTargetFile) + } + ) + # Group by target file (e.g. go.mod) so we can see where the vulnerabilities are. + | group_by(.displayTargetFile) + | map( + .[0].displayTargetFile + + ": \(map(select(.severity == "critical")) | length) critical, " + + "\(map(select(.severity == "high")) | length) high, " + + "\(map(select(.severity == "medium")) | length) medium, " + + "\(map(select(.severity == "low")) | length) low") + | join("; ")' -r /tmp/argocd-test.json >> "$argocd_dir/docs/snyk/index.md" + + + images=$(grep 'image: ' manifests/install.yaml manifests/namespace-install.yaml manifests/ha/install.yaml | sed 's/.*image: //' | sort | uniq) + + while IFS= read -r image; do + extra_args="" + if echo "$image" | grep "argocd"; then + # Pass the file arg only for the Argo CD image. The file arg also gives us access to sarif output. + extra_args="--file=Dockerfile --sarif-file-output=/tmp/${image//\//_}.sarif " + fi + + set -x + # || [ $? == 1 ] ignores errors due to vulnerabilities. + snyk container test "$image" --org=argoproj "--json-file-output=/tmp/${image//\//_}.json" $extra_args || [ $? == 1 ] + set +x + + snyk-to-html -i "/tmp/${image//\//_}.json" -o "$argocd_dir/docs/snyk/$version/${image//\//_}.html" + + printf '%s' "* [(image) $image]($version/${image//\//_}.html) — " >> "$argocd_dir/docs/snyk/index.md" + + # Add severity counts to index. + jq '[ + .vulnerabilities + # Group by ID to avoid double-counting. + | group_by(.id) + # Get the severity of the first vulnerability in the group (should be the same for every item in the group). + | map(.[0])[].severity + # Construct a summary using the counts of each severity level. + ] | "\(map(select(. == "critical")) | length) critical, \(map(select(. == "high")) | length) high, \(map(select(. == "medium")) | length) medium, \(map(select(. == "low")) | length) low"' -r "/tmp/${image//\//_}.json" >> "$argocd_dir/docs/snyk/index.md" + done <<< "$images" + + # || [ $? == 1 ] ignores errors due to vulnerabilities. + snyk iac test manifests/install.yaml --org=argoproj --policy-path=.snyk --sarif-file-output=/tmp/argocd-iac-install.sarif --json-file-output=/tmp/argocd-iac-install.json || [ $? == 1 ] + snyk-to-html -i /tmp/argocd-iac-install.json -o "$argocd_dir/docs/snyk/$version/argocd-iac-install.html" + echo "* [(IaC) manifests/install.yaml]($version/argocd-iac-install.html)" >> "$argocd_dir/docs/snyk/index.md" + + # || [ $? == 1 ] ignores errors due to vulnerabilities. + snyk iac test manifests/namespace-install.yaml --org=argoproj --policy-path=.snyk --sarif-file-output=/tmp/argocd-iac-namespace-install.sarif --json-file-output=/tmp/argocd-iac-namespace-install.json || [ $? == 1 ] + snyk-to-html -i /tmp/argocd-iac-namespace-install.json -o "$argocd_dir/docs/snyk/$version/argocd-iac-namespace-install.html" + echo "* [(IaC) manifests/namespace-install.yaml]($version/argocd-iac-namespace-install.html)" >> "$argocd_dir/docs/snyk/index.md" +done + +# clean up +cd "$argocd_dir" # Back to the main argo-cd clone. +rm -rf "$temp_dir" + +# regex-escape the temp dir path +dir_r="${temp_dir//\//\\\/}" + +# remove temp dir path from Snyk output +sed -i '' "s/$dir_r//g" docs/snyk/*/*.html diff --git a/mkdocs.yml b/mkdocs.yml index 9468aa57fe..ffa3657663 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -32,7 +32,9 @@ nav: - operator-manual/user-management/openunison.md - operator-manual/user-management/google.md - operator-manual/rbac.md - - operator-manual/security.md + - Security: + - Overview: operator-manual/security.md + - snyk/index.md - operator-manual/tls.md - operator-manual/cluster-bootstrapping.md - operator-manual/secret-management.md