Vulnerability from csaf_suse
Published
2023-03-15 19:34
Modified
2023-03-15 19:34
Summary
Security update for python310

Notes

Title of the patch
Security update for python310
Description of the patch
This update for python310 fixes the following issues: - CVE-2023-24329: Fixed blocklist bypass via the urllib.parse component when supplying a URL that starts with blank characters (bsc#1208471). Update to 3.10.10: - Add provides for readline and sqlite3 to the main Python package. - Disable NIS for new products, it's deprecated and gets removed Update to 3.10.9: - python -m http.server no longer allows terminal control characters sent within a garbage request to be printed to the stderr server lo This is done by changing the http.server BaseHTTPRequestHandler .log_message method to replace control characters with a \xHH hex escape before printin - Avoid publishing list of active per-interpreter audit hooks via the gc module - The IDNA codec decoder used on DNS hostnames by socket or asyncio related name resolution functions no longer involves a quadratic algorithm. This prevents a potential CPU denial of service if an out-of-spec excessive length hostname involving bidirectional characters were decoded. Some protocols such as urllib http 3xx redirects potentially allow for an attacker to supply such a name. - Update bundled libexpat to 2.5.0 - Port XKCP’s fix for the buffer overflows in SHA-3 (CVE-2022-37454). - On Linux the multiprocessing module returns to using filesystem backed unix domain sockets for communication with the forkserver process instead of the Linux abstract socket namespace. Only code that chooses to use the “forkserver” start method is affected Abstract sockets have no permissions and could allow any user on the system in the same network namespace (often the whole system) to inject code into the multiprocessing forkserver process. This was a potential privilege escalation. Filesystem based socket permissions restrict this to the forkserver process user as was the default in Python 3.8 and earlier This prevents Linux CVE-2022-42919 - Fix a reference bug in _imp.create_builtin() after the creation of the first sub-interpreter for modules builtins and sys. Patch by Victor Stinner. - Fixed a bug that was causing a buffer overflow if the tokenizer copies a line missing the newline caracter from a file that is as long as the available tokenizer buffer. Patch by Pablo galindo - Update faulthandler to emit an error message with the proper unexpected signal number. Patch by Dong-hee Na. - Fix subscription of types.GenericAlias instances containing bare generic types: for example tuple[A, T][int], where A is a generic type, and T is a type variable. - Fix detection of MAC addresses for uuid on certain OSs. Patch by Chaim Sanders - Print exception class name instead of its string representation when raising errors from ctypes calls. - Allow pdb to locate source for frozen modules in the standard library. - Raise ValueError instead of SystemError when methods of uninitialized io.IncrementalNewlineDecoder objects are called. Patch by Oren Milman. - Fix a possible assertion failure in io.FileIO when the opener returns an invalid file descriptor. - Also escape s in the http.server BaseHTTPRequestHandler.log_message so that it is technically possible to parse the line and reconstruct what the original data was. Without this a xHH is ambiguious as to if it is a hex replacement we put in or the characters r”x” came through in the original request line. - asyncio.get_event_loop() now only emits a deprecation warning when a new event loop was created implicitly. It no longer emits a deprecation warning if the current event loop was set. - Fix bug when calling trace.CoverageResults with valid infile. - Fix a bug in handling class cleanups in unittest.TestCase. Now addClassCleanup() uses separate lists for different TestCase subclasses, and doClassCleanups() only cleans up the particular class. - Release the GIL when calling termios APIs to avoid blocking threads. - Fix ast.increment_lineno() to also cover ast.TypeIgnore when changing line numbers. - Fixed bug where inspect.signature() reported incorrect arguments for decorated methods. - Fix SystemError in ctypes when exception was not set during __initsubclass__. - Fix statistics.NormalDist pickle with 0 and 1 protocols. - Update the bundled copy of pip to version 22.3.1. - Apply bugfixes from importlib_metadata 4.11.4, namely: In PathDistribution._name_from_stem, avoid including parts of the extension in the result. In PathDistribution._normalized_name, ensure names loaded from the stem of the filename are also normalized, ensuring duplicate entry points by packages varying only by non-normalized name are hidden. - Clean up refleak on failed module initialisation in _zoneinfo - Clean up refleaks on failed module initialisation in in _pickle - Clean up refleak on failed module initialisation in _io. - Fix memory leak in math.dist() when both points don’t have the same dimension. Patch by Kumar Aditya. - Fix argument typechecks in _overlapped.WSAConnect() and _overlapped.Overlapped.WSASendTo() functions. - Fix internal error in the re module which in very rare circumstances prevented compilation of a regular expression containing a conditional expression without the “else” branch. - Fix asyncio.StreamWriter.drain() to call protocol.connection_lost callback only once on Windows. - Add a mutex to unittest.mock.NonCallableMock to protect concurrent access to mock attributes. - Fix hang on Windows in subprocess.wait_closed() in asyncio with ProactorEventLoop. Patch by Kumar Aditya. - Fix infinite loop in unittest when a self-referencing chained exception is raised - tkinter.Text.count() raises now an exception for options starting with “-” instead of silently ignoring them. - On uname_result, restored expectation that _fields and _asdict would include all six properties including processor. - Update the bundled copies of pip and setuptools to versions 22.3 and 65.5.0 respectively. - Fix bug in urllib.parse.urlparse() that causes certain port numbers containing whitespace, underscores, plus and minus signs, or non-ASCII digits to be incorrectly accepted. - Allow venv to pass along PYTHON* variables to ensurepip and pip when they do not impact path resolution - On macOS, fix a crash in syslog.syslog() in multi-threaded applications. On macOS, the libc syslog() function is not thread-safe, so syslog.syslog() no longer releases the GIL to call it. Patch by Victor Stinner. - Allow BUILTINS to be a valid field name for frozen dataclasses. - Make sure patch.dict() can be applied on async functions. - To avoid apparent memory leaks when asyncio.open_connection() raises, break reference cycles generated by local exception and future instances (which has exception instance as its member var). Patch by Dong Uk, Kang. - Prevent error when activating venv in nested fish instances. - Restrict use of sockets instead of pipes for stdin of subprocesses created by asyncio to AIX platform only. - shutil.copytree() now applies the ignore_dangling_symlinks argument recursively. - Fix IndexError in argparse.ArgumentParser when a store_true action is given an explicit argument. - Document that calling variadic functions with ctypes requires special care on macOS/arm64 (and possibly other platforms). - Skip test_normalization() of test_unicodedata if it fails to download NormalizationTest.txt file from pythontest.net. Patch by Victor Stinner. - Some C API tests were moved into the new Lib/test/test_capi/ directory. - Fix -Wimplicit-int, -Wstrict-prototypes, and -Wimplicit-function-declaration compiler warnings in configure checks. - Fix -Wimplicit-int compiler warning in configure check for PTHREAD_SCOPE_SYSTEM. - Specify the full path to the source location for make docclean (needed for cross-builds). - Fix NO_MISALIGNED_ACCESSES being not defined for the SHA3 extension when HAVE_ALIGNED_REQUIRED is set. Allowing builds on hardware that unaligned memory accesses are not allowed. - Fix handling of module docstrings in Tools/i18n/pygettext.py. - Add invalid-json.patch fixing invalid JSON in Doc/howto/logging-cookbook.rst (somehow similar to gh#python/cpython#102582).
Patchnames
SUSE-2023-748,SUSE-SLE-Module-Python3-15-SP4-2023-748,openSUSE-SLE-15.4-2023-748
Terms of use
CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).



