opensuse-su-2020:2337-1
Vulnerability from csaf_opensuse
Published
2020-12-26 17:22
Modified
2020-12-26 17:22
Summary
Security update for blosc

Notes

Title of the patch
Security update for blosc
Description of the patch
This update for blosc fixes the following issues: Update to version 1.20.1 boo#1179914 CVE-2020-29367: * More saftey checks have been implemented so that potential flaws discovered by new fuzzers in OSS-Fuzzer are fixed now * BloscLZ updated to 2.3.0. Expect better compression ratios for faster codecs. For details, see our new blog post: https://blosc.org/posts/beast-release/ * Fixed the _xgetbv() collision. Thanks to Michał Górny (@mgorny). Update to version 1.19.0: * The length of automatic blocksizes for fast codecs (lz4, blosclz) has been incremented quite a bit (up to 256 KB) for better compression ratios. * The performance in modern CPUs (with at least 256 KB in L2 cache) should be better too (for older CPUs the performance should stay roughly the same). * For small buffers that cannot be compressed (typically < 128 bytes), blosc_compress() returns now a 0 (cannot compress) instead of a negative number (internal error). See #294. * blosclz codec updated to 2.1.0. Expect better compression ratios and performance in a wider variety of scenarios. * blosc_decompress_unsafe(), blosc_decompress_ctx_unsafe() and blosc_getitem_unsafe() have been removed because they are dangerous and after latest improvements, they should not be used in production. Update to version 1.18.1: * Fixed the copy of the leftovers of a chunk when its size is not a multiple of the typesize. Update to version 1.17.1: * BloscLZ codec updated to 2.0.0. Update to version 1.16.3: * Fix for building for clang with -march=haswell. See PR #262. * Fix all the known warnings for GCC/Clang. Still some work to do for MSVC in this front. * Due to some problems with several CI systems, the check for library symbols are deactivated now by default. If you want to enforce this check, use: cmake .. -DDEACTIVATE_SYMBOLS_CHECK=ON to re-activate it. * Correct the check for the compressed size when the buffer is memcpyed. This was a regression introduced in 1.16.0. Fixes #261. * Fixed a regression in 1.16.0 that prevented to compress empty buffers (see #260). * Now the functions that execute Blosc decompressions are safe by default for untrusted/possibly corrupted inputs. * The previous functions (with less safety) checks are still available with a '_unsafe' suffix. The complete list is: * Also, a new API function named blosc_cbuffer_validate(), for validating Blosc compressed data, has been added. * For details, see PR #258. Thanks to Jeremy Maitin-Shepard. * Fixed a bug in blosc_compress() that could lead to thread deadlock under some situations. See #251. Thanks to @wenjuno for the report and the fix. * Fix data race in shuffle.c host_implementation initialization. Fixes #253. Thanks to Jeremy Maitin-Shepard. * Add workaround for Visual Studio 2008's lack of a stdint.h file to blosclz.c. * Replaced //-comments with /**/-comments and other improvements for compatibility with quite old gcc compilers. See PR #243. Thanks to Andreas Martin. * Empty buffers can be compressed again (this was unadvertedly prevented while fixing #234). See #247. Thanks to Valentin Haenel. Update to version 1.14.4: * Added a new DEACTIVATE_SSE2 option for cmake that is useful for disabling SSE2 when doing cross-compilation (see #236). * New check for detecting output buffers smaller than BLOSC_MAX_OVERHEAD. * The complib and version parameters for blosc_get_complib_info() can be safely set to NULL now. This allows to call this function even if the user is not interested in these parameters (so no need to reserve memory for them). * In some situations that a supposedly blosc chunk is passed to blosc_decompress(), one might end with an Arithmetic exception. This is probably due to the chunk not being an actual blosc chunk, and divisions by zero might occur. A protection has been added for this. Update to version 1.14.3: * Fixed a bug that caused C-Blosc to crash on platforms requiring strict alignment. * Fixed a piece of code that was not C89 compliant.
Patchnames
openSUSE-2020-2337
Terms of use
CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).



