Snyk - Open Source Security

Snyk test report

March 24th 2024, 12:20:18 am (UTC+00:00)

Scanned the following paths:
  • quay.io/argoproj/argocd:v2.8.13/argoproj/argocd/Dockerfile (deb)
  • quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2//usr/local/bin/argocd (gomodules)
  • quay.io/argoproj/argocd:v2.8.13/kustomize/kustomize/v5//usr/local/bin/kustomize (gomodules)
  • quay.io/argoproj/argocd:v2.8.13/helm/v3//usr/local/bin/helm (gomodules)
  • quay.io/argoproj/argocd:v2.8.13/git-lfs/git-lfs//usr/bin/git-lfs (gomodules)
39 known vulnerabilities
182 vulnerable dependency paths
2120 dependencies

Denial of Service (DoS)

high severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/helm/v3 /usr/local/bin/helm
  • Package Manager: golang
  • Vulnerable module: golang.org/x/net/http2
  • Introduced through: helm.sh/helm/v3@* and golang.org/x/net/http2@v0.8.0

Detailed paths

  • Introduced through: helm.sh/helm/v3@* golang.org/x/net/http2@v0.8.0

Overview

golang.org/x/net/http2 is a work-in-progress HTTP/2 implementation for Go.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the implementation of the HTTP/2 protocol. An attacker can cause a denial of service (including via DDoS) by rapidly resetting many streams through request cancellation.

Remediation

Upgrade golang.org/x/net/http2 to version 0.17.0 or higher.

References


Denial of Service (DoS)

high severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Vulnerable module: github.com/go-jose/go-jose/v3
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/go-jose/go-jose/v3@v3.0.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/go-jose/go-jose/v3@v3.0.0

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) when decrypting JWE inputs. An attacker can cause a denial-of-service by providing a PBES2 encrypted JWE blob with a very large p2c value.

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/go-jose/go-jose/v3 to version 3.0.1 or higher.

References


Directory Traversal

high severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/helm/v3 /usr/local/bin/helm
  • Package Manager: golang
  • Vulnerable module: github.com/cyphar/filepath-securejoin
  • Introduced through: helm.sh/helm/v3@* and github.com/cyphar/filepath-securejoin@v0.2.3

Detailed paths

  • Introduced through: helm.sh/helm/v3@* github.com/cyphar/filepath-securejoin@v0.2.3

Overview

Affected versions of this package are vulnerable to Directory Traversal via the filepath.FromSlash() function, allwoing attackers to generate paths that were outside of the provided rootfs.

Note: This vulnerability is only exploitable on Windows OS.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa
        

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
        2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys
        

Remediation

Upgrade github.com/cyphar/filepath-securejoin to version 0.2.4 or higher.

References


CVE-2020-22916

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: xz-utils/liblzma5
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and xz-utils/liblzma5@5.2.5-2ubuntu1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 xz-utils/liblzma5@5.2.5-2ubuntu1

NVD Description

Note: Versions mentioned in the description apply only to the upstream xz-utils package and not the xz-utils package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

An issue discovered in XZ 5.2.5 allows attackers to cause a denial of service via decompression of a crafted file. NOTE: the vendor disputes the claims of "endless output" and "denial of service" because decompression of the 17,486 bytes always results in 114,881,179 bytes, which is often a reasonable size increase.

Remediation

There is no fixed version for Ubuntu:22.04 xz-utils.

References


CVE-2023-51767

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: openssh/openssh-client
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and openssh/openssh-client@1:8.9p1-3ubuntu0.6

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 openssh/openssh-client@1:8.9p1-3ubuntu0.6

NVD Description

Note: Versions mentioned in the description apply only to the upstream openssh package and not the openssh package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

OpenSSH through 9.6, when common types of DRAM are used, might allow row hammer attacks (for authentication bypass) because the integer value of authenticated in mm_answer_authpassword does not resist flips of a single bit. NOTE: this is applicable to a certain threat model of attacker-victim co-location in which the attacker has user privileges.

Remediation

