Snyk - Open Source Security

Snyk test report

March 19th 2023, 12:23:59 am

Scanned the following paths:
  • /argo-cd/argoproj/argo-cd/v2 (gomodules)
  • /argo-cd (yarn)
6 known vulnerabilities
197 vulnerable dependency paths
1655 dependencies

Server-side Request Forgery (SSRF)

medium severity

  • Package Manager: npm
  • Vulnerable module: parse-url
  • 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.5

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) due to improper detection of protocol, resource, and pathname fields. Exploiting this vulnerability results in bypassing protocol verification.

PoC:

import parseUrl from "parse-url";
        import fetch from 'node-fetch';
        var parsed=parseUrl("http://nnnn@localhost:808:/?id=xss")
        if(parsed.resource=="localhost"){
        console.log("internal network access is blocked")
        }
        else{
           const response = await fetch('http://'+parsed.resource+parsed.pathname);
                console.log(response)
         }
        

Remediation

Upgrade parse-url to version 8.1.0 or higher.

References


Improper Input Validation

medium severity

  • Package Manager: npm
  • Vulnerable module: parse-url
  • 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.5

Overview

parse-url is an An advanced url parser supporting git urls too. Affected versions of this package are vulnerable to Improper Input Validation due to incorrect parsing of URLs. This allows the attacker to craft a malformed URL which can lead to a phishing attack.


        const parseUrl = require("parse-url");
        const Url = require("url");
        
        const express = require('express');
        const app = express();
        
        var url = "https://www.google.com:x@fakesite.com:x";
        parsed = parseUrl(url);
        console.log("[*]`parse-url` output: ")
        console.log(parsed);
        
        parsed2 = Url.parse(url);
        console.log("[*]`url` output: ")
        console.log(parsed2)
        
        app.get('/', (req, res) => {
            if (parsed.host == "www.google.com") {
                res.send("<a href=\'" + parsed2.href + "\'>CLICK ME!</a>")
            }
        })
        
        app.listen(8888,"0.0.0.0");
        

Remediation

Upgrade parse-url to version 8.1.0 or higher.

References


Regular Expression Denial of Service (ReDoS)

medium severity

  • Package Manager: npm
  • Vulnerable module: minimatch
  • 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 @redocly/openapi-core@1.0.0-beta.82 minimatch@3.0.4

Overview

minimatch is a minimal matching utility. Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the braceExpand function in minimatch.js.

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. CC+C
  3. C+CC
  4. C+C+C.

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.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,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 minimatch to version 3.0.5 or higher.

References


Denial of Service (DoS)

