Search criteria Use full-text search for keyword queries.
Combine vendor, product, and sources to narrow results.
Enable “Apply ordering” to sort by dates instead of relevance.

Related vulnerabilities

GHSA-XGPC-Q899-67P8

Vulnerability from github – Published: 2025-04-25 15:11 – Updated: 2025-05-05 22:00
VLAI?
Summary
Fleet doesn’t validate a server’s certificate when connecting through SSH
Details

Impact

A vulnerability has been identified within Fleet where, by default, Fleet will automatically trust a remote server’s certificate when connecting through SSH if the certificate isn’t set in the known_hosts file. This could allow the execution of a man-in-the-middle (MitM) attack against Fleet. In case the server that is being connected to has a trusted entry in the known_hosts file, then Fleet will correctly check the authenticity of the presented certificate.

Please consult the associated MITRE ATT&CK - Technique - Adversary-in-the-Middle for further information about this category of attack.

Patches

Patched versions include releases v0.10.12, v0.11.7 and v0.12.2.

The fix involves some key areas with the following changes:

  • Git latest commit fetcher sources known_hosts entries from the following locations, in decreasing order of priority:
  • Secret referenced in a GitRepo’s clientSecretName field;
  • If no secret is referenced, in a gitcredential secret located in the GitRepo’s namespace;
  • If that secret does not exist, in a (new) known-hosts config map installed by Fleet, populated statically with public entries shared by a few git providers: Github, Gitlab, Bitbucket, Azure DevOps;

  • Git cloner: same as above.

  • fleet apply command: same as above. The command reads entries from a FLEET_KNOWN_HOSTS environment variable. That command is typically run within a container inside a job pod created by Fleet to update bundles from a new commit. However, users may also decide to run it locally, perhaps even with multiple concurrent executions of the command on the same machine. To cater for this, fleet apply writes the contents of FLEET_KNOWN_HOSTS, if any, to a temporary file with a random name, and deletes that file once bundles have been created. This reduces the risk of conflicts between concurrent runs. This happens regardless of the git repository URL (SSH or not), since a repository may reference artifacts to be retrieved using SSH anyway.

Note about sourcing known_hosts entries: if entries are found in a supported source, whatever that source may be, then those entries will be used. For instance, if wrong entries, or an incomplete set of entries (e.g. only BitBucket entries for a GitRepo pointing to Github) are found in a secret referenced in a GitRepo’s clientSecretName field, they will still be used. This will lead to errors if strict host key checks are enabled, even if matching, correct entries are found in another source with lower priority, such as the known-hosts config map. Fleet will not use one source to complement the other.

Note: Fleet v0.9 release line does not have the fix for this CVE. The fix for v0.9 was considered too complex and with the risk of introducing instabilities right before this version goes into end-of-life (EOL), as documented in SUSE’s Product Support Lifecycle page. Please see the section below for workarounds or consider upgrading to a newer and patched version of Rancher.

Workarounds

There are no workarounds for this issue. Users are recommended to upgrade, as soon as possible, to a version of Fleet that contains the fixes.

References

If you have any questions or comments about this advisory: - Reach out to the SUSE Rancher Security team for security related inquiries. - Open an issue in the Rancher repository. - Verify with our support matrix and product support lifecycle.

Show details on source website