There is no fixed version for Ubuntu:22.04 openssh.

References


Information Exposure

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: libgcrypt20
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and libgcrypt20@1.9.4-3ubuntu3

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/dirmngr@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 apt/libapt-pkg6.0@2.4.11 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 gnupg2/gpgv@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gnupg-utils@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-agent@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-client@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-server@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpgsm@2.2.27-3ubuntu2.1 libgcrypt20@1.9.4-3ubuntu3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 apt/libapt-pkg6.0@2.4.11 systemd/libsystemd0@249.11-0ubuntu3.12 libgcrypt20@1.9.4-3ubuntu3

NVD Description

Note: Versions mentioned in the description apply only to the upstream libgcrypt20 package and not the libgcrypt20 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

A timing-based side-channel flaw was found in libgcrypt's RSA implementation. This issue may allow a remote attacker to initiate a Bleichenbacher-style attack, which can lead to the decryption of RSA ciphertexts.

Remediation

There is no fixed version for Ubuntu:22.04 libgcrypt20.

References


CVE-2024-26461

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: krb5/libk5crypto3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and krb5/libk5crypto3@1.19.2-2ubuntu0.3

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream krb5 package and not the krb5 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

Kerberos 5 (aka krb5) 1.21.2 contains a memory leak vulnerability in /krb5/src/lib/gssapi/krb5/k5sealv3.c.

Remediation

There is no fixed version for Ubuntu:22.04 krb5.

References


CVE-2024-26462

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: krb5/libk5crypto3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and krb5/libk5crypto3@1.19.2-2ubuntu0.3

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream krb5 package and not the krb5 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

Kerberos 5 (aka krb5) 1.21.2 contains a memory leak vulnerability in /krb5/src/kdc/ndr.c.

Remediation

There is no fixed version for Ubuntu:22.04 krb5.

References


CVE-2024-26458

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: krb5/libk5crypto3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and krb5/libk5crypto3@1.19.2-2ubuntu0.3

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream krb5 package and not the krb5 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

Kerberos 5 (aka krb5) 1.21.2 contains a memory leak in /krb5/src/lib/rpc/pmap_rmt.c.

Remediation

There is no fixed version for Ubuntu:22.04 krb5.

References


LGPL-3.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Module: gopkg.in/retry.v1
  • Introduced through: github.com/argoproj/argo-cd/v2@* and gopkg.in/retry.v1@v1.0.3

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* gopkg.in/retry.v1@v1.0.3

LGPL-3.0 license


Infinite loop

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Vulnerable module: google.golang.org/protobuf/internal/encoding/json
  • Introduced through: github.com/argoproj/argo-cd/v2@* and google.golang.org/protobuf/internal/encoding/json@v1.31.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* google.golang.org/protobuf/internal/encoding/json@v1.31.0

Overview

Affected versions of this package are vulnerable to Infinite loop via the protojson.Unmarshal function. An attacker can cause a denial of service condition by unmarshaling certain forms of invalid JSON.

Note:

This condition can occur when unmarshaling into a message which contains a google.protobuf.Any value, or when the UnmarshalOptions.DiscardUnknown option is set.

Remediation

Upgrade google.golang.org/protobuf/internal/encoding/json to version 1.33.0 or higher.

References


Stack-based Buffer Overflow

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Vulnerable module: google.golang.org/protobuf/encoding/protojson
  • Introduced through: github.com/argoproj/argo-cd/v2@* and google.golang.org/protobuf/encoding/protojson@v1.31.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* google.golang.org/protobuf/encoding/protojson@v1.31.0

Overview

Affected versions of this package are vulnerable to Stack-based Buffer Overflow when processing input that uses pathologically deep nesting.

Remediation

Upgrade google.golang.org/protobuf/encoding/protojson to version 1.32.0 or higher.

References


Infinite loop

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Vulnerable module: google.golang.org/protobuf/encoding/protojson
  • Introduced through: github.com/argoproj/argo-cd/v2@* and google.golang.org/protobuf/encoding/protojson@v1.31.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* google.golang.org/protobuf/encoding/protojson@v1.31.0