{
  "document": {
    "aggregate_severity": {
      "namespace": "https://www.suse.com/support/security/rating/",
      "text": "moderate"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright 2024 SUSE LLC. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "Security update for blosc",
        "title": "Title of the patch"
      },
      {
        "category": "description",
        "text": "This update for blosc fixes the following issues:\n\nUpdate to version 1.20.1 boo#1179914 CVE-2020-29367:\n\n* More saftey checks have been implemented so that potential flaws discovered by new fuzzers in OSS-Fuzzer are fixed now\n* BloscLZ updated to 2.3.0. Expect better compression ratios for faster codecs. For details, see our new blog post: https://blosc.org/posts/beast-release/\n* Fixed the _xgetbv() collision. Thanks to Micha\u0142 G\u00f3rny (@mgorny).\n\nUpdate to version 1.19.0:\n\n* The length of automatic blocksizes for fast codecs (lz4, blosclz) has been incremented quite a bit (up to 256 KB) for better compression ratios.\n* The performance in modern CPUs (with at least 256 KB in L2 cache) should be better too (for older CPUs the performance should stay roughly the same).\n* For small buffers that cannot be compressed (typically \u003c 128 bytes), blosc_compress() returns now a 0 (cannot compress) instead of a negative number (internal error). See #294.\n* blosclz codec updated to 2.1.0. Expect better compression ratios and performance in a wider variety of scenarios.\n* blosc_decompress_unsafe(), blosc_decompress_ctx_unsafe() and blosc_getitem_unsafe() have been removed because they are dangerous and after latest improvements, they should not be used in production.\n\nUpdate to version 1.18.1:\n\n* Fixed the copy of the leftovers of a chunk when its size is not a multiple of the typesize.\n\nUpdate to version 1.17.1:\n\n* BloscLZ codec updated to 2.0.0.\n\nUpdate to version 1.16.3:\n\n* Fix for building for clang with -march=haswell. See PR #262.\n* Fix all the known warnings for GCC/Clang. Still some work to do for MSVC in this front.\n* Due to some problems with several CI systems, the check for library symbols are deactivated now by default. If you want to enforce this check, use: cmake .. -DDEACTIVATE_SYMBOLS_CHECK=ON to re-activate it.\n* Correct the check for the compressed size when the buffer is memcpyed. This was a regression introduced in 1.16.0. Fixes #261.\n* Fixed a regression in 1.16.0 that prevented to compress empty buffers (see #260).\n* Now the functions that execute Blosc decompressions are safe by default for untrusted/possibly corrupted inputs.\n* The previous functions (with less safety) checks are still available with a \u0027_unsafe\u0027 suffix. The complete list is:\n* Also, a new API function named blosc_cbuffer_validate(), for validating Blosc compressed data, has been added.\n* For details, see PR #258. Thanks to Jeremy Maitin-Shepard.\n* Fixed a bug in blosc_compress() that could lead to thread deadlock under some situations. See #251. Thanks to @wenjuno for the report and the fix.\n* Fix data race in shuffle.c host_implementation initialization. Fixes #253. Thanks to Jeremy Maitin-Shepard.\n* Add workaround for Visual Studio 2008\u0027s lack of a stdint.h file to blosclz.c.\n* Replaced //-comments with /**/-comments and other improvements for compatibility with quite old gcc compilers. See PR #243. Thanks to Andreas Martin.\n* Empty buffers can be compressed again (this was unadvertedly prevented while fixing #234). See #247. Thanks to Valentin Haenel.\n\nUpdate to version 1.14.4:\n\n* Added a new DEACTIVATE_SSE2 option for cmake that is useful for\n  disabling SSE2 when doing cross-compilation (see #236).\n* New check for detecting output buffers smaller than\n  BLOSC_MAX_OVERHEAD.\n* The complib and version parameters for blosc_get_complib_info()\n  can be safely set to NULL now. This allows to call this\n  function even if the user is not interested in these parameters\n  (so no need to reserve memory for them).\n* In some situations that a supposedly blosc chunk is passed to\n  blosc_decompress(), one might end with an Arithmetic exception.\n  This is probably due to the chunk not being an actual blosc\n  chunk, and divisions by zero might occur. A protection has been\n  added for this.\n\nUpdate to version 1.14.3:\n\n* Fixed a bug that caused C-Blosc to crash on platforms\n  requiring strict alignment.\n* Fixed a piece of code that was not C89 compliant.\n\n",
        "title": "Description of the patch"
      },
      {
        "category": "details",
        "text": "openSUSE-2020-2337",
        "title": "Patchnames"
      },
      {
        "category": "legal_disclaimer",
        "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
        "title": "Terms of use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://www.suse.com/support/security/contact/",
      "name": "SUSE Product Security Team",
      "namespace": "https://www.suse.com/"
    },
    "references": [
      {
        "category": "external",
        "summary": "SUSE ratings",
        "url": "https://www.suse.com/support/security/rating/"
      },
      {
        "category": "self",
        "summary": "URL of this CSAF notice",
        "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2020_2337-1.json"
      },
      {
        "category": "self",
        "summary": "URL for openSUSE-SU-2020:2337-1",
        "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/VPTII3AXCRZZGBCOLCFY7HQI24L2PGVQ/"
      },
      {
        "category": "self",
        "summary": "E-Mail link for openSUSE-SU-2020:2337-1",
        "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/VPTII3AXCRZZGBCOLCFY7HQI24L2PGVQ/"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1174075",
        "url": "https://bugzilla.suse.com/1174075"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1179914",
        "url": "https://bugzilla.suse.com/1179914"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2020-29367 page",
        "url": "https://www.suse.com/security/cve/CVE-2020-29367/"
      }
    ],
    "title": "Security update for blosc",
    "tracking": {
      "current_release_date": "2020-12-26T17:22:33Z",
      "generator": {
        "date": "2020-12-26T17:22:33Z",
        "engine": {
          "name": "cve-database.git:bin/generate-csaf.pl",
          "version": "1"
        }
      },
      "id": "openSUSE-SU-2020:2337-1",
      "initial_release_date": "2020-12-26T17:22:33Z",
      "revision_history": [
        {
          "date": "2020-12-26T17:22:33Z",
          "number": "1",
          "summary": "Current version"
        }
      ],
      "status": "final",
      "version": "1"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_version",
                "name": "blosc-devel-1.20.1-bp152.4.3.1.aarch64",
                "product": {
                  "name": "blosc-devel-1.20.1-bp152.4.3.1.aarch64",
                  "product_id": "blosc-devel-1.20.1-bp152.4.3.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "libblosc1-1.20.1-bp152.4.3.1.aarch64",
                "product": {
                  "name": "libblosc1-1.20.1-bp152.4.3.1.aarch64",
                  "product_id": "libblosc1-1.20.1-bp152.4.3.1.aarch64"
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
                "product": {
                  "name": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
                  "product_id": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "libblosc1-1.20.1-bp152.4.3.1.ppc64le",
                "product": {
                  "name": "libblosc1-1.20.1-bp152.4.3.1.ppc64le",
                  "product_id": "libblosc1-1.20.1-bp152.4.3.1.ppc64le"
                }
              }
            ],
            "category": "architecture",
            "name": "ppc64le"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "blosc-devel-1.20.1-bp152.4.3.1.s390x",
                "product": {
                  "name": "blosc-devel-1.20.1-bp152.4.3.1.s390x",
                  "product_id": "blosc-devel-1.20.1-bp152.4.3.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "libblosc1-1.20.1-bp152.4.3.1.s390x",
                "product": {
                  "name": "libblosc1-1.20.1-bp152.4.3.1.s390x",
                  "product_id": "libblosc1-1.20.1-bp152.4.3.1.s390x"
                }
              }
            ],
            "category": "architecture",
            "name": "s390x"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "blosc-devel-1.20.1-bp152.4.3.1.x86_64",
                "product": {
                  "name": "blosc-devel-1.20.1-bp152.4.3.1.x86_64",
                  "product_id": "blosc-devel-1.20.1-bp152.4.3.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "libblosc1-1.20.1-bp152.4.3.1.x86_64",
                "product": {
                  "name": "libblosc1-1.20.1-bp152.4.3.1.x86_64",
                  "product_id": "libblosc1-1.20.1-bp152.4.3.1.x86_64"
                }
              }
            ],
            "category": "architecture",
            "name": "x86_64"
          },
          {
            "branches": [
              {
                "category": "product_name",
                "name": "SUSE Package Hub 15 SP1",
                "product": {
                  "name": "SUSE Package Hub 15 SP1",
                  "product_id": "SUSE Package Hub 15 SP1"
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Package Hub 15 SP2",
                "product": {
                  "name": "SUSE Package Hub 15 SP2",
                  "product_id": "SUSE Package Hub 15 SP2"
                }
              },
              {
                "category": "product_name",
                "name": "openSUSE Leap 15.1",
                "product": {
                  "name": "openSUSE Leap 15.1",
                  "product_id": "openSUSE Leap 15.1",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:opensuse:leap:15.1"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "openSUSE Leap 15.2",
                "product": {
                  "name": "openSUSE Leap 15.2",
                  "product_id": "openSUSE Leap 15.2",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:opensuse:leap:15.2"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "SUSE Linux Enterprise"
          }
        ],
        "category": "vendor",
        "name": "SUSE"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.aarch64 as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.s390x as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.x86_64 as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.aarch64 as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.ppc64le as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.s390x as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.x86_64 as component of SUSE Package Hub 15 SP1",
          "product_id": "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.aarch64 as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.s390x as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.x86_64 as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.aarch64 as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.ppc64le as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.s390x as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.x86_64 as component of SUSE Package Hub 15 SP2",
          "product_id": "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "SUSE Package Hub 15 SP2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.aarch64 as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.s390x as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.x86_64 as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.aarch64 as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.ppc64le as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.s390x as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.x86_64 as component of openSUSE Leap 15.1",
          "product_id": "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.1"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.aarch64 as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.s390x as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "blosc-devel-1.20.1-bp152.4.3.1.x86_64 as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "blosc-devel-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.aarch64 as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.aarch64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.ppc64le as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.ppc64le"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.s390x as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.s390x"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libblosc1-1.20.1-bp152.4.3.1.x86_64 as component of openSUSE Leap 15.2",
          "product_id": "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.x86_64"
        },
        "product_reference": "libblosc1-1.20.1-bp152.4.3.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.2"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2020-29367",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2020-29367"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "blosc2.c in Blosc C-Blosc2 through 2.0.0.beta.5 has a heap-based buffer overflow when there is a lack of space to write compressed data.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
          "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
          "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.s390x",
          "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
          "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.aarch64",
          "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
          "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.s390x",
          "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.x86_64",
          "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
          "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
          "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.s390x",
          "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
          "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.aarch64",
          "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
          "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.s390x",
          "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.x86_64",
          "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
          "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
          "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.s390x",
          "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
          "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.aarch64",
          "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
          "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.s390x",
          "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.x86_64",
          "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
          "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
          "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.s390x",
          "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
          "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.aarch64",
          "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
          "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.s390x",
          "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2020-29367",
          "url": "https://www.suse.com/security/cve/CVE-2020-29367"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1179914 for CVE-2020-29367",
          "url": "https://bugzilla.suse.com/1179914"
        }
      ],
      "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 Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.x86_64",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 7.8,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP1:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP1:libblosc1-1.20.1-bp152.4.3.1.x86_64",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP2:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "SUSE Package Hub 15 SP2:libblosc1-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.1:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.1:libblosc1-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.2:blosc-devel-1.20.1-bp152.4.3.1.x86_64",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.aarch64",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.ppc64le",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.s390x",
            "openSUSE Leap 15.2:libblosc1-1.20.1-bp152.4.3.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2020-12-26T17:22:33Z",
          "details": "critical"
        }
      ],
      "title": "CVE-2020-29367"
    }
  ]
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

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.


Loading…

Loading…