{
   document: {
      aggregate_severity: {
         namespace: "https://www.suse.com/support/security/rating/",
         text: "important",
      },
      category: "csaf_security_advisory",
      csaf_version: "2.0",
      distribution: {
         text: "Copyright 2024 SUSE LLC. All rights reserved.",
         tlp: {
            label: "WHITE",
            url: "https://www.first.org/tlp/",
         },
      },
      lang: "en",
      notes: [
         {
            category: "summary",
            text: "Security update for python310",
            title: "Title of the patch",
         },
         {
            category: "description",
            text: "This update for python310 fixes the following issues:\n\n- CVE-2023-24329: Fixed blocklist bypass via the urllib.parse component when supplying a URL that starts with blank characters (bsc#1208471).\n\nUpdate to 3.10.10:\n\n- Add provides for readline and sqlite3 to the main Python\n  package.\n- Disable NIS for new products, it's deprecated and gets removed\n\nUpdate to 3.10.9:\n  \n- python -m http.server no longer allows terminal\n  control characters sent within a garbage request to be\n  printed to the stderr server lo This is done by changing\n  the http.server BaseHTTPRequestHandler .log_message method\n  to replace control characters with a \\xHH hex escape before\n  printin\n- Avoid publishing list of active per-interpreter\n  audit hooks via the gc module\n- The IDNA codec decoder used on DNS hostnames by\n  socket or asyncio related name resolution functions no\n  longer involves a quadratic algorithm. This prevents a\n  potential CPU denial of service if an out-of-spec excessive\n  length hostname involving bidirectional characters were\n  decoded. Some protocols such as urllib http 3xx redirects\n  potentially allow for an attacker to supply such a name.\n- Update bundled libexpat to 2.5.0\n- Port XKCP’s fix for the buffer overflows in SHA-3\n  (CVE-2022-37454).\n- On Linux the multiprocessing module returns\n  to using filesystem backed unix domain sockets for\n  communication with the forkserver process instead of the\n  Linux abstract socket namespace. Only code that chooses\n  to use the “forkserver” start method is affected Abstract\n  sockets have no permissions and could allow any user\n  on the system in the same network namespace (often the\n  whole system) to inject code into the multiprocessing\n  forkserver process. This was a potential privilege\n  escalation. Filesystem based socket permissions restrict\n  this to the forkserver process user as was the default in\n  Python 3.8 and earlier This prevents Linux CVE-2022-42919\n- Fix a reference bug in _imp.create_builtin()\n  after the creation of the first sub-interpreter for modules\n  builtins and sys. Patch by Victor Stinner.\n- Fixed a bug that was causing a buffer overflow if\n  the tokenizer copies a line missing the newline caracter\n  from a file that is as long as the available tokenizer\n  buffer. Patch by Pablo galindo\n- Update faulthandler to emit an error message with\n  the proper unexpected signal number. Patch by Dong-hee Na.\n- Fix subscription of types.GenericAlias instances\n  containing bare generic types: for example tuple[A, T][int],\n  where A is a generic type, and T is a type variable.\n- Fix detection of MAC addresses for uuid on certain\n  OSs. Patch by Chaim Sanders\n- Print exception class name instead of its string\n  representation when raising errors from ctypes calls.\n- Allow pdb to locate source for frozen modules in\n  the standard library.\n- Raise ValueError instead of SystemError when\n  methods of uninitialized io.IncrementalNewlineDecoder objects\n  are called. Patch by Oren Milman.\n- Fix a possible assertion failure in io.FileIO when\n  the opener returns an invalid file descriptor.\n- Also escape s in the http.server\n  BaseHTTPRequestHandler.log_message so that it is technically\n  possible to parse the line and reconstruct what the original\n  data was. Without this a xHH is ambiguious as to if it is a\n  hex replacement we put in or the characters r”x” came through\n  in the original request line.\n- asyncio.get_event_loop() now only emits a\n  deprecation warning when a new event loop was created\n  implicitly. It no longer emits a deprecation warning if the\n  current event loop was set.\n- Fix bug when calling trace.CoverageResults with\n  valid infile.\n- Fix a bug in handling class cleanups in\n  unittest.TestCase. Now addClassCleanup() uses separate lists\n  for different TestCase subclasses, and doClassCleanups() only\n  cleans up the particular class.\n- Release the GIL when calling termios APIs to avoid\n  blocking threads.\n- Fix ast.increment_lineno() to also cover\n  ast.TypeIgnore when changing line numbers.\n- Fixed bug where inspect.signature() reported\n  incorrect arguments for decorated methods.\n- Fix SystemError in ctypes when exception was not\n  set during __initsubclass__.\n- Fix statistics.NormalDist pickle with 0 and 1\n  protocols.\n- Update the bundled copy of pip to version 22.3.1.\n- Apply bugfixes from importlib_metadata 4.11.4,\n  namely: In PathDistribution._name_from_stem, avoid\n  including parts of the extension in the result. In\n  PathDistribution._normalized_name, ensure names loaded from\n  the stem of the filename are also normalized, ensuring\n  duplicate entry points by packages varying only by\n  non-normalized name are hidden.\n- Clean up refleak on failed module initialisation in\n  _zoneinfo\n- Clean up refleaks on failed module initialisation\n  in in _pickle\n- Clean up refleak on failed module initialisation in\n  _io.\n- Fix memory leak in math.dist() when both points\n  don’t have the same dimension. Patch by Kumar Aditya.\n- Fix argument typechecks in _overlapped.WSAConnect()\n  and _overlapped.Overlapped.WSASendTo() functions.\n- Fix internal error in the re module which in\n  very rare circumstances prevented compilation of a regular\n  expression containing a conditional expression without the\n  “else” branch.\n- Fix asyncio.StreamWriter.drain() to call\n  protocol.connection_lost callback only once on Windows.\n- Add a mutex to unittest.mock.NonCallableMock to\n  protect concurrent access to mock attributes.\n- Fix hang on Windows in subprocess.wait_closed() in\n  asyncio with ProactorEventLoop. Patch by Kumar Aditya.\n- Fix infinite loop in unittest when a\n  self-referencing chained exception is raised\n- tkinter.Text.count() raises now an exception for\n  options starting with “-” instead of silently ignoring them.\n- On uname_result, restored expectation that _fields\n  and _asdict would include all six properties including\n  processor.\n- Update the bundled copies of pip and setuptools to\n  versions 22.3 and 65.5.0 respectively.\n- Fix bug in urllib.parse.urlparse() that causes\n  certain port numbers containing whitespace, underscores,\n  plus and minus signs, or non-ASCII digits to be incorrectly\n  accepted.\n- Allow venv to pass along PYTHON* variables to\n  ensurepip and pip when they do not impact path resolution\n- On macOS, fix a crash in syslog.syslog() in\n  multi-threaded applications. On macOS, the libc syslog()\n  function is not thread-safe, so syslog.syslog() no longer\n  releases the GIL to call it. Patch by Victor Stinner.\n- Allow BUILTINS to be a valid field name for frozen\n  dataclasses.\n- Make sure patch.dict() can be applied on async\n  functions.\n- To avoid apparent memory leaks when\n  asyncio.open_connection() raises, break reference cycles\n  generated by local exception and future instances (which has\n  exception instance as its member var). Patch by Dong Uk,\n  Kang.\n- Prevent error when activating venv in nested fish\n  instances.\n- Restrict use of sockets instead of pipes for stdin\n  of subprocesses created by asyncio to AIX platform only.\n- shutil.copytree() now applies the\n  ignore_dangling_symlinks argument recursively.\n- Fix IndexError in argparse.ArgumentParser when a\n  store_true action is given an explicit argument.\n- Document that calling variadic functions with\n  ctypes requires special care on macOS/arm64 (and possibly\n  other platforms).\n- Skip test_normalization() of test_unicodedata\n  if it fails to download NormalizationTest.txt file from\n  pythontest.net. Patch by Victor Stinner.\n- Some C API tests were moved into the new\n  Lib/test/test_capi/ directory.\n- Fix -Wimplicit-int, -Wstrict-prototypes, and\n  -Wimplicit-function-declaration compiler warnings in\n  configure checks.\n- Fix -Wimplicit-int compiler warning in configure\n  check for PTHREAD_SCOPE_SYSTEM.\n- Specify the full path to the source location for\n  make docclean (needed for cross-builds).\n- Fix NO_MISALIGNED_ACCESSES being not defined\n  for the SHA3 extension when HAVE_ALIGNED_REQUIRED is\n  set. Allowing builds on hardware that unaligned memory\n  accesses are not allowed.\n- Fix handling of module docstrings in\n  Tools/i18n/pygettext.py.\n\n- Add invalid-json.patch fixing invalid JSON in \n  Doc/howto/logging-cookbook.rst (somehow similar to gh#python/cpython#102582).\n",
            title: "Description of the patch",
         },
         {
            category: "details",
            text: "SUSE-2023-748,SUSE-SLE-Module-Python3-15-SP4-2023-748,openSUSE-SLE-15.4-2023-748",
            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-2023_0748-1.json",
         },
         {
            category: "self",
            summary: "URL for SUSE-SU-2023:0748-1",
            url: "https://www.suse.com/support/update/announcement/2023/suse-su-20230748-1/",
         },
         {
            category: "self",
            summary: "E-Mail link for SUSE-SU-2023:0748-1",
            url: "https://lists.suse.com/pipermail/sle-security-updates/2023-March/014044.html",
         },
         {
            category: "self",
            summary: "SUSE Bug 1208471",
            url: "https://bugzilla.suse.com/1208471",
         },
         {
            category: "self",
            summary: "SUSE Bug 831629",
            url: "https://bugzilla.suse.com/831629",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2015-20107 page",
            url: "https://www.suse.com/security/cve/CVE-2015-20107/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2022-37454 page",
            url: "https://www.suse.com/security/cve/CVE-2022-37454/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2022-42919 page",
            url: "https://www.suse.com/security/cve/CVE-2022-42919/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2022-45061 page",
            url: "https://www.suse.com/security/cve/CVE-2022-45061/",
         },
         {
            category: "self",
            summary: "SUSE CVE CVE-2023-24329 page",
            url: "https://www.suse.com/security/cve/CVE-2023-24329/",
         },
      ],
      title: "Security update for python310",
      tracking: {
         current_release_date: "2023-03-15T19:34:11Z",
         generator: {
            date: "2023-03-15T19:34:11Z",
            engine: {
               name: "cve-database.git:bin/generate-csaf.pl",
               version: "1",
            },
         },
         id: "SUSE-SU-2023:0748-1",
         initial_release_date: "2023-03-15T19:34:11Z",
         revision_history: [
            {
               date: "2023-03-15T19:34:11Z",
               number: "1",
               summary: "Current version",
            },
         ],
         status: "final",
         version: "1",
      },
   },
   product_tree: {
      branches: [
         {
            branches: [
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                           product_id: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-base-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-base-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-curses-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-curses-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-curses-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-dbm-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-dbm-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-dbm-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-devel-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-devel-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-devel-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-doc-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-doc-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-idle-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-idle-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-idle-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tk-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-tk-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-tk-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tools-3.10.10-150400.4.22.1.aarch64",
                        product: {
                           name: "python310-tools-3.10.10-150400.4.22.1.aarch64",
                           product_id: "python310-tools-3.10.10-150400.4.22.1.aarch64",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "aarch64",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                        product: {
                           name: "libpython3_10-1_0-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                           product_id: "libpython3_10-1_0-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                        product: {
                           name: "python310-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                           product_id: "python310-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                        product: {
                           name: "python310-base-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                           product_id: "python310-base-64bit-3.10.10-150400.4.22.1.aarch64_ilp32",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "aarch64_ilp32",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "libpython3_10-1_0-3.10.10-150400.4.22.1.i586",
                           product_id: "libpython3_10-1_0-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-base-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-base-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-curses-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-curses-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-curses-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-dbm-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-dbm-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-dbm-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-devel-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-devel-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-devel-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-doc-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-doc-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-devhelp-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-doc-devhelp-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-doc-devhelp-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-idle-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-idle-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-idle-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-testsuite-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-testsuite-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-testsuite-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tk-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-tk-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-tk-3.10.10-150400.4.22.1.i586",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tools-3.10.10-150400.4.22.1.i586",
                        product: {
                           name: "python310-tools-3.10.10-150400.4.22.1.i586",
                           product_id: "python310-tools-3.10.10-150400.4.22.1.i586",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "i586",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-base-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-base-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-curses-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-curses-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-curses-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-devel-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-devel-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-devel-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-doc-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-doc-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-idle-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-idle-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-idle-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tk-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-tk-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-tk-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tools-3.10.10-150400.4.22.1.ppc64le",
                        product: {
                           name: "python310-tools-3.10.10-150400.4.22.1.ppc64le",
                           product_id: "python310-tools-3.10.10-150400.4.22.1.ppc64le",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "ppc64le",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                           product_id: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-base-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-base-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-curses-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-curses-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-curses-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-dbm-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-dbm-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-dbm-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-devel-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-devel-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-devel-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-doc-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-doc-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-idle-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-idle-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-idle-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-testsuite-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-testsuite-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-testsuite-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tk-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-tk-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-tk-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tools-3.10.10-150400.4.22.1.s390x",
                        product: {
                           name: "python310-tools-3.10.10-150400.4.22.1.s390x",
                           product_id: "python310-tools-3.10.10-150400.4.22.1.s390x",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "s390x",
               },
               {
                  branches: [
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                           product_id: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                           product_id: "libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-32bit-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-32bit-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-32bit-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-base-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-base-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-curses-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-curses-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-curses-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-dbm-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-dbm-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-dbm-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-devel-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-devel-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-devel-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-doc-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-doc-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-idle-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-idle-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-idle-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tk-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-tk-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-tk-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                     {
                        category: "product_version",
                        name: "python310-tools-3.10.10-150400.4.22.1.x86_64",
                        product: {
                           name: "python310-tools-3.10.10-150400.4.22.1.x86_64",
                           product_id: "python310-tools-3.10.10-150400.4.22.1.x86_64",
                        },
                     },
                  ],
                  category: "architecture",
                  name: "x86_64",
               },
               {
                  branches: [
                     {
                        category: "product_name",
                        name: "SUSE Linux Enterprise Module for Python 3 15 SP4",
                        product: {
                           name: "SUSE Linux Enterprise Module for Python 3 15 SP4",
                           product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4",
                           product_identification_helper: {
                              cpe: "cpe:/o:suse:sle-module-python3:15:sp4",
                           },
                        },
                     },
                     {
                        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: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.s390x as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Python 3 15 SP4",
               product_id: "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "SUSE Linux Enterprise Module for Python 3 15 SP4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-32bit-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-32bit-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-base-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-base-32bit-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-curses-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-curses-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-dbm-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-dbm-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-devel-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-devel-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-doc-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-doc-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-doc-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-doc-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-devhelp-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-idle-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-idle-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-testsuite-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-testsuite-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-testsuite-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-testsuite-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-testsuite-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-testsuite-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-testsuite-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tk-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-tk-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.aarch64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.aarch64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.ppc64le as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.ppc64le",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.s390x as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.s390x",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
         {
            category: "default_component_of",
            full_product_name: {
               name: "python310-tools-3.10.10-150400.4.22.1.x86_64 as component of openSUSE Leap 15.4",
               product_id: "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            },
            product_reference: "python310-tools-3.10.10-150400.4.22.1.x86_64",
            relates_to_product_reference: "openSUSE Leap 15.4",
         },
      ],
   },
   vulnerabilities: [
      {
         cve: "CVE-2015-20107",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2015-20107",
            },
         ],
         notes: [
            {
               category: "general",
               text: "In Python (aka CPython) up to 3.10.8, the mailcap module does not add escape characters into commands discovered in the system mailcap file. This may allow attackers to inject shell commands into applications that call mailcap.findmatch with untrusted input (if they lack validation of user-provided filenames or arguments). The fix is also back-ported to 3.7, 3.8, 3.9",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2015-20107",
               url: "https://www.suse.com/security/cve/CVE-2015-20107",
            },
            {
               category: "external",
               summary: "SUSE Bug 1198511 for CVE-2015-20107",
               url: "https://bugzilla.suse.com/1198511",
            },
            {
               category: "external",
               summary: "SUSE Bug 1200507 for CVE-2015-20107",
               url: "https://bugzilla.suse.com/1200507",
            },
            {
               category: "external",
               summary: "SUSE Bug 1201777 for CVE-2015-20107",
               url: "https://bugzilla.suse.com/1201777",
            },
            {
               category: "external",
               summary: "SUSE Bug 1201791 for CVE-2015-20107",
               url: "https://bugzilla.suse.com/1201791",
            },
            {
               category: "external",
               summary: "SUSE Bug 1205068 for CVE-2015-20107",
               url: "https://bugzilla.suse.com/1205068",
            },
            {
               category: "external",
               summary: "SUSE Bug 1208337 for CVE-2015-20107",
               url: "https://bugzilla.suse.com/1208337",
            },
         ],
         remediations: [
            {
               category: "vendor_fix",
               details: "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
               product_ids: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 7.1,
                  baseSeverity: "HIGH",
                  vectorString: "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2023-03-15T19:34:11Z",
               details: "important",
            },
         ],
         title: "CVE-2015-20107",
      },
      {
         cve: "CVE-2022-37454",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2022-37454",
            },
         ],
         notes: [
            {
               category: "general",
               text: "The Keccak XKCP SHA-3 reference implementation before fdc6fef has an integer overflow and resultant buffer overflow that allows attackers to execute arbitrary code or eliminate expected cryptographic properties. This occurs in the sponge function interface.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2022-37454",
               url: "https://www.suse.com/security/cve/CVE-2022-37454",
            },
            {
               category: "external",
               summary: "SUSE Bug 1204577 for CVE-2022-37454",
               url: "https://bugzilla.suse.com/1204577",
            },
            {
               category: "external",
               summary: "SUSE Bug 1204966 for CVE-2022-37454",
               url: "https://bugzilla.suse.com/1204966",
            },
            {
               category: "external",
               summary: "SUSE Bug 1205836 for CVE-2022-37454",
               url: "https://bugzilla.suse.com/1205836",
            },
         ],
         remediations: [
            {
               category: "vendor_fix",
               details: "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
               product_ids: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 8.1,
                  baseSeverity: "HIGH",
                  vectorString: "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2023-03-15T19:34:11Z",
               details: "important",
            },
         ],
         title: "CVE-2022-37454",
      },
      {
         cve: "CVE-2022-42919",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2022-42919",
            },
         ],
         notes: [
            {
               category: "general",
               text: "Python 3.9.x before 3.9.16 and 3.10.x before 3.10.9 on Linux allows local privilege escalation in a non-default configuration. The Python multiprocessing library, when used with the forkserver start method on Linux, allows pickles to be deserialized from any user in the same machine local network namespace, which in many system configurations means any user on the same machine. Pickles can execute arbitrary code. Thus, this allows for local user privilege escalation to the user that any forkserver process is running as. Setting multiprocessing.util.abstract_sockets_supported to False is a workaround. The forkserver start method for multiprocessing is not the default start method. This issue is Linux specific because only Linux supports abstract namespace sockets. CPython before 3.9 does not make use of Linux abstract namespace sockets by default. Support for users manually specifying an abstract namespace socket was added as a bugfix in 3.7.8 and 3.8.3, but users would need to make specific uncommon API calls in order to do that in CPython before 3.9.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2022-42919",
               url: "https://www.suse.com/security/cve/CVE-2022-42919",
            },
            {
               category: "external",
               summary: "SUSE Bug 1204886 for CVE-2022-42919",
               url: "https://bugzilla.suse.com/1204886",
            },
         ],
         remediations: [
            {
               category: "vendor_fix",
               details: "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
               product_ids: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 7.8,
                  baseSeverity: "HIGH",
                  vectorString: "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2023-03-15T19:34:11Z",
               details: "important",
            },
         ],
         title: "CVE-2022-42919",
      },
      {
         cve: "CVE-2022-45061",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2022-45061",
            },
         ],
         notes: [
            {
               category: "general",
               text: "An issue was discovered in Python before 3.11.1. An unnecessary quadratic algorithm exists in one path when processing some inputs to the IDNA (RFC 3490) decoder, such that a crafted, unreasonably long name being presented to the decoder could lead to a CPU denial of service. Hostnames are often supplied by remote servers that could be controlled by a malicious actor; in such a scenario, they could trigger excessive CPU consumption on the client attempting to make use of an attacker-supplied supposed hostname. For example, the attack payload could be placed in the Location header of an HTTP response with status code 302. A fix is planned in 3.11.1, 3.10.9, 3.9.16, 3.8.16, and 3.7.16.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2022-45061",
               url: "https://www.suse.com/security/cve/CVE-2022-45061",
            },
            {
               category: "external",
               summary: "SUSE Bug 1205244 for CVE-2022-45061",
               url: "https://bugzilla.suse.com/1205244",
            },
            {
               category: "external",
               summary: "SUSE Bug 1211488 for CVE-2022-45061",
               url: "https://bugzilla.suse.com/1211488",
            },
         ],
         remediations: [
            {
               category: "vendor_fix",
               details: "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
               product_ids: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 6.5,
                  baseSeverity: "MEDIUM",
                  vectorString: "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2023-03-15T19:34:11Z",
               details: "moderate",
            },
         ],
         title: "CVE-2022-45061",
      },
      {
         cve: "CVE-2023-24329",
         ids: [
            {
               system_name: "SUSE CVE Page",
               text: "https://www.suse.com/security/cve/CVE-2023-24329",
            },
         ],
         notes: [
            {
               category: "general",
               text: "An issue in the urllib.parse component of Python before 3.11.4 allows attackers to bypass blocklisting methods by supplying a URL that starts with blank characters.",
               title: "CVE description",
            },
         ],
         product_status: {
            recommended: [
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
               "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
            ],
         },
         references: [
            {
               category: "external",
               summary: "CVE-2023-24329",
               url: "https://www.suse.com/security/cve/CVE-2023-24329",
            },
            {
               category: "external",
               summary: "SUSE Bug 1208471 for CVE-2023-24329",
               url: "https://bugzilla.suse.com/1208471",
            },
            {
               category: "external",
               summary: "SUSE Bug 1213553 for CVE-2023-24329",
               url: "https://bugzilla.suse.com/1213553",
            },
            {
               category: "external",
               summary: "SUSE Bug 1213554 for CVE-2023-24329",
               url: "https://bugzilla.suse.com/1213554",
            },
            {
               category: "external",
               summary: "SUSE Bug 1213839 for CVE-2023-24329",
               url: "https://bugzilla.suse.com/1213839",
            },
            {
               category: "external",
               summary: "SUSE Bug 1225672 for CVE-2023-24329",
               url: "https://bugzilla.suse.com/1225672",
            },
         ],
         remediations: [
            {
               category: "vendor_fix",
               details: "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
               product_ids: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         scores: [
            {
               cvss_v3: {
                  baseScore: 7.3,
                  baseSeverity: "HIGH",
                  vectorString: "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L",
                  version: "3.1",
               },
               products: [
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "SUSE Linux Enterprise Module for Python 3 15 SP4:python310-tools-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:libpython3_10-1_0-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:libpython3_10-1_0-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-base-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-base-32bit-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-curses-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-dbm-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-devel-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-doc-devhelp-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-idle-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-testsuite-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tk-3.10.10-150400.4.22.1.x86_64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.aarch64",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.ppc64le",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.s390x",
                  "openSUSE Leap 15.4:python310-tools-3.10.10-150400.4.22.1.x86_64",
               ],
            },
         ],
         threats: [
            {
               category: "impact",
               date: "2023-03-15T19:34:11Z",
               details: "important",
            },
         ],
         title: "CVE-2023-24329",
      },
   ],
}


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.