Overview

Affected versions of this package are vulnerable to Infinite loop via the protojson.Unmarshal function. An attacker can cause a denial of service condition by unmarshaling certain forms of invalid JSON.

Note:

This condition can occur when unmarshaling into a message which contains a google.protobuf.Any value, or when the UnmarshalOptions.DiscardUnknown option is set.

Remediation

Upgrade google.golang.org/protobuf/encoding/protojson to version 1.33.0 or higher.

References


Allocation of Resources Without Limits or Throttling

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/helm/v3 /usr/local/bin/helm
  • Package Manager: golang
  • Vulnerable module: golang.org/x/net/http2
  • Introduced through: helm.sh/helm/v3@* and golang.org/x/net/http2@v0.8.0

Detailed paths

  • Introduced through: helm.sh/helm/v3@* golang.org/x/net/http2@v0.8.0

Overview

golang.org/x/net/http2 is a work-in-progress HTTP/2 implementation for Go.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling when MaxConcurrentStreams handler goroutines running. A a handler is started until one of the existing handlers exits.

Note:

This issue is related to CVE-2023-44487

Remediation

Upgrade golang.org/x/net/http2 to version 0.17.0 or higher.

References


Authentication Bypass by Capture-replay

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Vulnerable module: golang.org/x/crypto/ssh
  • Introduced through: github.com/argoproj/argo-cd/v2@* and golang.org/x/crypto/ssh@v0.16.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* golang.org/x/crypto/ssh@v0.16.0

Overview

golang.org/x/crypto/ssh is a SSH client and server

Affected versions of this package are vulnerable to Authentication Bypass by Capture-replay during the establishment of the secure channel. An attacker can manipulate handshake sequence numbers to delete messages sent immediately after the channel is established.

Note:

  1. Sequence numbers are only validated once the channel is established and arbitrary messages are allowed during the handshake, allowing them to manipulate the sequence numbers.

  2. The potential consequences of the general Terrapin attack are dependent on the messages exchanged after the handshake concludes. If you are using a custom SSH service and do not resort to the authentication protocol, you should check that dropping the first few messages of a connection does not yield security risks.

Impact:

While cryptographically novel, there is no discernable impact on the integrity of SSH traffic beyond giving the attacker the ability to delete the message that enables some features related to keystroke timing obfuscation. To successfully carry out the exploitation, the connection needs to be protected using either the ChaCha20-Poly1305 or CBC with Encrypt-then-MAC encryption methods. The attacker must also be able to intercept and modify the connection's traffic.

Workaround

Temporarily disable the affected chacha20-poly1305@openssh.com encryption and *-etm@openssh.com MAC algorithms in the affected configuration, and use unaffected algorithms like AES-GCM instead.

Remediation

Upgrade golang.org/x/crypto/ssh to version 0.17.0 or higher.

References


Information Exposure

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: gnutls28/libgnutls30
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and gnutls28/libgnutls30@3.7.3-4ubuntu1.4

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/dirmngr@2.2.27-3ubuntu2.1 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 curl/libcurl3-gnutls@7.81.0-1ubuntu1.15 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 curl/libcurl3-gnutls@7.81.0-1ubuntu1.15 openldap/libldap-2.5-0@2.5.17+dfsg-0ubuntu0.22.04.1 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 curl/libcurl3-gnutls@7.81.0-1ubuntu1.15 rtmpdump/librtmp1@2.4+20151223.gitfa8646d.1-2build4 gnutls28/libgnutls30@3.7.3-4ubuntu1.4

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnutls28 package and not the gnutls28 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

A flaw was found in GnuTLS. The Minerva attack is a cryptographic vulnerability that exploits deterministic behavior in systems like GnuTLS, leading to side-channel leaks. In specific scenarios, such as when using the GNUTLS_PRIVKEY_FLAG_REPRODUCIBLE flag, it can result in a noticeable step in nonce size from 513 to 512 bits, exposing a potential timing side-channel.

Remediation