{
  "affected": [
    {
      "package": {
        "ecosystem": "Go",
        "name": "github.com/rancher/fleet"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0.9.0-rc.1"
            },
            {
              "fixed": "0.10.12"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    },
    {
      "package": {
        "ecosystem": "Go",
        "name": "github.com/rancher/fleet"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0.11.0"
            },
            {
              "fixed": "0.11.7"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    },
    {
      "package": {
        "ecosystem": "Go",
        "name": "github.com/rancher/fleet"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0.12.0"
            },
            {
              "fixed": "0.12.2"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "aliases": [
    "CVE-2025-23390"
  ],
  "database_specific": {
    "cwe_ids": [
      "CWE-295"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2025-04-25T15:11:07Z",
    "nvd_published_at": null,
    "severity": "MODERATE"
  },
  "details": "### Impact\nA vulnerability has been identified within Fleet where, by default, Fleet will automatically trust a remote server\u2019s certificate when connecting through SSH if the certificate isn\u2019t set in the `known_hosts` file. This could allow the execution of a man-in-the-middle (MitM) attack against Fleet. In case the server that is being connected to has a trusted entry in the known_hosts file, then Fleet will correctly check the authenticity of the presented certificate. \n\nPlease consult the associated  [MITRE ATT\u0026CK - Technique - Adversary-in-the-Middle](https://attack.mitre.org/techniques/T1557/) for further information about this category of attack.\n\n### Patches\nPatched versions include releases `v0.10.12`, `v0.11.7` and `v0.12.2`.\n\nThe fix involves some key areas with the following changes:\n\n- Git latest commit fetcher sources `known_hosts` entries from the following locations, in decreasing order of priority:\n  1. Secret referenced in a `GitRepo`\u2019s `clientSecretName` field;\n  2. If no secret is referenced, in a `gitcredential` secret located in the `GitRepo`\u2019s namespace;\n  3. If that secret does not exist, in a (new) `known-hosts` config map installed by Fleet, populated statically with public entries shared by a few git providers: Github, Gitlab, Bitbucket, Azure DevOps;\n\n- Git cloner: same as above.\n\n- `fleet apply` command: same as above. The command reads entries from a `FLEET_KNOWN_HOSTS` environment variable. That command is typically run within a container inside a job pod created by Fleet to update bundles from a new commit. However, users may also decide to run it locally, perhaps even with multiple concurrent executions of the command on the same machine. To cater for this, `fleet apply` writes the contents of `FLEET_KNOWN_HOSTS`, if any, to a temporary file with a random name, and deletes that file once bundles have been created. This reduces the risk of conflicts between concurrent runs.\nThis happens regardless of the git repository URL (SSH or not), since a repository may reference artifacts to be retrieved using SSH anyway.\n\n**Note about sourcing `known_hosts` entries:** if entries are found in a supported source, whatever that source may be, then those entries will be used. For instance, if wrong entries, or an incomplete set of entries (e.g. only BitBucket entries for a `GitRepo` pointing to Github) are found in a secret referenced in a `GitRepo`\u2019s `clientSecretName` field, they will still be used. This will lead to errors if strict host key checks are enabled, even if matching, correct entries are found in another source with lower priority, such as the `known-hosts` config map. Fleet will not use one source to complement the other.\n\n**Note: Fleet v0.9 release line does not have the fix for this CVE. The fix for v0.9 was considered too complex and with the risk of introducing instabilities right before this version goes into end-of-life (EOL), as documented in [SUSE\u2019s Product Support Lifecycle](https://www.suse.com/lifecycle/#suse-rancher-prime) page. Please see the section below for workarounds or consider upgrading to a newer and patched version of Rancher.**\n\n### Workarounds\nThere are no workarounds for this issue. Users are recommended to upgrade, as soon as possible, to a version of Fleet that contains the fixes.\n\n### References\nIf you have any questions or comments about this advisory:\n- Reach out to the [SUSE Rancher Security team](https://github.com/rancher/rancher/security/policy) for security related inquiries.\n- Open an issue in the [Rancher](https://github.com/rancher/rancher/issues/new/choose) repository.\n- Verify with our [support matrix](https://www.suse.com/suse-rancher/support-matrix/all-supported-versions/) and [product support lifecycle](https://www.suse.com/lifecycle/).",
  "id": "GHSA-xgpc-q899-67p8",
  "modified": "2025-05-05T22:00:39Z",
  "published": "2025-04-25T15:11:07Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/security/advisories/GHSA-xgpc-q899-67p8"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/pull/3571"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/pull/3572"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/pull/3573"
    },
    {
      "type": "PACKAGE",
      "url": "https://github.com/rancher/fleet"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/releases/tag/v0.10.12"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/releases/tag/v0.11.7"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rancher/fleet/releases/tag/v0.12.2"
    },
    {
      "type": "WEB",
      "url": "https://pkg.go.dev/vuln/GO-2025-3649"
    }
  ],
  "schema_version": "1.4.0",
  "severity": [
    {
      "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
      "type": "CVSS_V3"
    }
  ],
  "summary": "Fleet doesn\u2019t validate a server\u2019s certificate when connecting through SSH"
}

OPENSUSE-SU-2025:15059-1

Vulnerability from csaf_opensuse - Published: 2025-05-07 00:00 - Updated: 2025-05-07 00:00
Summary
govulncheck-vulndb-0.0.20250506T153719-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: govulncheck-vulndb-0.0.20250506T153719-1.1 on GA media
Description of the patch: These are all security issues fixed in the govulncheck-vulndb-0.0.20250506T153719-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-15059
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
Vendor Fix To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
References
https://www.suse.com/support/security/rating/ external
https://ftp.suse.com/pub/projects/security/csaf/o… self
https://lists.opensuse.org/archives/list/security… self
https://lists.opensuse.org/archives/list/security… self
https://www.suse.com/security/cve/CVE-2019-11243/ self
https://www.suse.com/security/cve/CVE-2023-32198/ self
https://www.suse.com/security/cve/CVE-2024-22031/ self
https://www.suse.com/security/cve/CVE-2025-23390/ self
https://www.suse.com/security/cve/CVE-2025-32777/ self
https://www.suse.com/security/cve/CVE-2025-3879/ self
https://www.suse.com/security/cve/CVE-2025-4166/ self
https://www.suse.com/security/cve/CVE-2025-4210/ self
https://www.suse.com/security/cve/CVE-2025-46327/ self
https://www.suse.com/security/cve/CVE-2025-46342/ self
https://www.suse.com/security/cve/CVE-2025-46569/ self
https://www.suse.com/security/cve/CVE-2025-46599/ self
https://www.suse.com/security/cve/CVE-2019-11243 external
https://bugzilla.suse.com/1133146 external
https://www.suse.com/security/cve/CVE-2023-32198 external
https://bugzilla.suse.com/1241557 external
https://www.suse.com/security/cve/CVE-2024-22031 external
https://bugzilla.suse.com/1223154 external
https://www.suse.com/security/cve/CVE-2025-23390 external
https://bugzilla.suse.com/1238987 external
https://www.suse.com/security/cve/CVE-2025-32777 external
https://www.suse.com/security/cve/CVE-2025-3879 external
https://bugzilla.suse.com/1242742 external
https://bugzilla.suse.com/1242795 external
https://www.suse.com/security/cve/CVE-2025-4166 external
https://bugzilla.suse.com/1242800 external
https://www.suse.com/security/cve/CVE-2025-4210 external
https://www.suse.com/security/cve/CVE-2025-46327 external
https://bugzilla.suse.com/1242017 external
https://www.suse.com/security/cve/CVE-2025-46342 external
https://www.suse.com/security/cve/CVE-2025-46569 external
https://bugzilla.suse.com/1246710 external
https://www.suse.com/security/cve/CVE-2025-46599 external

{
  "document": {
    "aggregate_severity": {
      "namespace": "https://www.suse.com/support/security/rating/",
      "text": "moderate"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright 2024 SUSE LLC. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "govulncheck-vulndb-0.0.20250506T153719-1.1 on GA media",
        "title": "Title of the patch"
      },
      {
        "category": "description",
        "text": "These are all security issues fixed in the govulncheck-vulndb-0.0.20250506T153719-1.1 package on the GA media of openSUSE Tumbleweed.",
        "title": "Description of the patch"
      },
      {
        "category": "details",
        "text": "openSUSE-Tumbleweed-2025-15059",
        "title": "Patchnames"
      },
      {
        "category": "legal_disclaimer",
        "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
        "title": "Terms of use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://www.suse.com/support/security/contact/",
      "name": "SUSE Product Security Team",
      "namespace": "https://www.suse.com/"
    },
    "references": [
      {
        "category": "external",
        "summary": "SUSE ratings",
        "url": "https://www.suse.com/support/security/rating/"
      },
      {
        "category": "self",
        "summary": "URL of this CSAF notice",
        "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2025_15059-1.json"
      },
      {
        "category": "self",
        "summary": "URL for openSUSE-SU-2025:15059-1",
        "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/HNV7O7SNYYY4AFS5HKAPLITKK3B57LE7/"
      },
      {
        "category": "self",
        "summary": "E-Mail link for openSUSE-SU-2025:15059-1",
        "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/HNV7O7SNYYY4AFS5HKAPLITKK3B57LE7/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2019-11243 page",
        "url": "https://www.suse.com/security/cve/CVE-2019-11243/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2023-32198 page",
        "url": "https://www.suse.com/security/cve/CVE-2023-32198/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2024-22031 page",
        "url": "https://www.suse.com/security/cve/CVE-2024-22031/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-23390 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-23390/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-32777 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-32777/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-3879 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-3879/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-4166 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-4166/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-4210 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-4210/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-46327 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-46327/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-46342 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-46342/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-46569 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-46569/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-46599 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-46599/"
      }
    ],
    "title": "govulncheck-vulndb-0.0.20250506T153719-1.1 on GA media",
    "tracking": {
      "current_release_date": "2025-05-07T00:00:00Z",
      "generator": {
        "date": "2025-05-07T00:00:00Z",
        "engine": {
          "name": "cve-database.git:bin/generate-csaf.pl",
          "version": "1"
        }
      },
      "id": "openSUSE-SU-2025:15059-1",
      "initial_release_date": "2025-05-07T00:00:00Z",
      "revision_history": [
        {
          "date": "2025-05-07T00:00:00Z",
          "number": "1",
          "summary": "Current version"
        }
      ],
      "status": "final",
      "version": "1"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_version",
                "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
                "product": {
                  "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
                  "product_id": "govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64"
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
                "product": {
                  "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
                  "product_id": "govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le"
                }
              }
            ],
            "category": "architecture",
            "name": "ppc64le"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
                "product": {
                  "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
                  "product_id": "govulncheck-vulndb-0.0.20250506T153719-1.1.s390x"
                }
              }
            ],
            "category": "architecture",
            "name": "s390x"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64",
                "product": {
                  "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64",
                  "product_id": "govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
                }
              }
            ],
            "category": "architecture",
            "name": "x86_64"
          },
          {
            "branches": [
              {
                "category": "product_name",
                "name": "openSUSE Tumbleweed",
                "product": {
                  "name": "openSUSE Tumbleweed",
                  "product_id": "openSUSE Tumbleweed",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:opensuse:tumbleweed"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "SUSE Linux Enterprise"
          }
        ],
        "category": "vendor",
        "name": "SUSE"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64 as component of openSUSE Tumbleweed",
          "product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64"
        },
        "product_reference": "govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
        "relates_to_product_reference": "openSUSE Tumbleweed"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le as component of openSUSE Tumbleweed",
          "product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le"
        },
        "product_reference": "govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
        "relates_to_product_reference": "openSUSE Tumbleweed"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.s390x as component of openSUSE Tumbleweed",
          "product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x"
        },
        "product_reference": "govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
        "relates_to_product_reference": "openSUSE Tumbleweed"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64 as component of openSUSE Tumbleweed",
          "product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        },
        "product_reference": "govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64",
        "relates_to_product_reference": "openSUSE Tumbleweed"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2019-11243",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2019-11243"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "In Kubernetes v1.12.0-v1.12.4 and v1.13.0, the rest.AnonymousClientConfig() method returns a copy of the provided config, with credentials removed (bearer token, username/password, and client certificate/key data). In the affected versions, rest.AnonymousClientConfig() did not effectively clear service account credentials loaded using rest.InClusterConfig()",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2019-11243",
          "url": "https://www.suse.com/security/cve/CVE-2019-11243"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1133146 for CVE-2019-11243",
          "url": "https://bugzilla.suse.com/1133146"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 8.1,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2019-11243"
    },
    {
      "cve": "CVE-2023-32198",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2023-32198"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "unknown",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2023-32198",
          "url": "https://www.suse.com/security/cve/CVE-2023-32198"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1241557 for CVE-2023-32198",
          "url": "https://bugzilla.suse.com/1241557"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2023-32198"
    },
    {
      "cve": "CVE-2024-22031",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2024-22031"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "unknown",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2024-22031",
          "url": "https://www.suse.com/security/cve/CVE-2024-22031"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1223154 for CVE-2024-22031",
          "url": "https://bugzilla.suse.com/1223154"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2024-22031"
    },
    {
      "cve": "CVE-2025-23390",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-23390"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "unknown",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-23390",
          "url": "https://www.suse.com/security/cve/CVE-2025-23390"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1238987 for CVE-2025-23390",
          "url": "https://bugzilla.suse.com/1238987"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-23390"
    },
    {
      "cve": "CVE-2025-32777",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-32777"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Volcano is a Kubernetes-native batch scheduling system. Prior to versions 1.11.2, 1.10.2, 1.9.1, 1.11.0-network-topology-preview.3, and 1.12.0-alpha.2, attacker compromise of either the Elastic service or the extender plugin can cause denial of service of the scheduler. This is a privilege escalation, because Volcano users may run their Elastic service and extender plugins in separate pods or nodes from the scheduler. In the Kubernetes security model, node isolation is a security boundary, and as such an attacker is able to cross that boundary in Volcano\u0027s case if they have compromised either the vulnerable services or the pod/node in which they are deployed. The scheduler will become unavailable to other users and workloads in the cluster. The scheduler will either crash with an unrecoverable OOM panic or freeze while consuming excessive amounts of memory. This issue has been patched in versions 1.11.2, 1.10.2, 1.9.1, 1.11.0-network-topology-preview.3, and 1.12.0-alpha.2.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-32777",
          "url": "https://www.suse.com/security/cve/CVE-2025-32777"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-32777"
    },
    {
      "cve": "CVE-2025-3879",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-3879"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Vault Community, Vault Enterprise (\"Vault\") Azure Auth method did not correctly validate the claims in the Azure-issued token, resulting in the potential bypass of the bound_locations parameter on login. Fixed in Vault Community Edition 1.19.1 and Vault Enterprise 1.19.1, 1.18.7, 1.17.14, 1.16.18.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-3879",
          "url": "https://www.suse.com/security/cve/CVE-2025-3879"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1242742 for CVE-2025-3879",
          "url": "https://bugzilla.suse.com/1242742"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1242795 for CVE-2025-3879",
          "url": "https://bugzilla.suse.com/1242795"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 7.5,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-3879"
    },
    {
      "cve": "CVE-2025-4166",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-4166"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Vault Community and Vault Enterprise Key/Value (kv) Version 2 plugin may unintentionally expose sensitive information in server and audit logs when users submit malformed payloads during secret creation or update operations via the Vault REST API. This vulnerability, identified as CVE-2025-4166, is fixed in Vault Community 1.19.3 and Vault Enterprise 1.19.3, 1.18.9, 1.17.16, 1.16.20.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-4166",
          "url": "https://www.suse.com/security/cve/CVE-2025-4166"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1242800 for CVE-2025-4166",
          "url": "https://bugzilla.suse.com/1242800"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 4.5,
            "baseSeverity": "MEDIUM",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:N/A:N",
            "version": "3.1"
          },
          "products": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2025-4166"
    },
    {
      "cve": "CVE-2025-4210",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-4210"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "A vulnerability classified as critical was found in Casdoor up to 1.811.0. This vulnerability affects the function HandleScim of the file controllers/scim.go of the component SCIM User Creation Endpoint. The manipulation leads to authorization bypass. The attack can be initiated remotely. Upgrading to version 1.812.0 is able to address this issue. The name of the patch is 3d12ac8dc2282369296c3386815c00a06c6a92fe. It is recommended to upgrade the affected component.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-4210",
          "url": "https://www.suse.com/security/cve/CVE-2025-4210"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-4210"
    },
    {
      "cve": "CVE-2025-46327",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-46327"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "gosnowflake is the Snowflake Golang driver. Versions starting from 1.7.0 to before 1.13.3, are vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition. When using the Easy Logging feature on Linux and macOS, the Driver reads logging configuration from a user-provided file. On Linux and macOS the Driver verifies that the configuration file can be written to only by its owner. That check was vulnerable to a TOCTOU race condition and failed to verify that the file owner matches the user running the Driver. This could allow a local attacker with write access to the configuration file or the directory containing it to overwrite the configuration and gain control over logging level and output location. This issue has been patched in version 1.13.3.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-46327",
          "url": "https://www.suse.com/security/cve/CVE-2025-46327"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1242017 for CVE-2025-46327",
          "url": "https://bugzilla.suse.com/1242017"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 6.3,
            "baseSeverity": "MEDIUM",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:N",
            "version": "3.1"
          },
          "products": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2025-46327"
    },
    {
      "cve": "CVE-2025-46342",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-46342"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Kyverno is a policy engine designed for cloud native platform engineering teams. Prior to versions 1.13.5 and 1.14.0, it may happen that policy rules using namespace selector(s) in their match statements are mistakenly not applied during admission review request processing due to a missing error propagation in function `GetNamespaceSelectorsFromNamespaceLister` in `pkg/utils/engine/labels.go`. As a consequence, security-critical mutations and validations are bypassed, potentially allowing attackers with K8s API access to perform malicious operations. This issue has been patched in versions 1.13.5 and 1.14.0.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-46342",
          "url": "https://www.suse.com/security/cve/CVE-2025-46342"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-46342"
    },
    {
      "cve": "CVE-2025-46569",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-46569"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Open Policy Agent (OPA) is an open source, general-purpose policy engine. Prior to version 1.4.0, when run as a server, OPA exposes an HTTP Data API for reading and writing documents. Requesting a virtual document through the Data API entails policy evaluation, where a Rego query containing a single data document reference is constructed from the requested path. This query is then used for policy evaluation. A HTTP request path can be crafted in a way that injects Rego code into the constructed query. The evaluation result cannot be made to return any other data than what is generated by the requested path, but this path can be misdirected, and the injected Rego code can be crafted to make the query succeed or fail; opening up for oracle attacks or, given the right circumstances, erroneous policy decision results. Furthermore, the injected code can be crafted to be computationally expensive, resulting in a Denial Of Service (DoS) attack. This issue has been patched in version 1.4.0. A workaround involves having network access to OPA\u0027s RESTful APIs being limited to `localhost` and/or trusted networks, unless necessary for production reasons.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-46569",
          "url": "https://www.suse.com/security/cve/CVE-2025-46569"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1246710 for CVE-2025-46569",
          "url": "https://bugzilla.suse.com/1246710"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 8.3,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L",
            "version": "3.1"
          },
          "products": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-46569"
    },
    {
      "cve": "CVE-2025-46599",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-46599"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "CNCF K3s 1.32 before 1.32.4-rc1+k3s1 has a Kubernetes kubelet configuration change with the unintended consequence that, in some situations, ReadOnlyPort is set to 10255. For example, the default behavior of a K3s online installation might allow unauthenticated access to this port, exposing credentials.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
          "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-46599",
          "url": "https://www.suse.com/security/cve/CVE-2025-46599"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.aarch64",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.ppc64le",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.s390x",
            "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20250506T153719-1.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2025-05-07T00:00:00Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2025-46599"
    }
  ]
}