OPENSUSE-SU-2026:20254-1
Vulnerability from csaf_opensuse - Published: 2026-02-19 10:31 - Updated: 2026-02-19 10:31Summary
Security update for python313
Notes
Title of the patch
Security update for python313
Description of the patch
This update for python313 fixes the following issues:
Update to version 3.13.12.
Security issues fixed:
- CVE-2025-11468: header injection when folding a long comment in an email header containing exclusively unfoldable
characters (bsc#1257029).
- CVE-2025-15282: user-controlled data URLs parsed may allow injecting headers (bsc#1257046).
- CVE-2026-0672: HTTP header injection via user-controlled cookie values and parameters when using http.cookies.Morsel
(bsc#1257031).
- CVE-2026-0865: user-controlled header containing newlines can allow injecting HTTP headers (bsc#1257042).
- CVE-2026-1299: header injection when an email is serialized due to improper newline quoting in `BytesGenerator`
(bsc#1257181).
Other updates and bugfixes:
- Update to version 3.13.12.
- Library
- gh-144380: Improve performance of io.BufferedReader line
iteration by ~49%.
- gh-144169: Fix three crashes when non-string keyword
arguments are supplied to objects in the ast module.
- gh-144100: Fixed a crash in ctypes when using a deprecated
POINTER(str) type in argtypes. Instead of aborting, ctypes
now raises a proper Python exception when the pointer
target type is unresolved.
- gh-144050: Fix stat.filemode() in the pure-Python
implementation to avoid misclassifying invalid mode values
as block devices.
- gh-144023: Fixed validation of file descriptor 0 in posix
functions when used with follow_symlinks parameter.
- gh-143999: Fix an issue where inspect.getgeneratorstate()
and inspect.getcoroutinestate() could fail for generators
wrapped by types.coroutine() in the suspended state.
- gh-143706: Fix multiprocessing forkserver so that sys.argv
is correctly set before __main__ is preloaded. Previously,
sys.argv was empty during main module import in forkserver
child processes. This fixes a regression introduced in
3.13.8 and 3.14.1. Root caused by Aaron Wieczorek, test
provided by Thomas Watson, thanks!
- gh-143638: Forbid reentrant calls of the pickle.Pickler and
pickle.Unpickler methods for the C implementation.
Previously, this could cause crash or data corruption, now
concurrent calls of methods of the same object raise
RuntimeError.
- gh-78724: Raise RuntimeError's when user attempts to call
methods on half-initialized Struct objects, For example,
created by Struct.__new__(Struct). Patch by Sergey
B Kirpichev.
- gh-143602: Fix a inconsistency issue in write() that leads
to unexpected buffer overwrite by deduplicating the buffer
exports.
- gh-143547: Fix sys.unraisablehook() when the hook raises an
exception and changes sys.unraisablehook(): hold a strong
reference to the old hook. Patch by Victor Stinner.
- gh-143378: Fix use-after-free crashes when a BytesIO object
is concurrently mutated during write() or writelines().
- gh-143346: Fix incorrect wrapping of the Base64 data in
plistlib._PlistWriter when the indent contains a mix of
tabs and spaces.
- gh-143310: tkinter: fix a crash when a Python list is
mutated during the conversion to a Tcl object (e.g., when
setting a Tcl variable). Patch by Benedikt Tran.
- gh-143309: Fix a crash in os.execve() on non-Windows
platforms when given a custom environment mapping which is
then mutated during parsing. Patch by Benedikt Tran.
- gh-143308: pickle: fix use-after-free crashes when
a PickleBuffer is concurrently mutated by a custom buffer
callback during pickling. Patch by Benedikt Tran and Aaron
Wieczorek.
- gh-143237: Fix support of named pipes in the rotating
logging handlers.
- gh-143249: Fix possible buffer leaks in Windows overlapped
I/O on error handling.
- gh-143241: zoneinfo: fix infinite loop in
ZoneInfo.from_file when parsing a malformed TZif file.
Patch by Fatih Celik.
- gh-142830: sqlite3: fix use-after-free crashes when the
connection's callbacks are mutated during a callback
execution. Patch by Benedikt Tran.
- gh-143200: xml.etree.ElementTree: fix use-after-free
crashes in __getitem__() and __setitem__() methods of
Element when the element is concurrently mutated. Patch by
Benedikt Tran.
- gh-142195: Updated timeout evaluation logic in subprocess
to be compatible with deterministic environments like
Shadow where time moves exactly as requested.
- gh-143145: Fixed a possible reference leak in ctypes when
constructing results with multiple output parameters on
error.
- gh-122431: Corrected the error message in
readline.append_history_file() to state that nelements must
be non-negative instead of positive.
- gh-143004: Fix a potential use-after-free in
collections.Counter.update() when user code mutates the
Counter during an update.
- gh-143046: The asyncio REPL no longer prints copyright and
version messages in the quiet mode (-q). Patch by Bartosz
Slawecki.
- gh-140648: The asyncio REPL now respects the -I flag
(isolated mode). Previously, it would load and execute
PYTHONSTARTUP even if the flag was set. Contributed by
Bartosz Slawecki.
- gh-142991: Fixed socket operations such as recvfrom() and
sendto() for FreeBSD divert(4) socket.
- gh-143010: Fixed a bug in mailbox where the precise timing
of an external event could result in the library opening an
existing file instead of a file it expected to create.
- gh-142881: Fix concurrent and reentrant call of
atexit.unregister().
- gh-112127: Fix possible use-after-free in
atexit.unregister() when the callback is unregistered
during comparison.
- gh-142783: Fix zoneinfo use-after-free with descriptor
_weak_cache. a descriptor as _weak_cache could cause
crashes during object creation. The fix ensures proper
reference counting for descriptor-provided objects.
- gh-142754: Add the ownerDocument attribute to
xml.dom.minidom elements and attributes created by directly
instantiating the Element or Attr class. Note that this way
of creating nodes is not supported; creator functions like
xml.dom.Document.documentElement() should be used instead.
- gh-142784: The asyncio REPL now properly closes the loop
upon the end of interactive session. Previously, it could
cause surprising warnings. Contributed by Bartosz Slawecki.
- gh-142555: array: fix a crash in a[i] = v when converting
i to an index via i.__index__ or i.__float__ mutates the
array.
- gh-142594: Fix crash in TextIOWrapper.close() when the
underlying buffer's closed property calls detach().
- gh-142451: hmac: Ensure that the HMAC.block_size attribute
is correctly copied by HMAC.copy. Patch by Benedikt Tran.
- gh-142495: collections.defaultdict now prioritizes
__setitem__() when inserting default values from
default_factory. This prevents race conditions where
a default value would overwrite a value set before
default_factory returns.
- gh-142651: unittest.mock: fix a thread safety issue where
Mock.call_count may return inaccurate values when the mock
is called concurrently from multiple threads.
- gh-142595: Added type check during initialization of the
decimal module to prevent a crash in case of broken stdlib.
Patch by Sergey B Kirpichev.
- gh-142517: The non-compat32 email policies now correctly
handle refolding encoded words that contain bytes that can
not be decoded in their specified character set. Previously
this resulted in an encoding exception during folding.
- gh-112527: The help text for required options in argparse
no longer extended with "(default: None)".
- gh-142315: Pdb can now run scripts from anonymous pipes
used in process substitution. Patch by Bartosz Slawecki.
- gh-142282: Fix winreg.QueryValueEx() to not accidentally
read garbage buffer under race condition.
- gh-75949: Fix argparse to preserve | separators in mutually
exclusive groups when the usage line wraps due to length.
- gh-68552: MisplacedEnvelopeHeaderDefect and Missing header
name defects are now correctly passed to the handle_defect
method of policy in FeedParser.
- gh-142006: Fix a bug in the email.policy.default folding
algorithm which incorrectly resulted in a doubled newline
when a line ending at exactly max_line_length was followed
by an unfoldable token.
- gh-105836: Fix asyncio.run_coroutine_threadsafe() leaving
underlying cancelled asyncio task running.
- gh-139971: pydoc: Ensure that the link to the online
documentation of a stdlib module is correct.
- gh-139262: Some keystrokes can be swallowed in the new
PyREPL on Windows, especially when used together with the
ALT key. Fix by Chris Eibl.
- gh-138897: Improved license/copyright/credits display in
the REPL: now uses a pager.
- gh-79986: Add parsing for References and In-Reply-To
headers to the email library that parses the header content
as lists of message id tokens. This prevents them from
being folded incorrectly.
- gh-109263: Starting a process from spawn context in
multiprocessing no longer sets the start method globally.
- gh-90871: Fixed an off by one error concerning the backlog
parameter in create_unix_server(). Contributed by Christian
Harries.
- gh-133253: Fix thread-safety issues in linecache.
- gh-132715: Skip writing objects during marshalling once
a failure has occurred.
- gh-127529: Correct behavior of
asyncio.selector_events.BaseSelectorEventLoop._accept_connection()
in handling ConnectionAbortedError in a loop. This improves
performance on OpenBSD.
- IDLE
- gh-143774: Better explain the operation of Format / Format
Paragraph.
- Core and Builtins
- gh-144307: Prevent a reference leak in module teardown at
interpreter finalization.
- gh-144194: Fix error handling in perf jitdump
initialization on memory allocation failure.
- gh-141805: Fix crash in set when objects with the same hash
are concurrently added to the set after removing an element
with the same hash while the set still contains elements
with the same hash.
- gh-143670: Fixes a crash in ga_repr_items_list function.
- gh-143377: Fix a crash in _interpreters.capture_exception()
when the exception is incorrectly formatted. Patch by
Benedikt Tran.
- gh-143189: Fix crash when inserting a non-str key into
a split table dictionary when the key matches an existing
key in the split table but has no corresponding value in
the dict.
- gh-143228: Fix use-after-free in perf trampoline when
toggling profiling while threads are running or during
interpreter finalization with daemon threads active. The
fix uses reference counting to ensure trampolines are not
freed while any code object could still reference them.
Pach by Pablo Galindo
- gh-142664: Fix a use-after-free crash in
memoryview.__hash__ when the __hash__ method of the
referenced object mutates that object or the view. Patch by
Benedikt Tran.
- gh-142557: Fix a use-after-free crash in bytearray.__mod__
when the bytearray is mutated while formatting the %-style
arguments. Patch by Benedikt Tran.
- gh-143195: Fix use-after-free crashes in bytearray.hex()
and memoryview.hex() when the separator's __len__() mutates
the original object. Patch by Benedikt Tran.
- gh-143135: Set sys.flags.inspect to 1 when PYTHONINSPECT is
0. Previously, it was set to 0 in this case.
- gh-143003: Fix an overflow of the shared empty buffer in
bytearray.extend() when __length_hint__() returns 0 for
non-empty iterator.
- gh-143006: Fix a possible assertion error when comparing
negative non-integer float and int with the same number of
bits in the integer part.
- gh-142776: Fix a file descriptor leak in import.c
- gh-142829: Fix a use-after-free crash in
contextvars.Context comparison when a custom __eq__ method
modifies the context via set().
- gh-142766: Clear the frame of a generator when
generator.close() is called.
- gh-142737: Tracebacks will be displayed in fallback mode
even if io.open() is lost. Previously, this would crash the
interpreter. Patch by Bartosz Slawecki.
- gh-142554: Fix a crash in divmod() when
_pylong.int_divmod() does not return a tuple of length two
exactly. Patch by Benedikt Tran.
- gh-142560: Fix use-after-free in bytearray search-like
methods (find(), count(), index(), rindex(), and rfind())
by marking the storage as exported which causes
reallocation attempts to raise BufferError. For contains(),
split(), and rsplit() the buffer protocol is used for this.
- gh-142343: Fix SIGILL crash on m68k due to incorrect
assembly constraint.
- gh-141732: Ensure the __repr__() for ExceptionGroup and
BaseExceptionGroup does not change when the exception
sequence that was original passed in to its constructor is
subsequently mutated.
- gh-100964: Fix reference cycle in exhausted generator
frames. Patch by Savannah Ostrowski.
- gh-140373: Correctly emit PY_UNWIND event when generator
object is closed. Patch by Mikhail Efimov.
- gh-138568: Adjusted the built-in help() function so that
empty inputs are ignored in interactive mode.
- gh-127773: Do not use the type attribute cache for types
with incompatible MRO.
- C API
- gh-142571: PyUnstable_CopyPerfMapFile() now checks that
opening the file succeeded before flushing.
- Build
- gh-142454: When calculating the digest of the JIT stencils
input, sort the hashed files by filenames before adding
their content to the hasher. This ensures deterministic
hash input and hence deterministic hash, independent on
filesystem order.
- gh-141808: When running make clean-retain-profile, keep the
generated JIT stencils. That way, the stencils are not
generated twice when Profile-guided optimization (PGO) is
used. It also allows distributors to supply their own
pre-built JIT stencils.
- gh-138061: Ensure reproducible builds by making JIT stencil
header generation deterministic.
Patchnames
openSUSE-Leap-16.0-300
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 python313",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for python313 fixes the following issues:\n\nUpdate to version 3.13.12.\n\nSecurity issues fixed:\n\n- CVE-2025-11468: header injection when folding a long comment in an email header containing exclusively unfoldable\n characters (bsc#1257029).\n- CVE-2025-15282: user-controlled data URLs parsed may allow injecting headers (bsc#1257046).\n- CVE-2026-0672: HTTP header injection via user-controlled cookie values and parameters when using http.cookies.Morsel\n (bsc#1257031).\n- CVE-2026-0865: user-controlled header containing newlines can allow injecting HTTP headers (bsc#1257042).\n- CVE-2026-1299: header injection when an email is serialized due to improper newline quoting in `BytesGenerator`\n (bsc#1257181).\n\nOther updates and bugfixes:\n\n- Update to version 3.13.12.\n\n - Library\n\n - gh-144380: Improve performance of io.BufferedReader line\n iteration by ~49%.\n - gh-144169: Fix three crashes when non-string keyword\n arguments are supplied to objects in the ast module.\n - gh-144100: Fixed a crash in ctypes when using a deprecated\n POINTER(str) type in argtypes. Instead of aborting, ctypes\n now raises a proper Python exception when the pointer\n target type is unresolved.\n - gh-144050: Fix stat.filemode() in the pure-Python\n implementation to avoid misclassifying invalid mode values\n as block devices.\n - gh-144023: Fixed validation of file descriptor 0 in posix\n functions when used with follow_symlinks parameter.\n - gh-143999: Fix an issue where inspect.getgeneratorstate()\n and inspect.getcoroutinestate() could fail for generators\n wrapped by types.coroutine() in the suspended state.\n - gh-143706: Fix multiprocessing forkserver so that sys.argv\n is correctly set before __main__ is preloaded. Previously,\n sys.argv was empty during main module import in forkserver\n child processes. This fixes a regression introduced in\n 3.13.8 and 3.14.1. Root caused by Aaron Wieczorek, test\n provided by Thomas Watson, thanks!\n - gh-143638: Forbid reentrant calls of the pickle.Pickler and\n pickle.Unpickler methods for the C implementation.\n Previously, this could cause crash or data corruption, now\n concurrent calls of methods of the same object raise\n RuntimeError.\n - gh-78724: Raise RuntimeError\u0027s when user attempts to call\n methods on half-initialized Struct objects, For example,\n created by Struct.__new__(Struct). Patch by Sergey\n B Kirpichev.\n - gh-143602: Fix a inconsistency issue in write() that leads\n to unexpected buffer overwrite by deduplicating the buffer\n exports.\n - gh-143547: Fix sys.unraisablehook() when the hook raises an\n exception and changes sys.unraisablehook(): hold a strong\n reference to the old hook. Patch by Victor Stinner.\n - gh-143378: Fix use-after-free crashes when a BytesIO object\n is concurrently mutated during write() or writelines().\n - gh-143346: Fix incorrect wrapping of the Base64 data in\n plistlib._PlistWriter when the indent contains a mix of\n tabs and spaces.\n - gh-143310: tkinter: fix a crash when a Python list is\n mutated during the conversion to a Tcl object (e.g., when\n setting a Tcl variable). Patch by Benedikt Tran.\n - gh-143309: Fix a crash in os.execve() on non-Windows\n platforms when given a custom environment mapping which is\n then mutated during parsing. Patch by Benedikt Tran.\n - gh-143308: pickle: fix use-after-free crashes when\n a PickleBuffer is concurrently mutated by a custom buffer\n callback during pickling. Patch by Benedikt Tran and Aaron\n Wieczorek.\n - gh-143237: Fix support of named pipes in the rotating\n logging handlers.\n - gh-143249: Fix possible buffer leaks in Windows overlapped\n I/O on error handling.\n - gh-143241: zoneinfo: fix infinite loop in\n ZoneInfo.from_file when parsing a malformed TZif file.\n Patch by Fatih Celik.\n - gh-142830: sqlite3: fix use-after-free crashes when the\n connection\u0027s callbacks are mutated during a callback\n execution. Patch by Benedikt Tran.\n - gh-143200: xml.etree.ElementTree: fix use-after-free\n crashes in __getitem__() and __setitem__() methods of\n Element when the element is concurrently mutated. Patch by\n Benedikt Tran.\n - gh-142195: Updated timeout evaluation logic in subprocess\n to be compatible with deterministic environments like\n Shadow where time moves exactly as requested.\n - gh-143145: Fixed a possible reference leak in ctypes when\n constructing results with multiple output parameters on\n error.\n - gh-122431: Corrected the error message in\n readline.append_history_file() to state that nelements must\n be non-negative instead of positive.\n - gh-143004: Fix a potential use-after-free in\n collections.Counter.update() when user code mutates the\n Counter during an update.\n - gh-143046: The asyncio REPL no longer prints copyright and\n version messages in the quiet mode (-q). Patch by Bartosz\n Slawecki.\n - gh-140648: The asyncio REPL now respects the -I flag\n (isolated mode). Previously, it would load and execute\n PYTHONSTARTUP even if the flag was set. Contributed by\n Bartosz Slawecki.\n - gh-142991: Fixed socket operations such as recvfrom() and\n sendto() for FreeBSD divert(4) socket.\n - gh-143010: Fixed a bug in mailbox where the precise timing\n of an external event could result in the library opening an\n existing file instead of a file it expected to create.\n - gh-142881: Fix concurrent and reentrant call of\n atexit.unregister().\n - gh-112127: Fix possible use-after-free in\n atexit.unregister() when the callback is unregistered\n during comparison.\n - gh-142783: Fix zoneinfo use-after-free with descriptor\n _weak_cache. a descriptor as _weak_cache could cause\n crashes during object creation. The fix ensures proper\n reference counting for descriptor-provided objects.\n - gh-142754: Add the ownerDocument attribute to\n xml.dom.minidom elements and attributes created by directly\n instantiating the Element or Attr class. Note that this way\n of creating nodes is not supported; creator functions like\n xml.dom.Document.documentElement() should be used instead.\n - gh-142784: The asyncio REPL now properly closes the loop\n upon the end of interactive session. Previously, it could\n cause surprising warnings. Contributed by Bartosz Slawecki.\n - gh-142555: array: fix a crash in a[i] = v when converting\n i to an index via i.__index__ or i.__float__ mutates the\n array.\n - gh-142594: Fix crash in TextIOWrapper.close() when the\n underlying buffer\u0027s closed property calls detach().\n - gh-142451: hmac: Ensure that the HMAC.block_size attribute\n is correctly copied by HMAC.copy. Patch by Benedikt Tran.\n - gh-142495: collections.defaultdict now prioritizes\n __setitem__() when inserting default values from\n default_factory. This prevents race conditions where\n a default value would overwrite a value set before\n default_factory returns.\n - gh-142651: unittest.mock: fix a thread safety issue where\n Mock.call_count may return inaccurate values when the mock\n is called concurrently from multiple threads.\n - gh-142595: Added type check during initialization of the\n decimal module to prevent a crash in case of broken stdlib.\n Patch by Sergey B Kirpichev.\n - gh-142517: The non-compat32 email policies now correctly\n handle refolding encoded words that contain bytes that can\n not be decoded in their specified character set. Previously\n this resulted in an encoding exception during folding.\n - gh-112527: The help text for required options in argparse\n no longer extended with \"(default: None)\".\n - gh-142315: Pdb can now run scripts from anonymous pipes\n used in process substitution. Patch by Bartosz Slawecki.\n - gh-142282: Fix winreg.QueryValueEx() to not accidentally\n read garbage buffer under race condition.\n - gh-75949: Fix argparse to preserve | separators in mutually\n exclusive groups when the usage line wraps due to length.\n - gh-68552: MisplacedEnvelopeHeaderDefect and Missing header\n name defects are now correctly passed to the handle_defect\n method of policy in FeedParser.\n - gh-142006: Fix a bug in the email.policy.default folding\n algorithm which incorrectly resulted in a doubled newline\n when a line ending at exactly max_line_length was followed\n by an unfoldable token.\n - gh-105836: Fix asyncio.run_coroutine_threadsafe() leaving\n underlying cancelled asyncio task running.\n - gh-139971: pydoc: Ensure that the link to the online\n documentation of a stdlib module is correct.\n - gh-139262: Some keystrokes can be swallowed in the new\n PyREPL on Windows, especially when used together with the\n ALT key. Fix by Chris Eibl.\n - gh-138897: Improved license/copyright/credits display in\n the REPL: now uses a pager.\n - gh-79986: Add parsing for References and In-Reply-To\n headers to the email library that parses the header content\n as lists of message id tokens. This prevents them from\n being folded incorrectly.\n - gh-109263: Starting a process from spawn context in\n multiprocessing no longer sets the start method globally.\n - gh-90871: Fixed an off by one error concerning the backlog\n parameter in create_unix_server(). Contributed by Christian\n Harries.\n - gh-133253: Fix thread-safety issues in linecache.\n - gh-132715: Skip writing objects during marshalling once\n a failure has occurred.\n - gh-127529: Correct behavior of\n asyncio.selector_events.BaseSelectorEventLoop._accept_connection()\n in handling ConnectionAbortedError in a loop. This improves\n performance on OpenBSD.\n\n - IDLE\n\n - gh-143774: Better explain the operation of Format / Format\n Paragraph.\n\n - Core and Builtins\n\n - gh-144307: Prevent a reference leak in module teardown at\n interpreter finalization.\n - gh-144194: Fix error handling in perf jitdump\n initialization on memory allocation failure.\n - gh-141805: Fix crash in set when objects with the same hash\n are concurrently added to the set after removing an element\n with the same hash while the set still contains elements\n with the same hash.\n - gh-143670: Fixes a crash in ga_repr_items_list function.\n - gh-143377: Fix a crash in _interpreters.capture_exception()\n when the exception is incorrectly formatted. Patch by\n Benedikt Tran.\n - gh-143189: Fix crash when inserting a non-str key into\n a split table dictionary when the key matches an existing\n key in the split table but has no corresponding value in\n the dict.\n - gh-143228: Fix use-after-free in perf trampoline when\n toggling profiling while threads are running or during\n interpreter finalization with daemon threads active. The\n fix uses reference counting to ensure trampolines are not\n freed while any code object could still reference them.\n Pach by Pablo Galindo\n - gh-142664: Fix a use-after-free crash in\n memoryview.__hash__ when the __hash__ method of the\n referenced object mutates that object or the view. Patch by\n Benedikt Tran.\n - gh-142557: Fix a use-after-free crash in bytearray.__mod__\n when the bytearray is mutated while formatting the %-style\n arguments. Patch by Benedikt Tran.\n - gh-143195: Fix use-after-free crashes in bytearray.hex()\n and memoryview.hex() when the separator\u0027s __len__() mutates\n the original object. Patch by Benedikt Tran.\n - gh-143135: Set sys.flags.inspect to 1 when PYTHONINSPECT is\n 0. Previously, it was set to 0 in this case.\n - gh-143003: Fix an overflow of the shared empty buffer in\n bytearray.extend() when __length_hint__() returns 0 for\n non-empty iterator.\n - gh-143006: Fix a possible assertion error when comparing\n negative non-integer float and int with the same number of\n bits in the integer part.\n - gh-142776: Fix a file descriptor leak in import.c\n - gh-142829: Fix a use-after-free crash in\n contextvars.Context comparison when a custom __eq__ method\n modifies the context via set().\n - gh-142766: Clear the frame of a generator when\n generator.close() is called.\n - gh-142737: Tracebacks will be displayed in fallback mode\n even if io.open() is lost. Previously, this would crash the\n interpreter. Patch by Bartosz Slawecki.\n - gh-142554: Fix a crash in divmod() when\n _pylong.int_divmod() does not return a tuple of length two\n exactly. Patch by Benedikt Tran.\n - gh-142560: Fix use-after-free in bytearray search-like\n methods (find(), count(), index(), rindex(), and rfind())\n by marking the storage as exported which causes\n reallocation attempts to raise BufferError. For contains(),\n split(), and rsplit() the buffer protocol is used for this.\n - gh-142343: Fix SIGILL crash on m68k due to incorrect\n assembly constraint.\n - gh-141732: Ensure the __repr__() for ExceptionGroup and\n BaseExceptionGroup does not change when the exception\n sequence that was original passed in to its constructor is\n subsequently mutated.\n - gh-100964: Fix reference cycle in exhausted generator\n frames. Patch by Savannah Ostrowski.\n - gh-140373: Correctly emit PY_UNWIND event when generator\n object is closed. Patch by Mikhail Efimov.\n - gh-138568: Adjusted the built-in help() function so that\n empty inputs are ignored in interactive mode.\n - gh-127773: Do not use the type attribute cache for types\n with incompatible MRO.\n\n - C API\n\n - gh-142571: PyUnstable_CopyPerfMapFile() now checks that\n opening the file succeeded before flushing.\n\n - Build\n\n - gh-142454: When calculating the digest of the JIT stencils\n input, sort the hashed files by filenames before adding\n their content to the hasher. This ensures deterministic\n hash input and hence deterministic hash, independent on\n filesystem order.\n - gh-141808: When running make clean-retain-profile, keep the\n generated JIT stencils. That way, the stencils are not\n generated twice when Profile-guided optimization (PGO) is\n used. It also allows distributors to supply their own\n pre-built JIT stencils.\n - gh-138061: Ensure reproducible builds by making JIT stencil\n header generation deterministic.\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Leap-16.0-300",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_20254-1.json"
},
{
"category": "self",
"summary": "SUSE Bug 1257029",
"url": "https://bugzilla.suse.com/1257029"
},
{
"category": "self",
"summary": "SUSE Bug 1257031",
"url": "https://bugzilla.suse.com/1257031"
},
{
"category": "self",
"summary": "SUSE Bug 1257042",
"url": "https://bugzilla.suse.com/1257042"
},
{
"category": "self",
"summary": "SUSE Bug 1257046",
"url": "https://bugzilla.suse.com/1257046"
},
{
"category": "self",
"summary": "SUSE Bug 1257181",
"url": "https://bugzilla.suse.com/1257181"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-11468 page",
"url": "https://www.suse.com/security/cve/CVE-2025-11468/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-15282 page",
"url": "https://www.suse.com/security/cve/CVE-2025-15282/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0672 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0672/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0865 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0865/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-1299 page",
"url": "https://www.suse.com/security/cve/CVE-2026-1299/"
}
],
"title": "Security update for python313",
"tracking": {
"current_release_date": "2026-02-19T10:31:04Z",
"generator": {
"date": "2026-02-19T10:31:04Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:20254-1",
"initial_release_date": "2026-02-19T10:31:04Z",
"revision_history": [
{
"date": "2026-02-19T10:31:04Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"product": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"product_id": "libpython3_13-1_0-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-3.13.12-160000.1.1.aarch64",
"product_id": "python313-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-base-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-base-3.13.12-160000.1.1.aarch64",
"product_id": "python313-base-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-curses-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-curses-3.13.12-160000.1.1.aarch64",
"product_id": "python313-curses-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-dbm-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-dbm-3.13.12-160000.1.1.aarch64",
"product_id": "python313-dbm-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-devel-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-devel-3.13.12-160000.1.1.aarch64",
"product_id": "python313-devel-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-doc-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-doc-3.13.12-160000.1.1.aarch64",
"product_id": "python313-doc-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"product_id": "python313-doc-devhelp-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-idle-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-idle-3.13.12-160000.1.1.aarch64",
"product_id": "python313-idle-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-testsuite-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-testsuite-3.13.12-160000.1.1.aarch64",
"product_id": "python313-testsuite-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-tk-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-tk-3.13.12-160000.1.1.aarch64",
"product_id": "python313-tk-3.13.12-160000.1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-tools-3.13.12-160000.1.1.aarch64",
"product": {
"name": "python313-tools-3.13.12-160000.1.1.aarch64",
"product_id": "python313-tools-3.13.12-160000.1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"product_id": "libpython3_13-1_0-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"product_id": "libpython3_13t1_0-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-base-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-base-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-base-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-curses-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-curses-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-curses-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-dbm-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-dbm-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-dbm-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-devel-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-devel-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-devel-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-doc-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-doc-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-doc-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-doc-devhelp-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-idle-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-idle-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-idle-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-base-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-curses-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-dbm-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-devel-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-idle-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-tk-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-nogil-tools-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-testsuite-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-testsuite-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-testsuite-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-tk-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-tk-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-tk-3.13.12-160000.1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-tools-3.13.12-160000.1.1.ppc64le",
"product": {
"name": "python313-tools-3.13.12-160000.1.1.ppc64le",
"product_id": "python313-tools-3.13.12-160000.1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"product": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"product_id": "libpython3_13-1_0-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"product": {
"name": "libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"product_id": "libpython3_13t1_0-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-3.13.12-160000.1.1.s390x",
"product_id": "python313-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-base-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-base-3.13.12-160000.1.1.s390x",
"product_id": "python313-base-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-curses-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-curses-3.13.12-160000.1.1.s390x",
"product_id": "python313-curses-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-dbm-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-dbm-3.13.12-160000.1.1.s390x",
"product_id": "python313-dbm-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-devel-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-devel-3.13.12-160000.1.1.s390x",
"product_id": "python313-devel-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-doc-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-doc-3.13.12-160000.1.1.s390x",
"product_id": "python313-doc-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"product_id": "python313-doc-devhelp-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-idle-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-idle-3.13.12-160000.1.1.s390x",
"product_id": "python313-idle-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-base-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-base-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-base-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-curses-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-curses-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-curses-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-dbm-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-devel-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-devel-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-devel-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-idle-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-idle-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-idle-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-testsuite-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-tk-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-tk-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-tk-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-nogil-tools-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-nogil-tools-3.13.12-160000.1.1.s390x",
"product_id": "python313-nogil-tools-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-testsuite-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-testsuite-3.13.12-160000.1.1.s390x",
"product_id": "python313-testsuite-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-tk-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-tk-3.13.12-160000.1.1.s390x",
"product_id": "python313-tk-3.13.12-160000.1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-tools-3.13.12-160000.1.1.s390x",
"product": {
"name": "python313-tools-3.13.12-160000.1.1.s390x",
"product_id": "python313-tools-3.13.12-160000.1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"product": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"product_id": "libpython3_13-1_0-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"product": {
"name": "libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"product_id": "libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"product": {
"name": "libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"product_id": "libpython3_13t1_0-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-3.13.12-160000.1.1.x86_64",
"product_id": "python313-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-base-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-base-3.13.12-160000.1.1.x86_64",
"product_id": "python313-base-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"product_id": "python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-curses-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-curses-3.13.12-160000.1.1.x86_64",
"product_id": "python313-curses-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-dbm-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-dbm-3.13.12-160000.1.1.x86_64",
"product_id": "python313-dbm-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-devel-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-devel-3.13.12-160000.1.1.x86_64",
"product_id": "python313-devel-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-doc-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-doc-3.13.12-160000.1.1.x86_64",
"product_id": "python313-doc-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"product_id": "python313-doc-devhelp-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-idle-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-idle-3.13.12-160000.1.1.x86_64",
"product_id": "python313-idle-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-base-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-base-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-base-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-curses-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-dbm-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-devel-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-idle-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-testsuite-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-tk-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"product_id": "python313-nogil-tools-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-testsuite-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-testsuite-3.13.12-160000.1.1.x86_64",
"product_id": "python313-testsuite-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-tk-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-tk-3.13.12-160000.1.1.x86_64",
"product_id": "python313-tk-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-tools-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-tools-3.13.12-160000.1.1.x86_64",
"product_id": "python313-tools-3.13.12-160000.1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-x86-64-v3-3.13.12-160000.1.1.x86_64",
"product": {
"name": "python313-x86-64-v3-3.13.12-160000.1.1.x86_64",
"product_id": "python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Leap 16.0",
"product": {
"name": "openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0"
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64"
},
"product_reference": "libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x"
},
"product_reference": "libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13-1_0-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64"
},
"product_reference": "libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64"
},
"product_reference": "libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13t1_0-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13t1_0-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x"
},
"product_reference": "libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpython3_13t1_0-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64"
},
"product_reference": "libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-base-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-base-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-base-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-base-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-base-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-base-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-base-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-base-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-curses-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-curses-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-curses-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-curses-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-curses-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-curses-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-curses-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-curses-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dbm-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-dbm-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dbm-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-dbm-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dbm-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-dbm-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dbm-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-dbm-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-devel-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-devel-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-devel-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-devel-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-devel-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-devel-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-devel-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-devel-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-doc-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-doc-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-doc-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-doc-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-doc-devhelp-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-idle-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-idle-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-idle-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-idle-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-idle-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-idle-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-idle-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-idle-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-base-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-base-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-base-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-base-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-base-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-curses-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-curses-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-curses-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-curses-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-dbm-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-dbm-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-dbm-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-devel-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-devel-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-devel-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-devel-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-idle-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-idle-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-idle-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-idle-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-testsuite-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-tk-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-tk-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-tk-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-tk-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-tools-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-tools-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-nogil-tools-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-nogil-tools-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-testsuite-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-testsuite-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-testsuite-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-testsuite-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-testsuite-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-testsuite-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-testsuite-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-testsuite-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tk-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-tk-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tk-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-tk-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tk-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-tk-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tk-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-tk-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tools-3.13.12-160000.1.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64"
},
"product_reference": "python313-tools-3.13.12-160000.1.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tools-3.13.12-160000.1.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le"
},
"product_reference": "python313-tools-3.13.12-160000.1.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tools-3.13.12-160000.1.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x"
},
"product_reference": "python313-tools-3.13.12-160000.1.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-tools-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-tools-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-x86-64-v3-3.13.12-160000.1.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
},
"product_reference": "python313-x86-64-v3-3.13.12-160000.1.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-11468",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-11468"
}
],
"notes": [
{
"category": "general",
"text": "When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-11468",
"url": "https://www.suse.com/security/cve/CVE-2025-11468"
},
{
"category": "external",
"summary": "SUSE Bug 1257029 for CVE-2025-11468",
"url": "https://bugzilla.suse.com/1257029"
}
],
"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": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-19T10:31:04Z",
"details": "important"
}
],
"title": "CVE-2025-11468"
},
{
"cve": "CVE-2025-15282",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-15282"
}
],
"notes": [
{
"category": "general",
"text": "User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-15282",
"url": "https://www.suse.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "SUSE Bug 1257046 for CVE-2025-15282",
"url": "https://bugzilla.suse.com/1257046"
}
],
"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": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-19T10:31:04Z",
"details": "moderate"
}
],
"title": "CVE-2025-15282"
},
{
"cve": "CVE-2026-0672",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0672"
}
],
"notes": [
{
"category": "general",
"text": "When using http.cookies.Morsel, user-controlled cookie values and parameters can allow injecting HTTP headers into messages. Patch rejects all control characters within cookie names, values, and parameters.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0672",
"url": "https://www.suse.com/security/cve/CVE-2026-0672"
},
{
"category": "external",
"summary": "SUSE Bug 1257031 for CVE-2026-0672",
"url": "https://bugzilla.suse.com/1257031"
}
],
"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": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-19T10:31:04Z",
"details": "important"
}
],
"title": "CVE-2026-0672"
},
{
"cve": "CVE-2026-0865",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0865"
}
],
"notes": [
{
"category": "general",
"text": "User-controlled header names and values containing newlines can allow injecting HTTP headers.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0865",
"url": "https://www.suse.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "SUSE Bug 1257042 for CVE-2026-0865",
"url": "https://bugzilla.suse.com/1257042"
}
],
"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": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-19T10:31:04Z",
"details": "moderate"
}
],
"title": "CVE-2026-0865"
},
{
"cve": "CVE-2026-1299",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-1299"
}
],
"notes": [
{
"category": "general",
"text": "The \nemail module, specifically the \"BytesGenerator\" class, didn\u0027t properly quote newlines for email headers when \nserializing an email message allowing for header injection when an email\n is serialized. This is only applicable if using \"LiteralHeader\" writing headers that don\u0027t respect email folding rules, the new behavior will reject the incorrectly folded headers in \"BytesGenerator\".",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-1299",
"url": "https://www.suse.com/security/cve/CVE-2026-1299"
},
{
"category": "external",
"summary": "SUSE Bug 1257181 for CVE-2026-1299",
"url": "https://bugzilla.suse.com/1257181"
}
],
"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": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13-1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13-1_0-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:libpython3_13t1_0-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-base-x86-64-v3-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-doc-devhelp-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-base-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-curses-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-dbm-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-devel-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-idle-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-nogil-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-testsuite-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tk-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.aarch64",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.ppc64le",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.s390x",
"openSUSE Leap 16.0:python313-tools-3.13.12-160000.1.1.x86_64",
"openSUSE Leap 16.0:python313-x86-64-v3-3.13.12-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-19T10:31:04Z",
"details": "important"
}
],
"title": "CVE-2026-1299"
}
]
}
Loading…
Loading…
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…