Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2021-43809 (GCVE-0-2021-43809)
Vulnerability from cvelistv5
- CWE-88 - Improper Neutralization of Argument Delimiters in a Command ('Argument Injection')
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-04T04:03:08.862Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "name": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43", "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "name": "https://github.com/rubygems/rubygems/pull/5142", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "name": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "name": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "name": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "rubygems", "vendor": "rubygems", "versions": [ { "status": "affected", "version": "\u003c 2.2.33" } ] } ], "descriptions": [ { "lang": "en", "value": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code." } ], "metrics": [ { "cvssV3_1": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-88", "description": "CWE-88: Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2023-10-24T23:03:38.116Z", "orgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "shortName": "GitHub_M" }, "references": [ { "name": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43", "tags": [ "x_refsource_CONFIRM" ], "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "name": "https://github.com/rubygems/rubygems/pull/5142", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "name": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "name": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "name": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/", "tags": [ "x_refsource_MISC" ], "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/" } ], "source": { "advisory": "GHSA-fj7f-vq84-fh43", "discovery": "UNKNOWN" }, "title": "Local Code Execution through Argument Injection via dash leading git url parameter in Gemfile" } }, "cveMetadata": { "assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "assignerShortName": "GitHub_M", "cveId": "CVE-2021-43809", "datePublished": "2021-12-08T18:50:12", "dateReserved": "2021-11-16T00:00:00", "dateUpdated": "2024-08-04T04:03:08.862Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "vulnerability-lookup:meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2021-43809\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2021-12-08T19:15:10.067\",\"lastModified\":\"2024-11-21T06:29:50.260\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\\n\\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\\n\\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code.\"},{\"lang\":\"es\",\"value\":\"\\\"Bundler\\\" es un paquete para administrar las dependencias de las aplicaciones en Ruby. En \\\"bundler\\\" versiones anteriores a 2.2.33, cuando se trabaja con \\\"Gemfile\\\" no confiables y aparentemente inofensivos, no se espera que conlleven a una ejecuci\u00f3n de c\u00f3digo externo, a menos que est\u00e9 expl\u00edcito en el c\u00f3digo ruby dentro del propio \\\"Gemfile\\\". Sin embargo, si el \\\"Gemfile\\\" incluye entradas \\\"gem\\\" que usan la opci\u00f3n \\\"git\\\" con valores inv\u00e1lidos, pero aparentemente inofensivos, con un guion inicial, esto puede ser falso. Para manejar las dependencias que provienen de un repositorio Git en lugar de un registro, Bundler usa varios comandos, como \\\"git clone\\\". Estos comandos son construidos usando la entrada del usuario (por ejemplo, la URL del repositorio). Cuando son construidos los comandos, las versiones de Bundler anteriores a la 2.2.33, evitan correctamente las vulnerabilidades de inyecci\u00f3n de comandos pasando una matriz de argumentos en lugar de una cadena de comandos. Sin embargo, se presenta la posibilidad de que una entrada del usuario comience con un guion (\\\"-\\\") y por lo tanto sea tratada como un argumento opcional en lugar de posicional. Esto puede conllevar a una ejecuci\u00f3n de c\u00f3digo porque algunos de los comandos presentan opciones que pueden ser aprovechadas para ejecutar ejecutables arbitrarios. Como este valor proviene del archivo \\\"Gemfile\\\", puede contener cualquier car\u00e1cter, incluyendo un guion inicial. Para explotar esta vulnerabilidad, un atacante tiene que dise\u00f1ar un directorio que contenga un archivo \\\"Gemfile\\\" que declare una dependencia que sea encontrada en un repositorio Git. Esta dependencia tiene que tener una URL Git en forma de \\\"-u./payload\\\". Esta URL ser\u00e1 usada para construir un comando de clonaci\u00f3n de Git pero ser\u00e1 interpretada como el argumento de upload-pack. Entonces este directorio necesita ser compartido con la v\u00edctima, que entonces necesita ejecutar un comando que eval\u00fae el Gemfile, como \\\"bundle lock\\\", dentro. Esta vulnerabilidad puede conllevar a una ejecuci\u00f3n de c\u00f3digo arbitrario, que potencialmente podr\u00eda llevar a una toma de control del sistema. Sin embargo, la explotabilidad es muy baja, porque requiere mucha interacci\u00f3n del usuario. Bundler versi\u00f3n 2.2.33 ha parcheado este problema insertando \\\"--\\\" como argumento antes de cualquier argumento posicional a aquellos comandos Git que estaban afectados por este problema. Independientemente de si los usuarios pueden actualizar o no, deber\u00edan revisar cualquier \\\"Gemfile\\\" no confiable antes de ejecutar cualquier comando \\\"bundler\\\" que pueda leerlo, ya que puede contener c\u00f3digo ruby arbitrario\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H\",\"baseScore\":6.7,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"HIGH\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"REQUIRED\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":0.8,\"impactScore\":5.9},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H\",\"baseScore\":7.3,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"REQUIRED\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.3,\"impactScore\":5.9}],\"cvssMetricV2\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"2.0\",\"vectorString\":\"AV:N/AC:M/Au:N/C:C/I:C/A:C\",\"baseScore\":9.3,\"accessVector\":\"NETWORK\",\"accessComplexity\":\"MEDIUM\",\"authentication\":\"NONE\",\"confidentialityImpact\":\"COMPLETE\",\"integrityImpact\":\"COMPLETE\",\"availabilityImpact\":\"COMPLETE\"},\"baseSeverity\":\"HIGH\",\"exploitabilityScore\":8.6,\"impactScore\":10.0,\"acInsufInfo\":false,\"obtainAllPrivilege\":false,\"obtainUserPrivilege\":false,\"obtainOtherPrivilege\":false,\"userInteractionRequired\":true}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-88\"}]},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-88\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:bundler:bundler:*:*:*:*:*:ruby:*:*\",\"versionEndExcluding\":\"2.2.33\",\"matchCriteriaId\":\"5C134C42-9FAA-4E67-8F6B-BDA0E632BE0B\"}]}]}],\"references\":[{\"url\":\"https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/rubygems/rubygems/pull/5142\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Exploit\",\"Vendor Advisory\"]},{\"url\":\"https://www.sonarsource.com/blog/securing-developer-tools-package-managers/\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Exploit\",\"Mitigation\"]},{\"url\":\"https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/rubygems/rubygems/pull/5142\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Exploit\",\"Vendor Advisory\"]},{\"url\":\"https://www.sonarsource.com/blog/securing-developer-tools-package-managers/\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Exploit\",\"Mitigation\"]}]}}" } }
gsd-2021-43809
Vulnerability from gsd
{ "GSD": { "alias": "CVE-2021-43809", "description": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash. To exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside. This vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code.", "id": "GSD-2021-43809", "references": [ "https://www.suse.com/security/cve/CVE-2021-43809.html", "https://security.archlinux.org/CVE-2021-43809", "https://advisories.mageia.org/CVE-2021-43809.html" ] }, "gsd": { "metadata": { "exploitCode": "unknown", "remediation": "unknown", "reportConfidence": "confirmed", "type": "vulnerability" }, "osvSchema": { "affected": [ { "package": { "ecosystem": "RubyGems", "name": "bundler", "purl": "pkg:gem/bundler" } } ], "aliases": [ "CVE-2021-43809", "GHSA-fj7f-vq84-fh43" ], "details": "In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless\n`Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless\nthat\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile`\nincludes `gem` entries that use the `git` option with invalid, but seemingly harmless,\nvalues with a leading dash, this can be false.\n\nTo handle dependencies that come from a Git repository instead of a registry, Bundler\nuses various commands, such as `git clone`. These commands are being constructed using\nuser input (e.g. the repository URL). When building the commands, Bundler versions\nbefore 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of\narguments instead of a command string. However, there is the possibility that a user\ninput starts with a dash (`-`) and is therefore treated as an optional argument instead\nof a positional one. This can lead to Code Execution because some of the commands have\noptions that can be leveraged to run arbitrary executables.\n\nSince this value comes from the `Gemfile` file, it can contain any character, including\na leading dash.\n\n### Exploitation\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a\n`Gemfile` file that declares a dependency that is located in a Git repository. This\ndependency has to have a Git URL in the form of `-u./payload`. This URL will be used to\nconstruct a Git clone command but will be interpreted as the\n[upload-pack](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt--ultupload-packgt)\nargument. Then this directory needs to be shared with the victim, who then needs to run\na command that evaluates the Gemfile, such as `bundle lock`, inside.\n\n### Impact\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead\nto the takeover of the system. However, as explained above, the exploitability is very\nlow, because it requires a lot of user interaction. It still could put developers at\nrisk when dealing with untrusted files in a way they think is safe, because the exploit\nstill works when the victim tries to make sure nothing can happen, e.g. by manually\nreviewing the `Gemfile` (although they would need the weird URL with a leading dash to\nnot raise any flags).\n\nThis kind of attack vector\n[has been used in the past](https://www.cnbc.com/2021/01/26/north-korean-hackers-targeting-security-researchers-on-twitter.html)\nto target security researchers by sending them projects to collaborate on.\n\n### Patches\n\nBundler 2.2.33 has patched this problem by inserting `--` as an argument before any\npositional arguments to those Git commands that were affected by this issue.\n\n### Workarounds\n\nRegardless of whether users can upgrade or not, they should review any untrusted\n`Gemfile`\u0027s before running any `bundler` commands that may read them, since they\ncan contain arbitrary ruby code.", "id": "GSD-2021-43809", "modified": "2021-12-08T00:00:00.000Z", "published": "2021-12-08T00:00:00.000Z", "references": [ { "type": "WEB", "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "type": "WEB", "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "type": "WEB", "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "type": "WEB", "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "type": "WEB", "url": "https://cwe.mitre.org/data/definitions/88.html" } ], "schema_version": "1.4.0", "severity": [ { "score": 6.7, "type": "CVSS_V3" } ], "summary": "Local Code Execution through Argument Injection via dash leading git url parameter in Gemfile" } }, "namespaces": { "cve.org": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2021-43809", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "rubygems", "version": { "version_data": [ { "version_affected": "=", "version_value": "\u003c 2.2.33" } ] } } ] }, "vendor_name": "rubygems" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code." } ] }, "impact": { "cvss": [ { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "cweId": "CWE-88", "lang": "eng", "value": "CWE-88: Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43", "refsource": "MISC", "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "name": "https://github.com/rubygems/rubygems/pull/5142", "refsource": "MISC", "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "name": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3", "refsource": "MISC", "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "name": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f", "refsource": "MISC", "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "name": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/", "refsource": "MISC", "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/" } ] }, "source": { "advisory": "GHSA-fj7f-vq84-fh43", "discovery": "UNKNOWN" } }, "github.com/rubysec/ruby-advisory-db": { "cve": "2021-43809", "cvss_v3": 6.7, "date": "2021-12-08", "description": "In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless\n`Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless\nthat\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile`\nincludes `gem` entries that use the `git` option with invalid, but seemingly harmless,\nvalues with a leading dash, this can be false.\n\nTo handle dependencies that come from a Git repository instead of a registry, Bundler\nuses various commands, such as `git clone`. These commands are being constructed using\nuser input (e.g. the repository URL). When building the commands, Bundler versions\nbefore 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of\narguments instead of a command string. However, there is the possibility that a user\ninput starts with a dash (`-`) and is therefore treated as an optional argument instead\nof a positional one. This can lead to Code Execution because some of the commands have\noptions that can be leveraged to run arbitrary executables.\n\nSince this value comes from the `Gemfile` file, it can contain any character, including\na leading dash.\n\n### Exploitation\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a\n`Gemfile` file that declares a dependency that is located in a Git repository. This\ndependency has to have a Git URL in the form of `-u./payload`. This URL will be used to\nconstruct a Git clone command but will be interpreted as the\n[upload-pack](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt--ultupload-packgt)\nargument. Then this directory needs to be shared with the victim, who then needs to run\na command that evaluates the Gemfile, such as `bundle lock`, inside.\n\n### Impact\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead\nto the takeover of the system. However, as explained above, the exploitability is very\nlow, because it requires a lot of user interaction. It still could put developers at\nrisk when dealing with untrusted files in a way they think is safe, because the exploit\nstill works when the victim tries to make sure nothing can happen, e.g. by manually\nreviewing the `Gemfile` (although they would need the weird URL with a leading dash to\nnot raise any flags).\n\nThis kind of attack vector\n[has been used in the past](https://www.cnbc.com/2021/01/26/north-korean-hackers-targeting-security-researchers-on-twitter.html)\nto target security researchers by sending them projects to collaborate on.\n\n### Patches\n\nBundler 2.2.33 has patched this problem by inserting `--` as an argument before any\npositional arguments to those Git commands that were affected by this issue.\n\n### Workarounds\n\nRegardless of whether users can upgrade or not, they should review any untrusted\n`Gemfile`\u0027s before running any `bundler` commands that may read them, since they\ncan contain arbitrary ruby code.", "gem": "bundler", "ghsa": "fj7f-vq84-fh43", "patched_versions": [ "\u003e= 2.2.33" ], "related": { "url": [ "https://github.com/rubygems/rubygems/pull/5142", "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3", "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f", "https://cwe.mitre.org/data/definitions/88.html" ] }, "title": "Local Code Execution through Argument Injection via dash leading git url parameter in Gemfile", "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, "gitlab.com": { "advisories": [ { "affected_range": "\u003c2.2.33", "affected_versions": "All versions before 2.2.33", "cvss_v2": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "cvss_v3": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "cwe_ids": [ "CWE-1035", "CWE-88", "CWE-937" ], "date": "2021-12-13", "description": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash. To exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside. This vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrusted `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code.", "fixed_versions": [ "2.2.33" ], "identifier": "CVE-2021-43809", "identifiers": [ "CVE-2021-43809", "GHSA-fj7f-vq84-fh43" ], "not_impacted": "All versions starting from 2.2.33", "package_slug": "gem/bundler", "pubdate": "2021-12-08", "solution": "Upgrade to version 2.2.33 or above.", "title": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)", "urls": [ "https://nvd.nist.gov/vuln/detail/CVE-2021-43809", "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f", "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43", "https://github.com/rubygems/rubygems/pull/5142", "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" ], "uuid": "df374011-29c6-46e4-bf29-8522e18c4e07" } ] }, "nvd.nist.gov": { "configurations": { "CVE_data_version": "4.0", "nodes": [ { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:bundler:bundler:*:*:*:*:*:ruby:*:*", "cpe_name": [], "versionEndExcluding": "2.2.33", "vulnerable": true } ], "operator": "OR" } ] }, "cve": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2021-43809" }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "en", "value": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "en", "value": "CWE-88" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f", "refsource": "MISC", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "name": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43", "refsource": "CONFIRM", "tags": [ "Exploit", "Vendor Advisory" ], "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "name": "https://github.com/rubygems/rubygems/pull/5142", "refsource": "MISC", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "name": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3", "refsource": "MISC", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "name": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/", "refsource": "MISC", "tags": [ "Exploit", "Mitigation" ], "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/" } ] } }, "impact": { "baseMetricV2": { "acInsufInfo": false, "cvssV2": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 8.6, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "severity": "HIGH", "userInteractionRequired": true }, "baseMetricV3": { "cvssV3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 1.3, "impactScore": 5.9 } }, "lastModifiedDate": "2023-11-16T03:04Z", "publishedDate": "2021-12-08T19:15Z" } } }
ghsa-fj7f-vq84-fh43
Vulnerability from github
In bundler
versions before 2.2.33, when working with untrusted and apparently harmless Gemfile
's, it is not expected that they lead to execution of external code, unless that's explicit in the ruby code inside the Gemfile
itself. However, if the Gemfile
includes gem
entries that use the git
option with invalid, but seemingly harmless, values with a leading dash, this can be false.
To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as git clone
. These commands are being constructed using user input (e.g. the repository URL). When building the
commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (-
) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables.
Since this value comes from the Gemfile
file, it can contain any character, including a leading dash.
Exploitation
To exploit this vulnerability, an attacker has to craft a directory containing a Gemfile
file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of -u./payload
. This URL
will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as bundle lock
, inside.
Impact
This vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, as explained above, the exploitability is very low, because it requires a lot of user interaction. It still could put developers at risk when dealing with untrusted files in a way they think is safe, because the exploit still works when the victim tries to make sure nothing can happen, e.g. by manually reviewing the Gemfile
(although they would need the weird URL with a leading dash to not raise any flags).
This kind of attack vector has been used in the past to target security researchers by sending them projects to collaborate on.
Patches
Bundler 2.2.33 has patched this problem by inserting --
as an argument before any positional arguments to those Git commands that were affected by this issue.
Workarounds
Regardless of whether users can upgrade or not, they should review any untrustred Gemfile
's before running any bundler
commands that may read them, since they can contain arbitrary ruby code.
References
https://cwe.mitre.org/data/definitions/88.html
{ "affected": [ { "package": { "ecosystem": "RubyGems", "name": "bundler" }, "ranges": [ { "events": [ { "introduced": "0" }, { "fixed": "2.2.33" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2021-43809" ], "database_specific": { "cwe_ids": [ "CWE-88" ], "github_reviewed": true, "github_reviewed_at": "2021-12-08T19:33:42Z", "nvd_published_at": "2021-12-08T19:15:00Z", "severity": "MODERATE" }, "details": "In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false.\n\nTo handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the\ncommands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables.\n\nSince this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\n### Exploitation\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL\nwill be used to construct a Git clone command but will be interpreted as the [upload-pack](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt--ultupload-packgt) argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\n### Impact\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, as explained above, the exploitability is very low, because it requires a lot of user interaction. It still could put developers at risk when dealing with untrusted files in a way they think is safe, because the exploit still works when the victim tries to make sure nothing can happen, e.g. by manually reviewing the `Gemfile` (although they would need the weird URL with a leading dash to not raise any flags).\n\nThis kind of attack vector [has been used in the past](https://www.cnbc.com/2021/01/26/north-korean-hackers-targeting-security-researchers-on-twitter.html) to target security researchers by sending them projects to collaborate on.\n\n### Patches\n\nBundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue.\n\n### Workarounds\n\nRegardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code.\n\n### References\n\nhttps://cwe.mitre.org/data/definitions/88.html", "id": "GHSA-fj7f-vq84-fh43", "modified": "2021-12-14T15:31:09Z", "published": "2021-12-08T19:51:36Z", "references": [ { "type": "WEB", "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-43809" }, { "type": "WEB", "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "type": "WEB", "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "type": "WEB", "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "type": "PACKAGE", "url": "https://github.com/rubygems/rubygems" }, { "type": "WEB", "url": "https://github.com/rubysec/ruby-advisory-db/blob/master/gems/bundler/CVE-2021-43809.yml" }, { "type": "WEB", "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "type": "CVSS_V3" } ], "summary": "Local Code Execution through Argument Injection via dash leading git url parameter in Gemfile." }
rhsa-2025:7539
Vulnerability from csaf_redhat
Notes
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for the ruby:2.5 module is now available for Red Hat Enterprise Linux 8.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.", "title": "Topic" }, { "category": "general", "text": "Ruby is an extensible, interpreted, object-oriented, scripting language. It has features to process text files and to perform system management tasks.\n\nSecurity Fix(es):\n\n* oniguruma: integer overflow in search_in_range function in regexec.c leads to out-of-bounds read (CVE-2019-19012)\n\n* rubygem-bundler: unexpected code execution in Gemfiles (CVE-2021-43809)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.", "title": "Details" }, { "category": "legal_disclaimer", "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "https://access.redhat.com/security/team/contact/", "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.", "name": "Red Hat Product Security", "namespace": "https://www.redhat.com" }, "references": [ { "category": "self", "summary": "https://access.redhat.com/errata/RHSA-2025:7539", "url": "https://access.redhat.com/errata/RHSA-2025:7539" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "1802051", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1802051" }, { "category": "external", "summary": "2035260", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2035260" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2025/rhsa-2025_7539.json" } ], "title": "Red Hat Security Advisory: ruby:2.5 security update", "tracking": { "current_release_date": "2025-08-03T05:37:48+00:00", "generator": { "date": "2025-08-03T05:37:48+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.6.6" } }, "id": "RHSA-2025:7539", "initial_release_date": "2025-05-14T02:21:28+00:00", "revision_history": [ { "date": "2025-05-14T02:21:28+00:00", "number": "1", "summary": "Initial version" }, { "date": "2025-05-14T02:21:28+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2025-08-03T05:37:48+00:00", "number": "3", "summary": "Last generated version" } ], "status": "final", "version": "3" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux AppStream (v. 8)", "product": { "name": "Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "ruby:2.5:8100020250506105643:489197e6", "product": { "name": "ruby:2.5:8100020250506105643:489197e6", "product_id": "ruby:2.5:8100020250506105643:489197e6", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5?rpmmod=ruby:2.5:8100020250506105643:489197e6" } } }, { "category": "product_version", "name": "ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-doc@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-irb@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "product": { "name": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "product_id": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-abrt@0.3.0-4.module%2Bel8.10.0%2B22021%2B135c76a8?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "product": { "name": "rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "product_id": "rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-abrt-doc@0.3.0-4.module%2Bel8.10.0%2B22021%2B135c76a8?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "product": { "name": "rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "product_id": "rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-doc@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bundler@1.16.1-5.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bundler-doc@1.16.1-5.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-did_you_mean@1.2.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-minitest@5.10.3-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "product": { "name": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "product_id": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mongo@2.5.1-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "product": { "name": "rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "product_id": "rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mongo-doc@2.5.1-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "product": { "name": "rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "product_id": "rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-doc@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-net-telnet@0.1.1-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "product": { "name": "rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "product_id": "rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-doc@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-power_assert@1.1.1-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-rake@12.3.3-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-rdoc@6.0.1.1-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-test-unit@3.2.7-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-xmlrpc@0.3.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygems@2.7.6.3-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } }, { "category": "product_version", "name": "rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product": { "name": "rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_id": "rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygems-devel@2.7.6.3-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=noarch" } } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debugsource@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-devel@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal-debuginfo@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console-debuginfo@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json-debuginfo@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl-debuginfo@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } }, { "category": "product_version", "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "product": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_id": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych-debuginfo@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=i686" } } } ], "category": "architecture", "name": "i686" }, { "branches": [ { "category": "product_version", "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "product": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "product_id": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=src" } } }, { "category": "product_version", "name": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "product": { "name": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "product_id": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-abrt@0.3.0-4.module%2Bel8.10.0%2B22021%2B135c76a8?arch=src" } } }, { "category": "product_version", "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "product": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "product_id": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=src" } } }, { "category": "product_version", "name": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "product": { "name": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "product_id": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bundler@1.16.1-5.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=src" } } }, { "category": "product_version", "name": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "product": { "name": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "product_id": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mongo@2.5.1-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=src" } } }, { "category": "product_version", "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "product": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "product_id": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=src" } } }, { "category": "product_version", "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "product": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "product_id": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debugsource@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-devel@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal-debuginfo@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debuginfo@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debugsource@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console-debuginfo@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json-debuginfo@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debuginfo@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debugsource@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl-debuginfo@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debuginfo@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product_id": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debugsource@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } }, { "category": "product_version", "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_id": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych-debuginfo@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debugsource@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-devel@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal-debuginfo@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debuginfo@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debugsource@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console-debuginfo@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json-debuginfo@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debuginfo@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debugsource@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl-debuginfo@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debuginfo@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product_id": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debugsource@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } }, { "category": "product_version", "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_id": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych-debuginfo@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debugsource@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-devel@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal-debuginfo@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debuginfo@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debugsource@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console-debuginfo@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json-debuginfo@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debuginfo@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debugsource@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl-debuginfo@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debuginfo@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product_id": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debugsource@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } }, { "category": "product_version", "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_id": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych-debuginfo@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-debugsource@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-devel@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/ruby-libs-debuginfo@2.5.9-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bigdecimal-debuginfo@1.3.4-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debuginfo@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-bson-debugsource@4.3.0-2.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-io-console-debuginfo@0.4.6-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-json-debuginfo@2.1.0-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debuginfo@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-mysql2-debugsource@0.4.10-4.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-openssl-debuginfo@2.1.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debuginfo@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product_id": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-pg-debugsource@1.0.0-3.module%2Bel8.9.0%2B19193%2B435404ae?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } }, { "category": "product_version", "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_id": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rubygem-psych-debuginfo@3.0.2-114.module%2Bel8.10.0%2B23088%2B750dc6ca?arch=s390x" } } } ], "category": "architecture", "name": "s390x" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, "product_reference": "ruby:2.5:8100020250506105643:489197e6", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src" }, "product_reference": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch" }, "product_reference": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src" }, "product_reference": "rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch" }, "product_reference": "rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src" }, "product_reference": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch" }, "product_reference": "rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src" }, "product_reference": "rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch" }, "product_reference": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src" }, "product_reference": "rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch" }, "product_reference": "rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src" }, "product_reference": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch" }, "product_reference": "rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src" }, "product_reference": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64" }, "product_reference": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le" }, "product_reference": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x" }, "product_reference": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64" }, "product_reference": "rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch" }, "product_reference": "rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64" }, "product_reference": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686" }, "product_reference": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le" }, "product_reference": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x" }, "product_reference": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64 as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64" }, "product_reference": "rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" }, { "category": "default_component_of", "full_product_name": { "name": "rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch as a component of ruby:2.5:8100020250506105643:489197e6 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" }, "product_reference": "rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6" } ] }, "vulnerabilities": [ { "cve": "CVE-2019-19012", "cwe": { "id": "CWE-125", "name": "Out-of-bounds Read" }, "discovery_date": "2019-11-18T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "1802051" } ], "notes": [ { "category": "description", "text": "An integer overflow vulnerability leading to an out-of-bounds read was found in the way Oniguruma handled regular expression quantifiers. A remote attacker could abuse this flaw by providing a malformed regular expression that, when processed by an application linked to Oniguruma, could crash the application, causing a denial of service.", "title": "Vulnerability description" }, { "category": "summary", "text": "oniguruma: integer overflow in search_in_range function in regexec.c leads to out-of-bounds read", "title": "Vulnerability summary" }, { "category": "other", "text": "This flaw only affected 32-bit compiled versions of Oniguruma. Therefore it did not affect the following 64-bit versions:\n* PHP and Ruby as shipped with Red Hat Enterprise Linux 7.\n* PHP and Ruby as shipped with Red Hat Software Collections 3.\n* PHP as shipped with Red Hat Enterprise Linux 8.\n* OpenShift containers: openshift4/ose-metering-hadoop, openshift4/ose-metering-hive, openshift4/ose-metering-presto.", "title": "Statement" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2019-19012" }, { "category": "external", "summary": "RHBZ#1802051", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1802051" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2019-19012", "url": "https://www.cve.org/CVERecord?id=CVE-2019-19012" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2019-19012", "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-19012" } ], "release_date": "2019-11-08T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2025-05-14T02:21:28+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258", "product_ids": [ "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2025:7539" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 7.5, "baseSeverity": "HIGH", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "oniguruma: integer overflow in search_in_range function in regexec.c leads to out-of-bounds read" }, { "cve": "CVE-2021-43809", "cwe": { "id": "CWE-88", "name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)" }, "discovery_date": "2021-12-23T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2035260" } ], "notes": [ { "category": "description", "text": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code.", "title": "Vulnerability description" }, { "category": "summary", "text": "rubygem-bundler: unexpected code execution in Gemfiles", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-43809" }, { "category": "external", "summary": "RHBZ#2035260", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2035260" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-43809", "url": "https://www.cve.org/CVERecord?id=CVE-2021-43809" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-43809", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-43809" } ], "release_date": "2021-12-08T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2025-05-14T02:21:28+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258", "product_ids": [ "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2025:7539" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-debugsource-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-devel-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-doc-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-irb-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:ruby-libs-debuginfo-0:2.5.9-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-0:0.3.0-4.module+el8.10.0+22021+135c76a8.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-abrt-doc-0:0.3.0-4.module+el8.10.0+22021+135c76a8.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bigdecimal-debuginfo-0:1.3.4-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debuginfo-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-debugsource-0:4.3.0-2.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bson-doc-0:4.3.0-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-bundler-doc-0:1.16.1-5.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-did_you_mean-0:1.2.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-io-console-debuginfo-0:0.4.6-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-json-debuginfo-0:2.1.0-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-minitest-0:5.10.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-0:2.5.1-2.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mongo-doc-0:2.5.1-2.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debuginfo-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-debugsource-0:0.4.10-4.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-mysql2-doc-0:0.4.10-4.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-net-telnet-0:0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-openssl-debuginfo-0:2.1.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.src", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debuginfo-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-debugsource-0:1.0.0-3.module+el8.9.0+19193+435404ae.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-pg-doc-0:1.0.0-3.module+el8.9.0+19193+435404ae.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-power_assert-0:1.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.i686", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.s390x", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-psych-debuginfo-0:3.0.2-114.module+el8.10.0+23088+750dc6ca.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rake-0:12.3.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-rdoc-0:6.0.1.1-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-test-unit-0:3.2.7-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygem-xmlrpc-0:0.3.0-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch", "AppStream-8.10.0.Z.MAIN.EUS:ruby:2.5:8100020250506105643:489197e6:rubygems-devel-0:2.7.6.3-114.module+el8.10.0+23088+750dc6ca.noarch" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "rubygem-bundler: unexpected code execution in Gemfiles" } ] }
suse-su-2024:3873-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "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": "Security update for rubygem-bundler", "title": "Title of the patch" }, { "category": "description", "text": "This update for rubygem-bundler fixes the following issues:\n\n- CVE-2021-43809: Fixed remote execution via Gemfile argument injection (bsc#1193578)\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2024-3873,SUSE-SLE-Module-Basesystem-15-SP5-2024-3873,SUSE-SLE-Module-Basesystem-15-SP6-2024-3873,SUSE-SLE-Product-SLED-15-SP4-LTSS-2024-3873,SUSE-SLE-Product-SLES-15-SP2-LTSS-2024-3873,SUSE-SLE-Product-SLES-15-SP3-LTSS-2024-3873,SUSE-SLE-Product-SLES-15-SP4-LTSS-2024-3873,SUSE-SLE-Product-SLES_SAP-15-SP2-2024-3873,SUSE-SLE-Product-SLES_SAP-15-SP3-2024-3873,SUSE-SLE-Product-SUSE-Manager-Server-4.3-2024-3873,openSUSE-SLE-15.5-2024-3873", "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/suse-su-2024_3873-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2024:3873-1", "url": "https://www.suse.com/support/update/announcement/2024/suse-su-20243873-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2024:3873-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-November/019757.html" }, { "category": "self", "summary": "SUSE Bug 1193578", "url": "https://bugzilla.suse.com/1193578" }, { "category": "self", "summary": "SUSE CVE CVE-2021-43809 page", "url": "https://www.suse.com/security/cve/CVE-2021-43809/" } ], "title": "Security update for rubygem-bundler", "tracking": { "current_release_date": "2024-11-01T15:22:19Z", "generator": { "date": "2024-11-01T15:22:19Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2024:3873-1", "initial_release_date": "2024-11-01T15:22:19Z", "revision_history": [ { "date": "2024-11-01T15:22:19Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "product": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "product_id": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" } }, { "category": "product_version", "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64", "product": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64", "product_id": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.i586", "product": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.i586", "product_id": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.i586" } }, { "category": "product_version", "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.i586", "product": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.i586", "product_id": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "product": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "product_id": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" } }, { "category": "product_version", "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le", "product": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le", "product_id": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "product": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "product_id": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" } }, { "category": "product_version", "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x", "product": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x", "product_id": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "product": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "product_id": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" } }, { "category": "product_version", "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64", "product": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64", "product_id": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Basesystem 15 SP5", "product": { "name": "SUSE Linux Enterprise Module for Basesystem 15 SP5", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP5", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-basesystem:15:sp5" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Module for Basesystem 15 SP6", "product": { "name": "SUSE Linux Enterprise Module for Basesystem 15 SP6", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-basesystem:15:sp6" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Server 15 SP2-LTSS", "product": { "name": "SUSE Linux Enterprise Server 15 SP2-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS", "product_identification_helper": { "cpe": "cpe:/o:suse:sles-ltss:15:sp2" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Server 15 SP3-LTSS", "product": { "name": "SUSE Linux Enterprise Server 15 SP3-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS", "product_identification_helper": { "cpe": "cpe:/o:suse:sles-ltss:15:sp3" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Server 15 SP4-LTSS", "product": { "name": "SUSE Linux Enterprise Server 15 SP4-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS", "product_identification_helper": { "cpe": "cpe:/o:suse:sles-ltss:15:sp4" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP2", "product": { "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP2", "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2", "product_identification_helper": { "cpe": "cpe:/o:suse:sles_sap:15:sp2" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3", "product": { "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3", "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3", "product_identification_helper": { "cpe": "cpe:/o:suse:sles_sap:15:sp3" } } }, { "category": "product_name", "name": "SUSE Manager Server 4.3", "product": { "name": "SUSE Manager Server 4.3", "product_id": "SUSE Manager Server 4.3", "product_identification_helper": { "cpe": "cpe:/o:suse:suse-manager-server:4.3" } } }, { "category": "product_name", "name": "openSUSE Leap 15.5", "product": { "name": "openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.5" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP5", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP5", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP5", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP5", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP6", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP6", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6", "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP6" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP2-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of SUSE Linux Enterprise Server 15 SP2-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP3-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of SUSE Linux Enterprise Server 15 SP3-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP4-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of SUSE Linux Enterprise Server 15 SP4-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS", "product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2", "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2", "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3", "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3", "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of SUSE Manager Server 4.3", "product_id": "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Manager Server 4.3" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of SUSE Manager Server 4.3", "product_id": "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "SUSE Manager Server 4.3" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of SUSE Manager Server 4.3", "product_id": "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "SUSE Manager Server 4.3" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64 as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64 as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64 as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64" }, "product_reference": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le" }, "product_reference": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x" }, "product_reference": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.5" }, { "category": "default_component_of", "full_product_name": { "name": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64 as component of openSUSE Leap 15.5", "product_id": "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64" }, "product_reference": "ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.5" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-43809", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-43809" } ], "notes": [ { "category": "general", "text": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-43809", "url": "https://www.suse.com/security/cve/CVE-2021-43809" }, { "category": "external", "summary": "SUSE Bug 1193578 for CVE-2021-43809", "url": "https://bugzilla.suse.com/1193578" } ], "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": [ "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Module for Basesystem 15 SP5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Module for Basesystem 15 SP6:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP2-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP3-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Linux Enterprise Server 15 SP4-LTSS:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server for SAP Applications 15 SP2:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Linux Enterprise Server for SAP Applications 15 SP3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "SUSE Manager Server 4.3:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.aarch64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.ppc64le", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.s390x", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-1.16.1-150000.3.6.1.x86_64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.aarch64", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.ppc64le", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.s390x", "openSUSE Leap 15.5:ruby2.5-rubygem-bundler-doc-1.16.1-150000.3.6.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2024-11-01T15:22:19Z", "details": "important" } ], "title": "CVE-2021-43809" } ] }
fkie_cve-2021-43809
Vulnerability from fkie_nvd
7.3 (High) - CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
▶ | URL | Tags | |
---|---|---|---|
security-advisories@github.com | https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3 | Patch | |
security-advisories@github.com | https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f | Patch | |
security-advisories@github.com | https://github.com/rubygems/rubygems/pull/5142 | Patch | |
security-advisories@github.com | https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43 | Exploit, Vendor Advisory | |
security-advisories@github.com | https://www.sonarsource.com/blog/securing-developer-tools-package-managers/ | Exploit, Mitigation | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3 | Patch | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f | Patch | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/rubygems/rubygems/pull/5142 | Patch | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43 | Exploit, Vendor Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.sonarsource.com/blog/securing-developer-tools-package-managers/ | Exploit, Mitigation |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:bundler:bundler:*:*:*:*:*:ruby:*:*", "matchCriteriaId": "5C134C42-9FAA-4E67-8F6B-BDA0E632BE0B", "versionEndExcluding": "2.2.33", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "`Bundler` is a package for managing application dependencies in Ruby. In `bundler` versions before 2.2.33, when working with untrusted and apparently harmless `Gemfile`\u0027s, it is not expected that they lead to execution of external code, unless that\u0027s explicit in the ruby code inside the `Gemfile` itself. However, if the `Gemfile` includes `gem` entries that use the `git` option with invalid, but seemingly harmless, values with a leading dash, this can be false. To handle dependencies that come from a Git repository instead of a registry, Bundler uses various commands, such as `git clone`. These commands are being constructed using user input (e.g. the repository URL). When building the commands, Bundler versions before 2.2.33 correctly avoid Command Injection vulnerabilities by passing an array of arguments instead of a command string. However, there is the possibility that a user input starts with a dash (`-`) and is therefore treated as an optional argument instead of a positional one. This can lead to Code Execution because some of the commands have options that can be leveraged to run arbitrary executables. Since this value comes from the `Gemfile` file, it can contain any character, including a leading dash.\n\nTo exploit this vulnerability, an attacker has to craft a directory containing a `Gemfile` file that declares a dependency that is located in a Git repository. This dependency has to have a Git URL in the form of `-u./payload`. This URL will be used to construct a Git clone command but will be interpreted as the upload-pack argument. Then this directory needs to be shared with the victim, who then needs to run a command that evaluates the Gemfile, such as `bundle lock`, inside.\n\nThis vulnerability can lead to Arbitrary Code Execution, which could potentially lead to the takeover of the system. However, the exploitability is very low, because it requires a lot of user interaction. Bundler 2.2.33 has patched this problem by inserting `--` as an argument before any positional arguments to those Git commands that were affected by this issue. Regardless of whether users can upgrade or not, they should review any untrustred `Gemfile`\u0027s before running any `bundler` commands that may read them, since they can contain arbitrary ruby code." }, { "lang": "es", "value": "\"Bundler\" es un paquete para administrar las dependencias de las aplicaciones en Ruby. En \"bundler\" versiones anteriores a 2.2.33, cuando se trabaja con \"Gemfile\" no confiables y aparentemente inofensivos, no se espera que conlleven a una ejecuci\u00f3n de c\u00f3digo externo, a menos que est\u00e9 expl\u00edcito en el c\u00f3digo ruby dentro del propio \"Gemfile\". Sin embargo, si el \"Gemfile\" incluye entradas \"gem\" que usan la opci\u00f3n \"git\" con valores inv\u00e1lidos, pero aparentemente inofensivos, con un guion inicial, esto puede ser falso. Para manejar las dependencias que provienen de un repositorio Git en lugar de un registro, Bundler usa varios comandos, como \"git clone\". Estos comandos son construidos usando la entrada del usuario (por ejemplo, la URL del repositorio). Cuando son construidos los comandos, las versiones de Bundler anteriores a la 2.2.33, evitan correctamente las vulnerabilidades de inyecci\u00f3n de comandos pasando una matriz de argumentos en lugar de una cadena de comandos. Sin embargo, se presenta la posibilidad de que una entrada del usuario comience con un guion (\"-\") y por lo tanto sea tratada como un argumento opcional en lugar de posicional. Esto puede conllevar a una ejecuci\u00f3n de c\u00f3digo porque algunos de los comandos presentan opciones que pueden ser aprovechadas para ejecutar ejecutables arbitrarios. Como este valor proviene del archivo \"Gemfile\", puede contener cualquier car\u00e1cter, incluyendo un guion inicial. Para explotar esta vulnerabilidad, un atacante tiene que dise\u00f1ar un directorio que contenga un archivo \"Gemfile\" que declare una dependencia que sea encontrada en un repositorio Git. Esta dependencia tiene que tener una URL Git en forma de \"-u./payload\". Esta URL ser\u00e1 usada para construir un comando de clonaci\u00f3n de Git pero ser\u00e1 interpretada como el argumento de upload-pack. Entonces este directorio necesita ser compartido con la v\u00edctima, que entonces necesita ejecutar un comando que eval\u00fae el Gemfile, como \"bundle lock\", dentro. Esta vulnerabilidad puede conllevar a una ejecuci\u00f3n de c\u00f3digo arbitrario, que potencialmente podr\u00eda llevar a una toma de control del sistema. Sin embargo, la explotabilidad es muy baja, porque requiere mucha interacci\u00f3n del usuario. Bundler versi\u00f3n 2.2.33 ha parcheado este problema insertando \"--\" como argumento antes de cualquier argumento posicional a aquellos comandos Git que estaban afectados por este problema. Independientemente de si los usuarios pueden actualizar o no, deber\u00edan revisar cualquier \"Gemfile\" no confiable antes de ejecutar cualquier comando \"bundler\" que pueda leerlo, ya que puede contener c\u00f3digo ruby arbitrario" } ], "id": "CVE-2021-43809", "lastModified": "2024-11-21T06:29:50.260", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 8.6, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": true } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 0.8, "impactScore": 5.9, "source": "security-advisories@github.com", "type": "Secondary" }, { "cvssData": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 1.3, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2021-12-08T19:15:10.067", "references": [ { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "source": "security-advisories@github.com", "tags": [ "Exploit", "Vendor Advisory" ], "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "source": "security-advisories@github.com", "tags": [ "Exploit", "Mitigation" ], "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/commit/0fad1ccfe9dd7a3c5b82c1496df3c2b4842870d3" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/commit/a4f2f8ac17e6ce81c689527a8b6f14381060d95f" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Patch" ], "url": "https://github.com/rubygems/rubygems/pull/5142" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Vendor Advisory" ], "url": "https://github.com/rubygems/rubygems/security/advisories/GHSA-fj7f-vq84-fh43" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Mitigation" ], "url": "https://www.sonarsource.com/blog/securing-developer-tools-package-managers/" } ], "sourceIdentifier": "security-advisories@github.com", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-88" } ], "source": "security-advisories@github.com", "type": "Secondary" }, { "description": [ { "lang": "en", "value": "CWE-88" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.