Vulnerability from csaf_suse
Published
2016-03-02 13:24
Modified
2016-03-02 13:24
Summary
Security update for compat-openssl097g

Notes

Title of the patch
Security update for compat-openssl097g
Description of the patch
This update for compat-openssl097g fixes the following issues: - CVE-2016-0800 aka the 'DROWN' attack (bsc#968046): OpenSSL was vulnerable to a cross-protocol attack that could lead to decryption of TLS sessions by using a server supporting SSLv2 and EXPORT cipher suites as a Bleichenbacher RSA padding oracle. This update changes the openssl library to: * Disable SSLv2 protocol support by default. This can be overridden by setting the environment variable 'OPENSSL_ALLOW_SSL2' or by using SSL_CTX_clear_options using the SSL_OP_NO_SSLv2 flag. Note that various services and clients had already disabled SSL protocol 2 by default previously. * Disable all weak EXPORT ciphers by default. These can be reenabled if required by old legacy software using the environment variable 'OPENSSL_ALLOW_EXPORT'. - CVE-2016-0705 (bnc#968047): A double free() bug in the DSA ASN1 parser code was fixed that could be abused to facilitate a denial-of-service attack. - CVE-2016-0797 (bnc#968048): The BN_hex2bn() and BN_dec2bn() functions had a bug that could result in an attempt to de-reference a NULL pointer leading to crashes. This could have security consequences if these functions were ever called by user applications with large untrusted hex/decimal data. Also, internal usage of these functions in OpenSSL uses data from config files or application command line arguments. If user developed applications generated config file data based on untrusted data, then this could have had security consequences as well. - CVE-2016-0799 (bnc#968374) On many 64 bit systems, the internal fmtstr() and doapr_outch() functions could miscalculate the length of a string and attempt to access out-of-bounds memory locations. These problems could have enabled attacks where large amounts of untrusted data is passed to the BIO_*printf functions. If applications use these functions in this way then they could have been vulnerable. OpenSSL itself uses these functions when printing out human-readable dumps of ASN.1 data. Therefore applications that print this data could have been vulnerable if the data is from untrusted sources. OpenSSL command line applications could also have been vulnerable when they print out ASN.1 data, or if untrusted data is passed as command line arguments. Libssl is not considered directly vulnerable. - CVE-2016-0800 aka the 'DROWN' attack (bsc#968046): OpenSSL was vulnerable to a cross-protocol attack that could lead to decryption of TLS sessions by using a server supporting SSLv2 and EXPORT cipher suites as a Bleichenbacher RSA padding oracle. This update changes the openssl library to: * Disable SSLv2 protocol support by default. This can be overridden by setting the environment variable 'OPENSSL_ALLOW_SSL2' or by using SSL_CTX_clear_options using the SSL_OP_NO_SSLv2 flag. Note that various services and clients had already disabled SSL protocol 2 by default previously. * Disable all weak EXPORT ciphers by default. These can be reenabled if required by old legacy software using the environment variable 'OPENSSL_ALLOW_EXPORT'. - CVE-2016-0705 (bnc#968047): A double free() bug in the DSA ASN1 parser code was fixed that could be abused to facilitate a denial-of-service attack. - CVE-2016-0797 (bnc#968048): The BN_hex2bn() and BN_dec2bn() functions had a bug that could result in an attempt to de-reference a NULL pointer leading to crashes. This could have security consequences if these functions were ever called by user applications with large untrusted hex/decimal data. Also, internal usage of these functions in OpenSSL uses data from config files or application command line arguments. If user developed applications generated config file data based on untrusted data, then this could have had security consequences as well. - CVE-2016-0799 (bnc#968374) On many 64 bit systems, the internal fmtstr() and doapr_outch() functions could miscalculate the length of a string and attempt to access out-of-bounds memory locations. These problems could have enabled attacks where large amounts of untrusted data is passed to the BIO_*printf functions. If applications use these functions in this way then they could have been vulnerable. OpenSSL itself uses these functions when printing out human-readable dumps of ASN.1 data. Therefore applications that print this data could have been vulnerable if the data is from untrusted sources. OpenSSL command line applications could also have been vulnerable when they print out ASN.1 data, or if untrusted data is passed as command line arguments. Libssl is not considered directly vulnerable. - CVE-2015-3197 (bsc#963415): The SSLv2 protocol did not block disabled ciphers. Note that the March 1st 2016 release also references following CVEs that were fixed by us with CVE-2015-0293 in 2015: - CVE-2016-0703 (bsc#968051): This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address vulnerability CVE-2015-0293. It would have made the above 'DROWN' attack much easier. - CVE-2016-0704 (bsc#968053): 'Bleichenbacher oracle in SSLv2' This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address vulnerability CVE-2015-0293. It would have made the above 'DROWN' attack much easier.
Patchnames
sledsp4-compat-openssl097g-12436,slesappsp4-compat-openssl097g-12436
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: "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 compat-openssl097g",
            title: "Title of the patch",
         },
         {
            category: "description",
            text: "\nThis update for compat-openssl097g fixes the following issues: \n- CVE-2016-0800 aka the 'DROWN' attack (bsc#968046):\n  OpenSSL was vulnerable to a cross-protocol attack that could lead to\n  decryption of TLS sessions by using a server supporting SSLv2 and\n  EXPORT cipher suites as a Bleichenbacher RSA padding oracle.\n\n  This update changes the openssl library to:\n\n  * Disable SSLv2 protocol support by default.\n\n    This can be overridden by setting the environment variable\n    'OPENSSL_ALLOW_SSL2' or by using SSL_CTX_clear_options using the\n    SSL_OP_NO_SSLv2 flag.\n\n    Note that various services and clients had already disabled SSL\n    protocol 2 by default previously.\n\n  * Disable all weak EXPORT ciphers by default. These can be reenabled\n    if required by old legacy software using the environment variable\n    'OPENSSL_ALLOW_EXPORT'.\n\n- CVE-2016-0705 (bnc#968047):\n  A double free() bug in the DSA ASN1 parser code was fixed that could\n  be abused to facilitate a denial-of-service attack.\n\n- CVE-2016-0797 (bnc#968048):\n  The BN_hex2bn() and BN_dec2bn() functions had a bug that could result\n  in an attempt to de-reference a NULL pointer leading to crashes.\n  This could have security consequences if these functions were ever\n  called by user applications with large untrusted hex/decimal data. Also,\n  internal usage of these functions in OpenSSL uses data from config files\n  or application command line arguments. If user developed applications\n  generated config file data based on untrusted data, then this could\n  have had security consequences as well.\n\n- CVE-2016-0799 (bnc#968374)\n  On many 64 bit systems, the internal fmtstr() and doapr_outch()\n  functions could miscalculate the length of a string and attempt to\n  access out-of-bounds memory locations. These problems could have\n  enabled attacks where large amounts of untrusted data is passed to\n  the BIO_*printf functions. If applications use these functions in\n  this way then they could have been vulnerable. OpenSSL itself uses\n  these functions when printing out human-readable dumps of ASN.1\n  data. Therefore applications that print this data could have been\n  vulnerable if the data is from untrusted sources. OpenSSL command line\n  applications could also have been vulnerable when they print out ASN.1\n  data, or if untrusted data is passed as command line arguments. Libssl\n  is not considered directly vulnerable.\n- CVE-2016-0800 aka the 'DROWN' attack (bsc#968046):\n  OpenSSL was vulnerable to a cross-protocol attack that could lead to\n  decryption of TLS sessions by using a server supporting SSLv2 and\n  EXPORT cipher suites as a Bleichenbacher RSA padding oracle.\n\n  This update changes the openssl library to:\n\n  * Disable SSLv2 protocol support by default.\n\n    This can be overridden by setting the environment variable\n    'OPENSSL_ALLOW_SSL2' or by using SSL_CTX_clear_options using the\n    SSL_OP_NO_SSLv2 flag.\n\n    Note that various services and clients had already disabled SSL\n    protocol 2 by default previously.\n\n  * Disable all weak EXPORT ciphers by default. These can be reenabled\n    if required by old legacy software using the environment variable\n    'OPENSSL_ALLOW_EXPORT'.\n\n- CVE-2016-0705 (bnc#968047):\n  A double free() bug in the DSA ASN1 parser code was fixed that could\n  be abused to facilitate a denial-of-service attack.\n\n- CVE-2016-0797 (bnc#968048):\n  The BN_hex2bn() and BN_dec2bn() functions had a bug that could result\n  in an attempt to de-reference a NULL pointer leading to crashes.\n  This could have security consequences if these functions were ever\n  called by user applications with large untrusted hex/decimal data. Also,\n  internal usage of these functions in OpenSSL uses data from config files\n  or application command line arguments. If user developed applications\n  generated config file data based on untrusted data, then this could\n  have had security consequences as well.\n\n- CVE-2016-0799 (bnc#968374)\n  On many 64 bit systems, the internal fmtstr() and doapr_outch()\n  functions could miscalculate the length of a string and attempt to\n  access out-of-bounds memory locations. These problems could have\n  enabled attacks where large amounts of untrusted data is passed to\n  the BIO_*printf functions. If applications use these functions in\n  this way then they could have been vulnerable. OpenSSL itself uses\n  these functions when printing out human-readable dumps of ASN.1\n  data. Therefore applications that print this data could have been\n  vulnerable if the data is from untrusted sources. OpenSSL command line\n  applications could also have been vulnerable when they print out ASN.1\n  data, or if untrusted data is passed as command line arguments. Libssl\n  is not considered directly vulnerable.\n\n- CVE-2015-3197 (bsc#963415):\n  The SSLv2 protocol did not block disabled ciphers.\n\nNote that the March 1st 2016 release also references following CVEs\nthat were fixed by us with CVE-2015-0293 in 2015:\n\n- CVE-2016-0703 (bsc#968051): This issue only affected versions of\n  OpenSSL prior to March 19th 2015 at which time the code was refactored\n  to address vulnerability CVE-2015-0293. It would have made the above\n  'DROWN' attack much easier.\n- CVE-2016-0704 (bsc#968053): 'Bleichenbacher oracle in SSLv2'\n  This issue only affected versions of OpenSSL prior to March 19th\n  2015 at which time the code was refactored to address vulnerability\n  CVE-2015-0293. It would have made the above 'DROWN' attack much easier.\n",
            title: "Description of the patch",
         },
         {
            category: "details",
            text: "sledsp4-compat-openssl097g-12436,slesappsp4-compat-openssl097g-12436",
            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-2016_0631-1.json",
         },
         {
            category: "self",
            summary: "URL for SUSE-SU-2016:0631-1",
            url: "https://www.suse.com/support/update/announcement/2016/suse-su-20160631-1/",
         },
         {
            category: "self",
            summary: "E-Mail link for SUSE-SU-2016:0631-1",
            url: "https://lists.suse.com/pipermail/sle-security-updates/2016-March/001909.html",
         },
         {
            category: "self",
            summary: "SUSE Bug 963415",
            url: "https://bugzilla.suse.com/963415",
         },
         {
            category: "self",
            summary: "SUSE Bug 968046",
            url: "https://bugzilla.suse.com/968046",
         },
         {
            category: "self",
            summary: "SUSE Bug 968048",
            url: "https://bugzilla.suse.com/968048",
         },
         {
            category: "self",
            summary: "SUSE Bug 968051",
            url: "https://bugzilla.suse.com/968051",
         },
         {
            category: "self",
            summary: "SUSE Bug 968053",
            url: "https://bugzilla.suse.com/968053",
         },
         {
            category: "self",
            summary: "SUSE Bug 968374",
            url: "https://bugzilla.suse.com/968374",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2015-3197 page",
            url: "https://www.suse.com/security/cve/CVE-2015-3197/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2016-0702 page",
            url: "https://www.suse.com/security/cve/CVE-2016-0702/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2016-0703 page",
            url: "https://www.suse.com/security/cve/CVE-2016-0703/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2016-0797 page",
            url: "https://www.suse.com/security/cve/CVE-2016-0797/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2016-0799 page",
            url: "https://www.suse.com/security/cve/CVE-2016-0799/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2016-0800 page",
            url: "https://www.suse.com/security/cve/CVE-2016-0800/",
         },
      ],
      title: "Security update for compat-openssl097g",
      tracking: {
         current_release_date: "2016-03-02T13:24:49Z",
         generator: {
            date: "2016-03-02T13:24:49Z",
            engine: {
               name: "cve-database.git:bin/generate-csaf.pl",
               version: "1",
            },
         },
         id: "SUSE-SU-2016:0631-1",
         initial_release_date: "2016-03-02T13:24:49Z",
         revision_history: [
            {
               date: "2016-03-02T13:24:49Z",
               number: "1",
               summary: "Current version",
            },
         ],
         status: "final",
         version: "1",
      },
   },
   product_tree: {
      branches: [
         {
            branches: [
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "compat-openssl097g-0.9.7g-146.22.41.1.i586",
                        product: {
                           name: "compat-openssl097g-0.9.7g-146.22.41.1.i586",
                           product_id: "compat-openssl097g-0.9.7g-146.22.41.1.i586",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "i586",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                        product: {
                           name: "compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                           product_id: "compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                        product: {
                           name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                           product_id: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "ppc64",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                        product: {
                           name: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                           product_id: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                        product: {
                           name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                           product_id: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "x86_64",
               },
               {
                  branches: [
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Desktop 11 SP4",
                        product: {
                           name: "SUSE Linux Enterprise Desktop 11 SP4",
                           product_id: "SUSE Linux Enterprise Desktop 11 SP4",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:suse_sled:11:sp4",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
                        product: {
                           name: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
                           product_id: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:sles_sap:11:sp4",
                           },
                        },
                     },
                  ],
                  category: "product_family",
                  name: "SUSE Linux Enterprise",
               },
            ],
            category: "vendor",
            name: "SUSE",
         },
      ],
      relationships: [
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-0.9.7g-146.22.41.1.i586 as component of SUSE Linux Enterprise Desktop 11 SP4",
               product_id: "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
            },
            product_reference: "compat-openssl097g-0.9.7g-146.22.41.1.i586",
            relates_to_product_reference: "SUSE Linux Enterprise Desktop 11 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64 as component of SUSE Linux Enterprise Desktop 11 SP4",
               product_id: "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
            },
            product_reference: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Desktop 11 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64 as component of SUSE Linux Enterprise Desktop 11 SP4",
               product_id: "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            },
            product_reference: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Desktop 11 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-0.9.7g-146.22.41.1.ppc64 as component of SUSE Linux Enterprise Server for SAP Applications 11 SP4",
               product_id: "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
            },
            product_reference: "compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
            relates_to_product_reference: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 11 SP4",
               product_id: "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
            },
            product_reference: "compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64 as component of SUSE Linux Enterprise Server for SAP Applications 11 SP4",
               product_id: "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
            },
            product_reference: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
            relates_to_product_reference: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 11 SP4",
               product_id: "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            },
            product_reference: "compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Server for SAP Applications 11 SP4",
         },
      ],
   },
   vulnerabilities: [
      {
         cve: "CVE-2015-3197",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2015-3197",
            },
         ],
         notes: [
            {
               category: "general",
               text: "ssl/s2_srvr.c in OpenSSL 1.0.1 before 1.0.1r and 1.0.2 before 1.0.2f does not prevent use of disabled ciphers, which makes it easier for man-in-the-middle attackers to defeat cryptographic protection mechanisms by performing computations on SSLv2 traffic, related to the get_client_master_key and get_client_hello functions.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2015-3197",
               url: "https://www.suse.com/security/cve/CVE-2015-3197",
            },
            {
               category: "external",
               summary: "SUSE Bug 963410 for CVE-2015-3197",
               url: "https://bugzilla.suse.com/963410",
            },
            {
               category: "external",
               summary: "SUSE Bug 963415 for CVE-2015-3197",
               url: "https://bugzilla.suse.com/963415",
            },
            {
               category: "external",
               summary: "SUSE Bug 968044 for CVE-2015-3197",
               url: "https://bugzilla.suse.com/968044",
            },
            {
               category: "external",
               summary: "SUSE Bug 968046 for CVE-2015-3197",
               url: "https://bugzilla.suse.com/968046",
            },
         ],
         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 Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 5.9,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
                  version: "3.0",
               },
               products: [
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2016-03-02T13:24:49Z",
               details: "low",
            },
         ],
         title: "CVE-2015-3197",
      },
      {
         cve: "CVE-2016-0702",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2016-0702",
            },
         ],
         notes: [
            {
               category: "general",
               text: "The MOD_EXP_CTIME_COPY_FROM_PREBUF function in crypto/bn/bn_exp.c in OpenSSL 1.0.1 before 1.0.1s and 1.0.2 before 1.0.2g does not properly consider cache-bank access times during modular exponentiation, which makes it easier for local users to discover RSA keys by running a crafted application on the same Intel Sandy Bridge CPU core as a victim and leveraging cache-bank conflicts, aka a \"CacheBleed\" attack.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2016-0702",
               url: "https://www.suse.com/security/cve/CVE-2016-0702",
            },
            {
               category: "external",
               summary: "SUSE Bug 1007806 for CVE-2016-0702",
               url: "https://bugzilla.suse.com/1007806",
            },
            {
               category: "external",
               summary: "SUSE Bug 968044 for CVE-2016-0702",
               url: "https://bugzilla.suse.com/968044",
            },
            {
               category: "external",
               summary: "SUSE Bug 968050 for CVE-2016-0702",
               url: "https://bugzilla.suse.com/968050",
            },
            {
               category: "external",
               summary: "SUSE Bug 971238 for CVE-2016-0702",
               url: "https://bugzilla.suse.com/971238",
            },
            {
               category: "external",
               summary: "SUSE Bug 990370 for CVE-2016-0702",
               url: "https://bugzilla.suse.com/990370",
            },
         ],
         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 Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 5.1,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2016-03-02T13:24:49Z",
               details: "important",
            },
         ],
         title: "CVE-2016-0702",
      },
      {
         cve: "CVE-2016-0703",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2016-0703",
            },
         ],
         notes: [
            {
               category: "general",
               text: "The get_client_master_key function in s2_srvr.c in the SSLv2 implementation in OpenSSL before 0.9.8zf, 1.0.0 before 1.0.0r, 1.0.1 before 1.0.1m, and 1.0.2 before 1.0.2a accepts a nonzero CLIENT-MASTER-KEY CLEAR-KEY-LENGTH value for an arbitrary cipher, which allows man-in-the-middle attackers to determine the MASTER-KEY value and decrypt TLS ciphertext data by leveraging a Bleichenbacher RSA padding oracle, a related issue to CVE-2016-0800.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2016-0703",
               url: "https://www.suse.com/security/cve/CVE-2016-0703",
            },
            {
               category: "external",
               summary: "SUSE Bug 968044 for CVE-2016-0703",
               url: "https://bugzilla.suse.com/968044",
            },
            {
               category: "external",
               summary: "SUSE Bug 968046 for CVE-2016-0703",
               url: "https://bugzilla.suse.com/968046",
            },
            {
               category: "external",
               summary: "SUSE Bug 968051 for CVE-2016-0703",
               url: "https://bugzilla.suse.com/968051",
            },
            {
               category: "external",
               summary: "SUSE Bug 986238 for CVE-2016-0703",
               url: "https://bugzilla.suse.com/986238",
            },
         ],
         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 Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 5.9,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
                  version: "3.0",
               },
               products: [
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2016-03-02T13:24:49Z",
               details: "moderate",
            },
         ],
         title: "CVE-2016-0703",
      },
      {
         cve: "CVE-2016-0797",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2016-0797",
            },
         ],
         notes: [
            {
               category: "general",
               text: "Multiple integer overflows in OpenSSL 1.0.1 before 1.0.1s and 1.0.2 before 1.0.2g allow remote attackers to cause a denial of service (heap memory corruption or NULL pointer dereference) or possibly have unspecified other impact via a long digit string that is mishandled by the (1) BN_dec2bn or (2) BN_hex2bn function, related to crypto/bn/bn.h and crypto/bn/bn_print.c.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2016-0797",
               url: "https://www.suse.com/security/cve/CVE-2016-0797",
            },
            {
               category: "external",
               summary: "SUSE Bug 968044 for CVE-2016-0797",
               url: "https://bugzilla.suse.com/968044",
            },
            {
               category: "external",
               summary: "SUSE Bug 968048 for CVE-2016-0797",
               url: "https://bugzilla.suse.com/968048",
            },
            {
               category: "external",
               summary: "SUSE Bug 990370 for CVE-2016-0797",
               url: "https://bugzilla.suse.com/990370",
            },
         ],
         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 Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 7.5,
                  baseSeverity: "HIGH",
                  vectorString: "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2016-03-02T13:24:49Z",
               details: "important",
            },
         ],
         title: "CVE-2016-0797",
      },
      {
         cve: "CVE-2016-0799",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2016-0799",
            },
         ],
         notes: [
            {
               category: "general",
               text: "The fmtstr function in crypto/bio/b_print.c in OpenSSL 1.0.1 before 1.0.1s and 1.0.2 before 1.0.2g improperly calculates string lengths, which allows remote attackers to cause a denial of service (overflow and out-of-bounds read) or possibly have unspecified other impact via a long string, as demonstrated by a large amount of ASN.1 data, a different vulnerability than CVE-2016-2842.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2016-0799",
               url: "https://www.suse.com/security/cve/CVE-2016-0799",
            },
            {
               category: "external",
               summary: "SUSE Bug 968044 for CVE-2016-0799",
               url: "https://bugzilla.suse.com/968044",
            },
            {
               category: "external",
               summary: "SUSE Bug 968374 for CVE-2016-0799",
               url: "https://bugzilla.suse.com/968374",
            },
            {
               category: "external",
               summary: "SUSE Bug 969517 for CVE-2016-0799",
               url: "https://bugzilla.suse.com/969517",
            },
            {
               category: "external",
               summary: "SUSE Bug 989345 for CVE-2016-0799",
               url: "https://bugzilla.suse.com/989345",
            },
            {
               category: "external",
               summary: "SUSE Bug 990370 for CVE-2016-0799",
               url: "https://bugzilla.suse.com/990370",
            },
            {
               category: "external",
               summary: "SUSE Bug 991722 for CVE-2016-0799",
               url: "https://bugzilla.suse.com/991722",
            },
         ],
         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 Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 9.8,
                  baseSeverity: "CRITICAL",
                  vectorString: "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
                  version: "3.0",
               },
               products: [
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2016-03-02T13:24:49Z",
               details: "low",
            },
         ],
         title: "CVE-2016-0799",
      },
      {
         cve: "CVE-2016-0800",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2016-0800",
            },
         ],
         notes: [
            {
               category: "general",
               text: "The SSLv2 protocol, as used in OpenSSL before 1.0.1s and 1.0.2 before 1.0.2g and other products, requires a server to send a ServerVerify message before establishing that a client possesses certain plaintext RSA data, which makes it easier for remote attackers to decrypt TLS ciphertext data by leveraging a Bleichenbacher RSA padding oracle, aka a \"DROWN\" attack.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
               "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2016-0800",
               url: "https://www.suse.com/security/cve/CVE-2016-0800",
            },
            {
               category: "external",
               summary: "SUSE Bug 1106871 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/1106871",
            },
            {
               category: "external",
               summary: "SUSE Bug 961377 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/961377",
            },
            {
               category: "external",
               summary: "SUSE Bug 968044 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/968044",
            },
            {
               category: "external",
               summary: "SUSE Bug 968046 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/968046",
            },
            {
               category: "external",
               summary: "SUSE Bug 968888 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/968888",
            },
            {
               category: "external",
               summary: "SUSE Bug 969591 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/969591",
            },
            {
               category: "external",
               summary: "SUSE Bug 979060 for CVE-2016-0800",
               url: "https://bugzilla.suse.com/979060",
            },
         ],
         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 Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 5.9,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
                  version: "3.0",
               },
               products: [
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.i586",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Desktop 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-0.9.7g-146.22.41.1.x86_64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.ppc64",
                  "SUSE Linux Enterprise Server for SAP Applications 11 SP4:compat-openssl097g-32bit-0.9.7g-146.22.41.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2016-03-02T13:24:49Z",
               details: "moderate",
            },
         ],
         title: "CVE-2016-0800",
      },
   ],
}


Log in or create an account to share your comment.

Security Advisory comment format.

This schema specifies the format of a comment related to a security advisory.

UUIDv4 of the comment
UUIDv4 of the Vulnerability-Lookup instance
When the comment was created originally
When the comment was last updated
Title of the comment
Description of the comment
The identifier of the vulnerability (CVE ID, GHSA-ID, PYSEC ID, etc.).



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.