medium severity

  • Package Manager: golang
  • Vulnerable module: gopkg.in/yaml.v2
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and gopkg.in/yaml.v2@2.2.4

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/spf13/cobra/doc@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/util/yaml@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/testing@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/google/go-jsonnet@0.18.0 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 sigs.k8s.io/controller-runtime/pkg/envtest@0.11.0 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/util/managedfields@0.23.1 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 sigs.k8s.io/structured-merge-diff/v4/fieldpath@4.2.0 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/services@#567361917320 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/subscriptions@#567361917320 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/util/misc@#567361917320 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/api@#567361917320 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/diff@0.7.3 k8s.io/apimachinery/pkg/util/strategicpatch@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 k8s.io/apimachinery/pkg/util/managedfields@0.23.1 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/watch@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/api/core/v1@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/api/rbac/v1@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 sigs.k8s.io/controller-runtime/pkg/scheme@0.11.0 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/api/errors@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/util/managedfields@0.23.1 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kube-openapi/pkg/common@#e816edb12b65 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • 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/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • 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/subscriptions@#567361917320 github.com/ghodss/yaml@1.0.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/kubernetes/scheme@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/clientcmd@0.23.1 k8s.io/client-go/tools/clientcmd/api/latest@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/portforward@0.23.1 k8s.io/api/core/v1@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/apis/meta/v1@0.23.1 k8s.io/apimachinery/pkg/watch@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/resource@0.7.3 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/testing@0.7.3 k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/tools/pager@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kubectl/pkg/util/resource@0.23.1 k8s.io/api/core/v1@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.23.1 k8s.io/client-go/pkg/apis/clientauthentication@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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/scheme@0.11.0 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/util/retry@0.23.1 k8s.io/apimachinery/pkg/api/errors@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/record@0.23.1 k8s.io/client-go/tools/reference@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/diff@0.7.3 k8s.io/client-go/kubernetes/scheme@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 k8s.io/client-go/tools/clientcmd@0.23.1 k8s.io/client-go/tools/clientcmd/api/latest@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/dynamic@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/transport/spdy@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/pkg/kubeclientmetrics@#36c59d8fafe0 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/testing@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/kubernetes@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/plugin/pkg/client/auth/azure@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/plugin/pkg/client/auth/gcp@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/plugin/pkg/client/auth/oidc@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/kubernetes/scheme@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/listers/core/v1@0.23.1 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/tools/pager@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/api@#567361917320 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/tools/pager@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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/tools/cache@0.23.1 k8s.io/client-go/tools/pager@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/informers@0.23.1 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/tools/pager@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/controller@#567361917320 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/tools/pager@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/api/equality@0.23.1 k8s.io/apimachinery/pkg/apis/meta/v1@0.23.1 k8s.io/apimachinery/pkg/watch@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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/webhook/conversion@0.11.0 sigs.k8s.io/controller-runtime/pkg/conversion@0.11.0 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • 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 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/dynamic@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/transport/spdy@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/pkg/kubeclientmetrics@#36c59d8fafe0 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/testing@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/kubernetes@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/plugin/pkg/client/auth/azure@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/plugin/pkg/client/auth/gcp@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/plugin/pkg/client/auth/oidc@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/record@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • 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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/kubernetes/fake@0.23.1 k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 k8s.io/kubectl/pkg/util/podutils@0.23.1 k8s.io/apimachinery/pkg/apis/meta/v1@0.23.1 k8s.io/apimachinery/pkg/watch@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/remotecommand@0.23.1 k8s.io/client-go/transport/spdy@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/diff@0.7.3 k8s.io/client-go/kubernetes/scheme@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/clientcmd@0.23.1 k8s.io/client-go/tools/clientcmd/api/latest@0.23.1 k8s.io/client-go/tools/clientcmd/api/v1@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/apimachinery/pkg/api/validation@0.23.1 k8s.io/apimachinery/pkg/apis/meta/v1/validation@0.23.1 k8s.io/apimachinery/pkg/apis/meta/v1@0.23.1 k8s.io/apimachinery/pkg/watch@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@0.23.1 k8s.io/cli-runtime/pkg/resource@0.23.1 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/listers/core/v1@0.23.1 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/api@#567361917320 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/informers@0.23.1 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/controller@#567361917320 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/client-go/tools/remotecommand@0.23.1 k8s.io/client-go/transport/spdy@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kubectl/pkg/util/term@0.23.1 k8s.io/client-go/tools/remotecommand@0.23.1 k8s.io/client-go/transport/spdy@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/notifications-engine/pkg/cmd@#567361917320 k8s.io/client-go/tools/clientcmd@0.23.1 k8s.io/client-go/tools/clientcmd/api/latest@0.23.1 k8s.io/client-go/tools/clientcmd/api/v1@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • 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.23.1 k8s.io/kube-openapi/pkg/util/proto@#e816edb12b65 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/cache@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/client-go/discovery@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 k8s.io/kubectl/pkg/util/term@0.23.1 k8s.io/client-go/tools/remotecommand@0.23.1 k8s.io/client-go/transport/spdy@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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/leaderelection@0.11.0 k8s.io/client-go/tools/leaderelection/resourcelock@0.23.1 k8s.io/client-go/kubernetes/typed/core/v1@0.23.1 k8s.io/client-go/applyconfigurations/core/v1@0.23.1 k8s.io/client-go/applyconfigurations/meta/v1@0.23.1 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/health@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/util/openapi@0.23.1 k8s.io/kube-openapi/pkg/validation/spec@#e816edb12b65 github.com/go-openapi/swag@0.19.14 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 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/kyaml/openapi@0.13.0 sigs.k8s.io/kustomize/kyaml/yaml@0.13.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/syncwaves@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 sigs.k8s.io/controller-runtime/pkg/metrics@0.11.0 k8s.io/client-go/tools/cache@0.23.1 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 github.com/argoproj/gitops-engine/pkg/sync/ignore@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/hook/helm@0.7.3 github.com/argoproj/gitops-engine/pkg/sync/common@0.7.3 github.com/argoproj/gitops-engine/pkg/utils/kube@0.7.3 k8s.io/kubectl/pkg/cmd/util@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 sigs.k8s.io/structured-merge-diff/v4/typed@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/tools/clientcmd/api@0.23.1 k8s.io/apimachinery/pkg/runtime@0.23.1 sigs.k8s.io/structured-merge-diff/v4/value@4.2.0 gopkg.in/yaml.v2@2.2.4
  • 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 k8s.io/client-go/rest@0.23.1 k8s.io/client-go/plugin/pkg/client/auth/exec@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer@0.23.1 k8s.io/apimachinery/pkg/runtime/serializer/json@0.23.1 sigs.k8s.io/yaml@1.3.0 gopkg.in/yaml.v2@2.2.4

Overview

gopkg.in/yaml.v2 is a YAML support package for the Go language. Affected versions of this package are vulnerable to Denial of Service (DoS). It is possible for authorized users to send malicious YAML payloads to cause kube-apiserver to consume excessive CPU cycles while parsing YAML.

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.v2 to version 2.2.8 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.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: cookiejar
  • Introduced through: argo-cd-ui@1.0.0, superagent@7.1.3 and others

Detailed paths

  • Introduced through: argo-cd-ui@1.0.0 superagent@7.1.3 cookiejar@2.1.3

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the Cookie.parse function, which uses an insecure regular expression.

PoC

const { CookieJar } = require("cookiejar");
        
        const jar = new CookieJar();
        
        const start = performance.now();
        const attack = "a" + "t".repeat(50_000);
        jar.setCookie(attack);
        console.log(`CookieJar.setCookie(): ${performance.now() - start}`);
        

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. CC+C
  3. C+CC
  4. C+C+C.

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.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,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 cookiejar to version 2.1.4 or higher.

References