There is no fixed version for Ubuntu:22.04 gnutls28.

References


Uncaught Exception

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: gnutls28/libgnutls30
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and gnutls28/libgnutls30@3.7.3-4ubuntu1.4

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/dirmngr@2.2.27-3ubuntu2.1 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 curl/libcurl3-gnutls@7.81.0-1ubuntu1.15 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 curl/libcurl3-gnutls@7.81.0-1ubuntu1.15 openldap/libldap-2.5-0@2.5.17+dfsg-0ubuntu0.22.04.1 gnutls28/libgnutls30@3.7.3-4ubuntu1.4
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 curl/libcurl3-gnutls@7.81.0-1ubuntu1.15 rtmpdump/librtmp1@2.4+20151223.gitfa8646d.1-2build4 gnutls28/libgnutls30@3.7.3-4ubuntu1.4

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnutls28 package and not the gnutls28 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

A flaw has been discovered in GnuTLS where an application crash can be induced when attempting to verify a specially crafted .pem bundle using the "certtool --verify-chain" command.

Remediation

There is no fixed version for Ubuntu:22.04 gnutls28.

References


MPL-2.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Module: github.com/r3labs/diff
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/r3labs/diff@v1.1.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/r3labs/diff@v1.1.0

MPL-2.0 license


MPL-2.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Module: github.com/hashicorp/go-version
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/hashicorp/go-version@v1.2.1

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/hashicorp/go-version@v1.2.1

MPL-2.0 license


MPL-2.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Module: github.com/hashicorp/go-retryablehttp
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/hashicorp/go-retryablehttp@v0.7.4

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/hashicorp/go-retryablehttp@v0.7.4

MPL-2.0 license


MPL-2.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/helm/v3 /usr/local/bin/helm
  • Package Manager: golang
  • Module: github.com/hashicorp/go-multierror
  • Introduced through: helm.sh/helm/v3@* and github.com/hashicorp/go-multierror@v1.1.1

Detailed paths

  • Introduced through: helm.sh/helm/v3@* github.com/hashicorp/go-multierror@v1.1.1

MPL-2.0 license


MPL-2.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Module: github.com/hashicorp/go-cleanhttp
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/hashicorp/go-cleanhttp@v0.5.2

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/hashicorp/go-cleanhttp@v0.5.2

MPL-2.0 license


MPL-2.0 license

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Module: github.com/gosimple/slug
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/gosimple/slug@v1.13.1

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/gosimple/slug@v1.13.1

MPL-2.0 license


Improper Handling of Highly Compressed Data (Data Amplification)

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argo-cd/v2 /usr/local/bin/argocd
  • Package Manager: golang
  • Vulnerable module: github.com/go-jose/go-jose/v3
  • Introduced through: github.com/argoproj/argo-cd/v2@* and github.com/go-jose/go-jose/v3@v3.0.0

Detailed paths

  • Introduced through: github.com/argoproj/argo-cd/v2@* github.com/go-jose/go-jose/v3@v3.0.0

Overview

Affected versions of this package are vulnerable to Improper Handling of Highly Compressed Data (Data Amplification). An attacker could send a JWE containing compressed data that, when decompressed by Decrypt or DecryptMulti, would use large amounts of memory and CPU.

Remediation

Upgrade github.com/go-jose/go-jose/v3 to version 3.0.3 or higher.

References


Out-of-bounds Write

medium severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: bash
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and bash@5.1-6ubuntu1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 bash@5.1-6ubuntu1

NVD Description

Note: Versions mentioned in the description apply only to the upstream bash package and not the bash package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

A flaw was found in the bash package, where a heap-buffer overflow can occur in valid parameter_transform. This issue may lead to memory problems.

Remediation

Upgrade Ubuntu:22.04 bash to version 5.1-6ubuntu1.1 or higher.

References


