Vulnerability from csaf_suse
Published
2022-11-02 16:02
Modified
2022-11-02 16:02
Summary
Security update for sqlite3

Notes

Title of the patch
Security update for sqlite3
Description of the patch
This update for sqlite3 fixes the following issues: Security issues fixed: - CVE-2022-35737: Fixed an array-bounds overflow if billions of bytes are used in a string argument to a C API (bnc#1201783). - CVE-2021-36690: Fixed an issue with the SQLite Expert extension when a column has no collating sequence (bsc#1189802). - Package the Tcl bindings here again so that we only ship one copy of SQLite (bsc#1195773). sqlite was updated to 3.39.3: * Use a statement journal on DML statement affecting two or more database rows if the statement makes use of a SQL functions that might abort. * Use a mutex to protect the PRAGMA temp_store_directory and PRAGMA data_store_directory statements, even though they are decremented and documented as not being threadsafe. Update to 3.39.2: * Fix a performance regression in the query planner associated with rearranging the order of FROM clause terms in the presences of a LEFT JOIN. * Apply fixes for CVE-2022-35737, Chromium bugs 1343348 and 1345947, forum post 3607259d3c, and other minor problems discovered by internal testing. [boo#1201783] Update to 3.39.1: * Fix an incorrect result from a query that uses a view that contains a compound SELECT in which only one arm contains a RIGHT JOIN and where the view is not the first FROM clause term of the query that contains the view * Fix a long-standing problem with ALTER TABLE RENAME that can only arise if the sqlite3_limit(SQLITE_LIMIT_SQL_LENGTH) is set to a very small value. * Fix a long-standing problem in FTS3 that can only arise when compiled with the SQLITE_ENABLE_FTS3_PARENTHESIS compile-time option. * Fix the initial-prefix optimization for the REGEXP extension so that it works correctly even if the prefix contains characters that require a 3-byte UTF8 encoding. * Enhance the sqlite_stmt virtual table so that it buffers all of its output. Update to 3.39.0: * Add (long overdue) support for RIGHT and FULL OUTER JOIN * Add new binary comparison operators IS NOT DISTINCT FROM and IS DISTINCT FROM that are equivalent to IS and IS NOT, respective, for compatibility with PostgreSQL and SQL standards * Add a new return code (value '3') from the sqlite3_vtab_distinct() interface that indicates a query that has both DISTINCT and ORDER BY clauses * Added the sqlite3_db_name() interface * The unix os interface resolves all symbolic links in database filenames to create a canonical name for the database before the file is opened * Defer materializing views until the materialization is actually needed, thus avoiding unnecessary work if the materialization turns out to never be used * The HAVING clause of a SELECT statement is now allowed on any aggregate query, even queries that do not have a GROUP BY clause * Many microoptimizations collectively reduce CPU cycles by about 2.3%. Update to 3.38.5: * Fix a blunder in the CLI of the 3.38.4 release Update to 3.38.4: * fix a byte-code problem in the Bloom filter pull-down optimization added by release 3.38.0 in which an error in the byte code causes the byte code engine to enter an infinite loop when the pull-down optimization encounters a NULL key Update to 3.38.3: * Fix a case of the query planner be overly aggressive with optimizing automatic-index and Bloom-filter construction, using inappropriate ON clause terms to restrict the size of the automatic-index or Bloom filter, and resulting in missing rows in the output. * Other minor patches. See the timeline for details. Update to 3.38.2: * Fix a problem with the Bloom filter optimization that might cause an incorrect answer when doing a LEFT JOIN with a WHERE clause constraint that says that one of the columns on the right table of the LEFT JOIN is NULL. * Other minor patches. - Package the Tcl bindings here again so that we only ship one copy of SQLite (bsc#1195773). Update to 3.38.1: * Fix problems with the new Bloom filter optimization that might cause some obscure queries to get an incorrect answer. * Fix the localtime modifier of the date and time functions so that it preserves fractional seconds. * Fix the sqlite_offset SQL function so that it works correctly even in corner cases such as when the argument is a virtual column or the column of a view. * Fix row value IN operator constraints on virtual tables so that they work correctly even if the virtual table implementation relies on bytecode to filter rows that do not satisfy the constraint. * Other minor fixes to assert() statements, test cases, and documentation. See the source code timeline for details. Update to 3.38.0 * Add the -> and ->> operators for easier processing of JSON * The JSON functions are now built-ins * Enhancements to date and time functions * Rename the printf() SQL function to format() for better compatibility, with alias for backwards compatibility. * Add the sqlite3_error_offset() interface for helping localize an SQL error to a specific character in the input SQL text * Enhance the interface to virtual tables * CLI columnar output modes are enhanced to correctly handle tabs and newlines embedded in text, and add options like '--wrap N', '--wordwrap on', and '--quote' to the columnar output modes. * Query planner enhancements using a Bloom filter to speed up large analytic queries, and a balanced merge tree to evaluate UNION or UNION ALL compound SELECT statements that have an ORDER BY clause. * The ALTER TABLE statement is changed to silently ignores entries in the sqlite_schema table that do not parse when PRAGMA writable_schema=ON Update to 3.37.2: * Fix a bug introduced in version 3.35.0 (2021-03-12) that can cause database corruption if a SAVEPOINT is rolled back while in PRAGMA temp_store=MEMORY mode, and other changes are made, and then the outer transaction commits * Fix a long-standing problem with ON DELETE CASCADE and ON UPDATE CASCADE in which a cache of the bytecode used to implement the cascading change was not being reset following a local DDL change Update to 3.37.1: * Fix a bug introduced by the UPSERT enhancements of version 3.35.0 that can cause incorrect byte-code to be generated for some obscure but valid SQL, possibly resulting in a NULL- pointer dereference. * Fix an OOB read that can occur in FTS5 when reading corrupt database files. * Improved robustness of the --safe option in the CLI. * Other minor fixes to assert() statements and test cases. Updated to 3.37.0: * STRICT tables provide a prescriptive style of data type management, for developers who prefer that kind of thing. * When adding columns that contain a CHECK constraint or a generated column containing a NOT NULL constraint, the ALTER TABLE ADD COLUMN now checks new constraints against preexisting rows in the database and will only proceed if no constraints are violated. * Added the PRAGMA table_list statement. * Add the .connection command, allowing the CLI to keep multiple database connections open at the same time. * Add the --safe command-line option that disables dot-commands and SQL statements that might cause side-effects that extend beyond the single database file named on the command-line. * CLI: Performance improvements when reading SQL statements that span many lines. * Added the sqlite3_autovacuum_pages() interface. * The sqlite3_deserialize() does not and has never worked for the TEMP database. That limitation is now noted in the documentation. * The query planner now omits ORDER BY clauses on subqueries and views if removing those clauses does not change the semantics of the query. * The generate_series table-valued function extension is modified so that the first parameter ('START') is now required. This is done as a way to demonstrate how to write table-valued functions with required parameters. The legacy behavior is available using the -DZERO_ARGUMENT_GENERATE_SERIES compile-time option. * Added new sqlite3_changes64() and sqlite3_total_changes64() interfaces. * Added the SQLITE_OPEN_EXRESCODE flag option to sqlite3_open_v2(). * Use less memory to hold the database schema. * bsc#1189802, CVE-2021-36690: Fix an issue with the SQLite Expert extension when a column has no collating sequence.
Patchnames
SUSE-2022-3307,SUSE-SLE-Module-Basesystem-15-SP3-2022-3307,SUSE-SLE-Module-Basesystem-15-SP4-2022-3307,SUSE-SUSE-MicroOS-5.1-2022-3307,SUSE-SUSE-MicroOS-5.2-2022-3307,openSUSE-Leap-Micro-5.2-2022-3307,openSUSE-SLE-15.3-2022-3307,openSUSE-SLE-15.4-2022-3307
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 sqlite3",
            title: "Title of the patch",
         },
         {
            category: "description",
            text: "This update for sqlite3 fixes the following issues:\n\nSecurity issues fixed:\n\n- CVE-2022-35737: Fixed an array-bounds overflow if billions of bytes are used in a string argument to a C API (bnc#1201783).\n- CVE-2021-36690: Fixed an issue with the SQLite Expert extension when a column has no collating sequence (bsc#1189802).\n  \n- Package the Tcl bindings here again so that we only ship one copy of SQLite (bsc#1195773).\n\nsqlite was updated to 3.39.3:\n\n* Use a statement journal on DML statement affecting two or more\n  database rows if the statement makes use of a SQL functions\n  that might abort.\n* Use a mutex to protect the PRAGMA temp_store_directory and\n  PRAGMA data_store_directory statements, even though they are\n  decremented and documented as not being threadsafe.\n\nUpdate to 3.39.2:\n\n* Fix a performance regression in the query planner associated\n  with rearranging the order of FROM clause terms in the\n  presences of a LEFT JOIN.\n* Apply fixes for CVE-2022-35737, Chromium bugs 1343348 and\n  1345947, forum post 3607259d3c, and other minor problems\n  discovered by internal testing. [boo#1201783]\n\nUpdate to 3.39.1:\n\n* Fix an incorrect result from a query that uses a view that\n  contains a compound SELECT in which only one arm contains a\n  RIGHT JOIN and where the view is not the first FROM clause term\n  of the query that contains the view\n* Fix a long-standing problem with ALTER TABLE RENAME that can\n  only arise if the sqlite3_limit(SQLITE_LIMIT_SQL_LENGTH) is set\n  to a very small value.\n* Fix a long-standing problem in FTS3 that can only arise when\n  compiled with the SQLITE_ENABLE_FTS3_PARENTHESIS compile-time\n  option.\n* Fix the initial-prefix optimization for the REGEXP extension so\n  that it works correctly even if the prefix contains characters\n  that require a 3-byte UTF8 encoding.\n* Enhance the sqlite_stmt virtual table so that it buffers all of\n  its output. \n\nUpdate to 3.39.0:\n\n* Add (long overdue) support for RIGHT and FULL OUTER JOIN\n* Add new binary comparison operators IS NOT DISTINCT FROM and \n  IS DISTINCT FROM that are equivalent to IS and IS NOT, \n  respective, for compatibility with PostgreSQL and SQL standards\n* Add a new return code (value '3') from the sqlite3_vtab_distinct()\n  interface that indicates a query that has both DISTINCT and \n  ORDER BY clauses\n* Added the sqlite3_db_name() interface\n* The unix os interface resolves all symbolic links in database\n  filenames to create a canonical name for the database before\n  the file is opened\n* Defer materializing views until the materialization is actually\n  needed, thus avoiding unnecessary work if the materialization\n  turns out to never be used\n* The HAVING clause of a SELECT statement is now allowed on any\n  aggregate query, even queries that do not have a GROUP BY\n  clause\n* Many microoptimizations collectively reduce CPU cycles by about\n  2.3%. \n\nUpdate to 3.38.5:\n\n* Fix a blunder in the CLI of the 3.38.4 release\n\nUpdate to 3.38.4:\n\n* fix a byte-code problem in the Bloom filter pull-down\n  optimization added by release 3.38.0 in which an error in the\n  byte code causes the byte code engine to enter an infinite loop\n  when the pull-down optimization encounters a NULL key   \n\nUpdate to 3.38.3:\n\n* Fix a case of the query planner be overly aggressive with\n  optimizing automatic-index and Bloom-filter construction,\n  using inappropriate ON clause terms to restrict the size of the\n  automatic-index or Bloom filter, and resulting in missing rows\n  in the output.\n* Other minor patches. See the timeline for details. \n\nUpdate to 3.38.2:\n\n* Fix a problem with the Bloom filter optimization that might\n  cause an incorrect answer when doing a LEFT JOIN with a WHERE\n  clause constraint that says that one of the columns on the\n  right table of the LEFT JOIN is NULL.\n* Other minor patches.\n\n- Package the Tcl bindings here again so that we only ship one copy\nof SQLite (bsc#1195773).\n\nUpdate to 3.38.1:\n\n* Fix problems with the new Bloom filter optimization that might\n  cause some obscure queries to get an incorrect answer.\n* Fix the localtime modifier of the date and time functions so\n  that it preserves fractional seconds.\n* Fix the sqlite_offset SQL function so that it works correctly\n  even in corner cases such as when the argument is a virtual\n  column or the column of a view.\n* Fix row value IN operator constraints on virtual tables so that\n  they work correctly even if the virtual table implementation\n  relies on bytecode to filter rows that do not satisfy the\n  constraint.\n* Other minor fixes to assert() statements, test cases, and\n  documentation. See the source code timeline for details.\n\nUpdate to 3.38.0\n\n* Add the -> and ->> operators for easier processing of JSON\n* The JSON functions are now built-ins\n* Enhancements to date and time functions\n* Rename the printf() SQL function to format() for better\n  compatibility, with alias for backwards compatibility.\n* Add the sqlite3_error_offset() interface for helping localize\n  an SQL error to a specific character in the input SQL text \n* Enhance the interface to virtual tables \n* CLI columnar output modes are enhanced to correctly handle tabs\n  and newlines embedded in text, and add options like '--wrap N',\n  '--wordwrap on', and '--quote' to the columnar output modes.\n* Query planner enhancements using a Bloom filter to speed up \n  large analytic queries, and a balanced merge tree to evaluate\n  UNION or UNION ALL compound SELECT statements that have an\n  ORDER BY clause.\n* The ALTER TABLE statement is changed to silently ignores\n  entries in the sqlite_schema table that do not parse when\n  PRAGMA writable_schema=ON\n\nUpdate to 3.37.2:\n\n* Fix a bug introduced in version 3.35.0 (2021-03-12) that can\n  cause database corruption if a SAVEPOINT is rolled back while\n  in PRAGMA temp_store=MEMORY mode, and other changes are made,\n  and then the outer transaction commits\n* Fix a long-standing problem with ON DELETE CASCADE and ON \n  UPDATE CASCADE in which a cache of the bytecode used to\n  implement the cascading change was not being reset following a\n  local DDL change\n\nUpdate to 3.37.1:\n\n* Fix a bug introduced by the UPSERT enhancements of version\n  3.35.0 that can cause incorrect byte-code to be generated for\n  some obscure but valid SQL, possibly resulting in a NULL-\n  pointer dereference.\n* Fix an OOB read that can occur in FTS5 when reading corrupt\n  database files.\n* Improved robustness of the --safe option in the CLI.\n* Other minor fixes to assert() statements and test cases. \n\nUpdated to 3.37.0:\n\n* STRICT tables provide a prescriptive style of data type\n  management, for developers who prefer that kind of thing.\n* When adding columns that contain a CHECK constraint or a\n  generated column containing a NOT NULL constraint, the\n  ALTER TABLE ADD COLUMN now checks new constraints against\n  preexisting rows in the database and will only proceed if no\n  constraints are violated.\n* Added the PRAGMA table_list statement.\n* Add the .connection command, allowing the CLI to keep multiple\n  database connections open at the same time.\n* Add the --safe command-line option that disables dot-commands\n  and SQL statements that might cause side-effects that extend\n  beyond the single database file named on the command-line.\n* CLI: Performance improvements when reading SQL statements that\n  span many lines.\n* Added the sqlite3_autovacuum_pages() interface.\n* The sqlite3_deserialize() does not and has never worked\n  for the TEMP database. That limitation is now noted in the\n  documentation.\n* The query planner now omits ORDER BY clauses on subqueries and\n  views if removing those clauses does not change the semantics\n  of the query.\n* The generate_series table-valued function extension is modified\n  so that the first parameter ('START') is now required. This is\n  done as a way to demonstrate how to write table-valued\n  functions with required parameters. The legacy behavior is\n  available using the -DZERO_ARGUMENT_GENERATE_SERIES\n  compile-time option.\n* Added new sqlite3_changes64() and sqlite3_total_changes64()\n  interfaces.\n* Added the SQLITE_OPEN_EXRESCODE flag option to sqlite3_open_v2().\n* Use less memory to hold the database schema.\n* bsc#1189802, CVE-2021-36690: Fix an issue with the SQLite Expert\n  extension when a column has no collating sequence.\n",
            title: "Description of the patch",
         },
         {
            category: "details",
            text: "SUSE-2022-3307,SUSE-SLE-Module-Basesystem-15-SP3-2022-3307,SUSE-SLE-Module-Basesystem-15-SP4-2022-3307,SUSE-SUSE-MicroOS-5.1-2022-3307,SUSE-SUSE-MicroOS-5.2-2022-3307,openSUSE-Leap-Micro-5.2-2022-3307,openSUSE-SLE-15.3-2022-3307,openSUSE-SLE-15.4-2022-3307",
            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-2022_3307-1.json",
         },
         {
            category: "self",
            summary: "URL for SUSE-SU-2022:3307-1",
            url: "https://www.suse.com/support/update/announcement/2022/suse-su-20223307-1/",
         },
         {
            category: "self",
            summary: "E-Mail link for SUSE-SU-2022:3307-1",
            url: "https://lists.suse.com/pipermail/sle-security-updates/2022-September/012285.html",
         },
         {
            category: "self",
            summary: "SUSE Bug 1189802",
            url: "https://bugzilla.suse.com/1189802",
         },
         {
            category: "self",
            summary: "SUSE Bug 1195773",
            url: "https://bugzilla.suse.com/1195773",
         },
         {
            category: "self",
            summary: "SUSE Bug 1201783",
            url: "https://bugzilla.suse.com/1201783",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2021-36690 page",
            url: "https://www.suse.com/security/cve/CVE-2021-36690/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2022-35737 page",
            url: "https://www.suse.com/security/cve/CVE-2022-35737/",
         },
      ],
      title: "Security update for sqlite3",
      tracking: {
         current_release_date: "2022-11-02T16:02:10Z",
         generator: {
            date: "2022-11-02T16:02:10Z",
            engine: {
               name: "cve-database.git:bin/generate-csaf.pl",
               version: "1",
            },
         },
         id: "SUSE-SU-2022:3307-1",
         initial_release_date: "2022-11-02T16:02:10Z",
         revision_history: [
            {
               date: "2022-11-02T16:02:10Z",
               number: "1",
               summary: "Current version",
            },
         ],
         status: "final",
         version: "1",
      },
   },
   product_tree: {
      branches: [
         {
            branches: [
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                        product: {
                           name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                           product_id: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-3.39.3-150000.3.17.1.aarch64",
                        product: {
                           name: "sqlite3-3.39.3-150000.3.17.1.aarch64",
                           product_id: "sqlite3-3.39.3-150000.3.17.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                        product: {
                           name: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                           product_id: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                        product: {
                           name: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                           product_id: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "aarch64",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libsqlite3-0-64bit-3.39.3-150000.3.17.1.aarch64_ilp32",
                        product: {
                           name: "libsqlite3-0-64bit-3.39.3-150000.3.17.1.aarch64_ilp32",
                           product_id: "libsqlite3-0-64bit-3.39.3-150000.3.17.1.aarch64_ilp32",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "aarch64_ilp32",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libsqlite3-0-3.39.3-150000.3.17.1.i586",
                        product: {
                           name: "libsqlite3-0-3.39.3-150000.3.17.1.i586",
                           product_id: "libsqlite3-0-3.39.3-150000.3.17.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-3.39.3-150000.3.17.1.i586",
                        product: {
                           name: "sqlite3-3.39.3-150000.3.17.1.i586",
                           product_id: "sqlite3-3.39.3-150000.3.17.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-devel-3.39.3-150000.3.17.1.i586",
                        product: {
                           name: "sqlite3-devel-3.39.3-150000.3.17.1.i586",
                           product_id: "sqlite3-devel-3.39.3-150000.3.17.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-tcl-3.39.3-150000.3.17.1.i586",
                        product: {
                           name: "sqlite3-tcl-3.39.3-150000.3.17.1.i586",
                           product_id: "sqlite3-tcl-3.39.3-150000.3.17.1.i586",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "i586",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                        product: {
                           name: "sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                           product_id: "sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "noarch",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                        product: {
                           name: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                           product_id: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
                        product: {
                           name: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
                           product_id: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                        product: {
                           name: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                           product_id: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                        product: {
                           name: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                           product_id: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "ppc64le",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                        product: {
                           name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                           product_id: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-3.39.3-150000.3.17.1.s390x",
                        product: {
                           name: "sqlite3-3.39.3-150000.3.17.1.s390x",
                           product_id: "sqlite3-3.39.3-150000.3.17.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                        product: {
                           name: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                           product_id: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                        product: {
                           name: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                           product_id: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "s390x",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                        product: {
                           name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                           product_id: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                        product: {
                           name: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                           product_id: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-3.39.3-150000.3.17.1.x86_64",
                        product: {
                           name: "sqlite3-3.39.3-150000.3.17.1.x86_64",
                           product_id: "sqlite3-3.39.3-150000.3.17.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                        product: {
                           name: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                           product_id: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                        product: {
                           name: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                           product_id: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "x86_64",
               },
               {
                  branches: [
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
                        product: {
                           name: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
                           product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:sle-module-basesystem:15:sp3",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
                        product: {
                           name: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
                           product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:sle-module-basesystem:15:sp4",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Micro 5.1",
                        product: {
                           name: "SUSE Linux Enterprise Micro 5.1",
                           product_id: "SUSE Linux Enterprise Micro 5.1",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:suse-microos:5.1",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Micro 5.2",
                        product: {
                           name: "SUSE Linux Enterprise Micro 5.2",
                           product_id: "SUSE Linux Enterprise Micro 5.2",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:suse-microos:5.2",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "openSUSE Leap Micro 5.2",
                        product: {
                           name: "openSUSE Leap Micro 5.2",
                           product_id: "openSUSE Leap Micro 5.2",
                           product_identification_helper: {
                              cpe: "cpe:/o:opensuse:leap-micro:5.2",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "openSUSE Leap 15.3",
                        product: {
                           name: "openSUSE Leap 15.3",
                           product_id: "openSUSE Leap 15.3",
                           product_identification_helper: {
                              cpe: "cpe:/o:opensuse:leap:15.3",
                           },
                        },
                     },
                     {
                        category: "product_name",
                        name: "openSUSE Leap 15.4",
                        product: {
                           name: "openSUSE Leap 15.4",
                           product_id: "openSUSE Leap 15.4",
                           product_identification_helper: {
                              cpe: "cpe:/o:opensuse:leap:15.4",
                           },
                        },
                     },
                  ],
                  category: "product_family",
                  name: "SUSE Linux Enterprise",
               },
            ],
            category: "vendor",
            name: "SUSE",
         },
      ],
      relationships: [
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Basesystem 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Micro 5.1",
               product_id: "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Micro 5.1",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Micro 5.1",
               product_id: "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Micro 5.1",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Micro 5.1",
               product_id: "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Micro 5.1",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of SUSE Linux Enterprise Micro 5.2",
               product_id: "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Micro 5.2",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x as component of SUSE Linux Enterprise Micro 5.2",
               product_id: "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Micro 5.2",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of SUSE Linux Enterprise Micro 5.2",
               product_id: "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Micro 5.2",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap Micro 5.2",
               product_id: "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap Micro 5.2",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap Micro 5.2",
               product_id: "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap Micro 5.2",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-doc-3.39.3-150000.3.17.1.noarch as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
            },
            product_reference: "sqlite3-doc-3.39.3-150000.3.17.1.noarch",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.3",
               product_id: "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.3",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-doc-3.39.3-150000.3.17.1.noarch as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
            },
            product_reference: "sqlite3-doc-3.39.3-150000.3.17.1.noarch",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            },
            product_reference: "sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
      ],
   },
   vulnerabilities: [
      {
         cve: "CVE-2021-36690",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2021-36690",
            },
         ],
         notes: [
            {
               category: "general",
               text: "** DISPUTED ** A segmentation fault can occur in the sqlite3.exe command-line component of SQLite 3.36.0 via the idxGetTableInfo function when there is a crafted SQL query. NOTE: the vendor disputes the relevance of this report because a sqlite3.exe user already has full privileges (e.g., is intentionally allowed to execute commands). This report does NOT imply any problem in the SQLite library.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2021-36690",
               url: "https://www.suse.com/security/cve/CVE-2021-36690",
            },
            {
               category: "external",
               summary: "SUSE Bug 1189802 for CVE-2021-36690",
               url: "https://bugzilla.suse.com/1189802",
            },
            {
               category: "external",
               summary: "SUSE Bug 1211963 for CVE-2021-36690",
               url: "https://bugzilla.suse.com/1211963",
            },
         ],
         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 Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 5.5,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2022-11-02T16:02:10Z",
               details: "moderate",
            },
         ],
         title: "CVE-2021-36690",
      },
      {
         cve: "CVE-2022-35737",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2022-35737",
            },
         ],
         notes: [
            {
               category: "general",
               text: "SQLite 1.0.12 through 3.39.x before 3.39.2 sometimes allows an array-bounds overflow if billions of bytes are used in a string argument to a C API.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
               "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
               "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
               "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2022-35737",
               url: "https://www.suse.com/security/cve/CVE-2022-35737",
            },
            {
               category: "external",
               summary: "SUSE Bug 1201783 for CVE-2022-35737",
               url: "https://bugzilla.suse.com/1201783",
            },
            {
               category: "external",
               summary: "SUSE Bug 1203345 for CVE-2022-35737",
               url: "https://bugzilla.suse.com/1203345",
            },
            {
               category: "external",
               summary: "SUSE Bug 1211963 for CVE-2022-35737",
               url: "https://bugzilla.suse.com/1211963",
            },
         ],
         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 Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 6.3,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:N",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.1:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "SUSE Linux Enterprise Module for Basesystem 15 SP4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.3:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.3:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:libsqlite3-0-32bit-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-devel-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap 15.4:sqlite3-doc-3.39.3-150000.3.17.1.noarch",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.ppc64le",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.s390x",
                  "openSUSE Leap 15.4:sqlite3-tcl-3.39.3-150000.3.17.1.x86_64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.aarch64",
                  "openSUSE Leap Micro 5.2:libsqlite3-0-3.39.3-150000.3.17.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2022-11-02T16:02:10Z",
               details: "moderate",
            },
         ],
         title: "CVE-2022-35737",
      },
   ],
}


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.