CVE-2023-7008

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: systemd/libsystemd0
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and systemd/libsystemd0@249.11-0ubuntu3.12

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 systemd/libsystemd0@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 systemd/libsystemd0@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps/libprocps8@2:3.3.17-6ubuntu2.1 systemd/libsystemd0@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 util-linux@2.37.2-4ubuntu3 systemd/libsystemd0@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 util-linux/bsdutils@1:2.37.2-4ubuntu3 systemd/libsystemd0@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 apt/libapt-pkg6.0@2.4.11 systemd/libsystemd0@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 systemd/libudev1@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 libfido2/libfido2-1@1.10.0-1 systemd/libudev1@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 util-linux@2.37.2-4ubuntu3 systemd/libudev1@249.11-0ubuntu3.12
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 apt/libapt-pkg6.0@2.4.11 systemd/libudev1@249.11-0ubuntu3.12

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

A vulnerability was found in systemd-resolved. This issue may allow systemd-resolved to accept records of DNSSEC-signed domains even when they have no signature, allowing man-in-the-middles (or the upstream DNS resolver) to manipulate records.

Remediation

There is no fixed version for Ubuntu:22.04 systemd.

References


Arbitrary Code Injection

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: shadow/passwd
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and shadow/passwd@1:4.8.1-2ubuntu2.2

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream shadow package and not the shadow package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.

Remediation

There is no fixed version for Ubuntu:22.04 shadow.

References


Uncontrolled Recursion

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: pcre3/libpcre3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and pcre3/libpcre3@2:8.39-13ubuntu0.22.04.1

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream pcre3 package and not the pcre3 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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


Release of Invalid Pointer or Reference

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: patch
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and patch@2.7.6-7build2

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream patch package and not the patch package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: patch
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and patch@2.7.6-7build2

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream patch package and not the patch package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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-2023-50495

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: ncurses/libtinfo6
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and ncurses/libtinfo6@6.3-2ubuntu0.1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 bash@5.1-6ubuntu1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncursesw6@6.3-2ubuntu0.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 less@590-1ubuntu0.22.04.2 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 libedit/libedit2@3.1-20210910-1build1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncurses6@6.3-2ubuntu0.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/ncurses-bin@6.3-2ubuntu0.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps@2:3.3.17-6ubuntu2.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 util-linux@2.37.2-4ubuntu3 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1 readline/libreadline8@8.1.2-1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 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-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncursesw6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps@2:3.3.17-6ubuntu2.1 ncurses/libncursesw6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 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-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncurses6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps@2:3.3.17-6ubuntu2.1 ncurses/libncurses6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/ncurses-base@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/ncurses-bin@6.3-2ubuntu0.1

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

NCurse v6.4-20230418 was discovered to contain a segmentation fault via the component _nc_wrap_entry().

Remediation

There is no fixed version for Ubuntu:22.04 ncurses.

References


CVE-2023-45918

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: ncurses/libtinfo6
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and ncurses/libtinfo6@6.3-2ubuntu0.1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 bash@5.1-6ubuntu1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncursesw6@6.3-2ubuntu0.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 less@590-1ubuntu0.22.04.2 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 libedit/libedit2@3.1-20210910-1build1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncurses6@6.3-2ubuntu0.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/ncurses-bin@6.3-2ubuntu0.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps@2:3.3.17-6ubuntu2.1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 util-linux@2.37.2-4ubuntu3 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1 readline/libreadline8@8.1.2-1 ncurses/libtinfo6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 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-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncursesw6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps@2:3.3.17-6ubuntu2.1 ncurses/libncursesw6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 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-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/libncurses6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 procps@2:3.3.17-6ubuntu2.1 ncurses/libncurses6@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/ncurses-base@6.3-2ubuntu0.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 ncurses/ncurses-bin@6.3-2ubuntu0.1

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

ncurses 6.4-20230610 has a NULL pointer dereference in tgetstr in tinfo/lib_termcap.c.

Remediation

There is no fixed version for Ubuntu:22.04 ncurses.

References


Resource Exhaustion

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: libzstd/libzstd1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and libzstd/libzstd1@1.4.8+dfsg-3build1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 libzstd/libzstd1@1.4.8+dfsg-3build1

NVD Description

Note: Versions mentioned in the description apply only to the upstream libzstd package and not the libzstd package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.

Remediation

There is no fixed version for Ubuntu:22.04 libzstd.

References


Integer Overflow or Wraparound

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: krb5/libk5crypto3
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and krb5/libk5crypto3@1.19.2-2ubuntu0.3

Detailed paths

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

NVD Description

Note: Versions mentioned in the description apply only to the upstream krb5 package and not the krb5 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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


Out-of-bounds Write

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: gnupg2/gpgv
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and gnupg2/gpgv@2.2.27-3ubuntu2.1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpgv@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 gnupg2/gpgv@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpgv@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/dirmngr@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-agent@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpgsm@2.2.27-3ubuntu2.1 gnupg2/gpgconf@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/dirmngr@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/dirmngr@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-client@2.2.27-3ubuntu2.1 gnupg2/dirmngr@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg-l10n@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gnupg-l10n@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg-utils@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gnupg-utils@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-client@2.2.27-3ubuntu2.1 gnupg2/gpg@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-server@2.2.27-3ubuntu2.1 gnupg2/gpg@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg-agent@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-agent@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-client@2.2.27-3ubuntu2.1 gnupg2/gpg-agent@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-server@2.2.27-3ubuntu2.1 gnupg2/gpg-agent@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg-wks-client@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-client@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpg-wks-server@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpg-wks-server@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gpgsm@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1 gnupg2/gpgsm@2.2.27-3ubuntu2.1
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gnupg2/gnupg@2.2.27-3ubuntu2.1

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnupg2 package and not the gnupg2 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.

Remediation

There is no fixed version for Ubuntu:22.04 gnupg2.

References


Allocation of Resources Without Limits or Throttling

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: glibc/libc-bin
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and glibc/libc-bin@2.35-0ubuntu3.6

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 glibc/libc-bin@2.35-0ubuntu3.6
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 glibc/libc6@2.35-0ubuntu3.6

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: git/git-man
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13, git@1:2.34.1-1ubuntu1.10 and others

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10 git/git-man@1:2.34.1-1ubuntu1.10
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git@1:2.34.1-1ubuntu1.10
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 git-lfs@3.0.2-1ubuntu0.2 git@1:2.34.1-1ubuntu1.10

NVD Description

Note: Versions mentioned in the description apply only to the upstream git package and not the git package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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


Uncontrolled Recursion

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: gcc-12/libstdc++6
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and gcc-12/libstdc++6@12.3.0-1ubuntu1~22.04

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gcc-12/libstdc++6@12.3.0-1ubuntu1~22.04
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 gcc-12/libstdc++6@12.3.0-1ubuntu1~22.04
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 apt@2.4.11 apt/libapt-pkg6.0@2.4.11 gcc-12/libstdc++6@12.3.0-1ubuntu1~22.04
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gcc-12/gcc-12-base@12.3.0-1ubuntu1~22.04
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 gcc-12/libgcc-s1@12.3.0-1ubuntu1~22.04

NVD Description

Note: Versions mentioned in the description apply only to the upstream gcc-12 package and not the gcc-12 package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

libiberty/rust-demangle.c in GNU GCC 11.2 allows stack consumption in demangle_const, as demonstrated by nm-new.

Remediation

There is no fixed version for Ubuntu:22.04 gcc-12.

References


Improper Input Validation

low severity

  • Manifest file: quay.io/argoproj/argocd:v2.8.13/argoproj/argocd Dockerfile
  • Package Manager: ubuntu:22.04
  • Vulnerable module: coreutils
  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 and coreutils@8.32-4.1ubuntu1.1

Detailed paths

  • Introduced through: docker-image|quay.io/argoproj/argocd@v2.8.13 coreutils@8.32-4.1ubuntu1.1

NVD Description

Note: Versions mentioned in the description apply only to the upstream coreutils package and not the coreutils package as distributed by Ubuntu. See How to fix? for Ubuntu:22.04 relevant fixed versions and status.

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