<div class="container">
<h1>Security update for mockito, snakeyaml, testng</h1>
<table class="table table-striped table-bordered">
<tbody>
<tr>
<th>Announcement ID:</th>
<td>SUSE-SU-2024:2568-1</td>
</tr>
<tr>
<th>Rating:</th>
<td>important</td>
</tr>
<tr>
<th>References:</th>
<td>
<ul>
<li style="display: inline;">
<a href="https://bugzilla.suse.com/show_bug.cgi?id=1205628">bsc#1205628</a>
</li>
</ul>
</td>
</tr>
<tr>
<th>
Cross-References:
</th>
<td>
<ul>
<li style="display: inline;">
<a href="https://www.suse.com/security/cve/CVE-2022-4065.html">CVE-2022-4065</a>
</li>
</ul>
</td>
</tr>
<tr>
<th>CVSS scores:</th>
<td>
<ul class="list-group">
<li class="list-group-item">
<span class="cvss-reference">CVE-2022-4065</span>
<span class="cvss-source">
(
SUSE
):
</span>
<span class="cvss-score">8.8</span>
<span class="cvss-vector">CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H</span>
</li>
<li class="list-group-item">
<span class="cvss-reference">CVE-2022-4065</span>
<span class="cvss-source">
(
NVD
):
</span>
<span class="cvss-score">7.8</span>
<span class="cvss-vector">CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H</span>
</li>
<li class="list-group-item">
<span class="cvss-reference">CVE-2022-4065</span>
<span class="cvss-source">
(
NVD
):
</span>
<span class="cvss-score">5.5</span>
<span class="cvss-vector">CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:L</span>
</li>
</ul>
</td>
</tr>
<tr>
<th>Affected Products:</th>
<td>
<ul class="list-group">
<li class="list-group-item">Development Tools Module 15-SP5</li>
<li class="list-group-item">Development Tools Module 15-SP6</li>
<li class="list-group-item">openSUSE Leap 15.5</li>
<li class="list-group-item">openSUSE Leap 15.6</li>
<li class="list-group-item">SUSE Enterprise Storage 7.1</li>
<li class="list-group-item">SUSE Linux Enterprise Desktop 15 SP4 LTSS 15-SP4</li>
<li class="list-group-item">SUSE Linux Enterprise Desktop 15 SP5</li>
<li class="list-group-item">SUSE Linux Enterprise Desktop 15 SP6</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing 15 SP2</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing 15 SP2 LTSS 15-SP2</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing 15 SP3</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing 15 SP4</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing 15 SP5</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing LTSS 15 SP3</li>
<li class="list-group-item">SUSE Linux Enterprise High Performance Computing LTSS 15 SP4</li>
<li class="list-group-item">SUSE Linux Enterprise Real Time 15 SP5</li>
<li class="list-group-item">SUSE Linux Enterprise Real Time 15 SP6</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP2</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP2 LTSS 15-SP2</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP3</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP3 LTSS 15-SP3</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP4</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP4 LTSS 15-SP4</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP5</li>
<li class="list-group-item">SUSE Linux Enterprise Server 15 SP6</li>
<li class="list-group-item">SUSE Linux Enterprise Server for SAP Applications 15 SP2</li>
<li class="list-group-item">SUSE Linux Enterprise Server for SAP Applications 15 SP3</li>
<li class="list-group-item">SUSE Linux Enterprise Server for SAP Applications 15 SP4</li>
<li class="list-group-item">SUSE Linux Enterprise Server for SAP Applications 15 SP5</li>
<li class="list-group-item">SUSE Linux Enterprise Server for SAP Applications 15 SP6</li>
<li class="list-group-item">SUSE Manager Server 4.3</li>
<li class="list-group-item">SUSE Manager Server 4.3 Module 4.3</li>
<li class="list-group-item">SUSE Package Hub 15 15-SP6</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>An update that solves one vulnerability can now be installed.</p>
<h2>Description:</h2>
<p>This update for mockito, snakeyaml, testng fixes the following issues:</p>
<p>mockito was updated to version 5.11.0:</p>
<ul>
<li>Added bundle manifest to the mockito-core artifact</li>
<li>Mockito 5 is making core changes to ensure compatibility with future JDK versions.</li>
<li>
<p>Switch the Default MockMaker to mockito-inline (not applicable to mockito-android)</p>
</li>
<li>
<p>Mockito 2.7.6 introduced the mockito-inline mockmaker based on the "inline bytecode" principle, offering
compatibility advantages over the subclass mockmaker</p>
</li>
<li>
<p>This change avoids JDK restrictions, such as violating module boundaries and leaking subclass creation</p>
</li>
<li>
<p>Legitimate use cases for the subclass mockmaker:</p>
</li>
<li>
<p>Scenarios where the inline mockmaker does not function, such as on Graal VM's native image</p>
</li>
<li>If avoiding mocking final classes, the subclass mockmaker remains a viable option, although issues may arise on
JDK 17+</li>
<li>
<p>Mockito aims to support both mockmakers, allowing users to choose based on their requirements.</p>
</li>
<li>
<p>Update the Minimum Supported Java Version to 11</p>
</li>
<li>
<p>Mockito 5 raised the minimum supported Java version to 11</p>
</li>
<li>Community member @reta contributed to this change.</li>
<li>
<p>Users still on JDK 8 can continue using Mockito 4, with minimal API differences between versions</p>
</li>
<li>
<p>New type() Method on ArgumentMatcher</p>
</li>
<li>
<p>The ArgumentMatcher interface now includes a new type() method to support varargs methods, addressing previous
limitations</p>
</li>
<li>Users can now differentiate between matching calls with any exact number of arguments or match any number of
arguments</li>
<li>Mockito 5 provides a default implementation of the new method, ensuring backward compatibility.</li>
<li>No obligation for users to implement the new method; Mockito 5 considers Void.type by default for varargs handling</li>
<li>
<p>ArgumentCaptor is now fully type-aware, enabling capturing specific subclasses on a generic method.</p>
</li>
<li>
<p>byte-buddy does not bundle asm, but uses objectweb-asm as external library</p>
</li>
</ul>
<p>snake-yaml was updated to version 2.2:</p>
<ul>
<li>
<p>Changes of version 2.2:</p>
</li>
<li>
<p>Define default scalar style as PLAIN (for polyglot Maven)</p>
</li>
<li>
<p>Add missing 'exports org.yaml.snakeyaml.inspector' to module-info.java</p>
</li>
<li>
<p>Changes of version 2.1:</p>
</li>
<li>
<p>Heavy Allocation in Emitter.analyzeScalar(String) due to Regex Overhead</p>
</li>
<li>Use identity in toString() for sequences to avoid OutOfMemoryError</li>
<li>NumberFormatException from SnakeYAML due to int overflow for corrupt YAML version</li>
<li>Document size limit should be applied to single document notthe whole input stream</li>
<li>Detect invalid Unicode code point (thanks to Tatu Saloranta)</li>
<li>
<p>Remove Trusted*Inspector classes from main sources tree</p>
</li>
<li>
<p>Changes of version 2.0:</p>
</li>
<li>
<p>Rollback to Java 7 target</p>
</li>
<li>Add module-info.java</li>
<li>Migrate to Java 8</li>
<li>Remove many deprecated constructors</li>
<li>Remove long deprecated methods in FlowStyle</li>
<li>Do not allow global tags by default</li>
<li>Yaml.LoadAs() signature to support Class<? super T> type instead of Class<T></li>
<li>CustomClassLoaderConstructor takes LoaderOptions</li>
<li>Check input parameters for non-null values</li>
</ul>
<p>testng was updated to version 7.10.1:</p>
<ul>
<li>
<p>Security issues fixed:</p>
</li>
<li>
<p>CVE-2022-4065: Fixed Zip Slip Vulnerability (bsc#1205628)</p>
</li>
<li>
<p>Changes of version 7.10.1:</p>
</li>
<li>
<p>Fixed maven build with junit5</p>
</li>
<li>
<p>Changes of version 7.10.0:</p>
</li>
<li>
<p>Minor discrepancy fixes</p>
</li>
<li>Deleting TestNG eclipse plugin specific classes</li>
<li>Remove deprecated JUnit related support in TestNG</li>
<li>Handle exceptions in emailable Reporter</li>
<li>Added wrapperbot and update workflow order</li>
<li>Support ITestNGFactory customisation</li>
<li>Streamlined data provider listener invocation</li>
<li>Streamlined Guice Module creation in concurrency.</li>
<li>Copy test result attributes when unexpected failures</li>
<li>chore: use explicit dependency versions instead of refreshVersions</li>
<li>Removed Ant</li>
<li>Support ordering of listeners</li>
<li>Added errorprone</li>
<li>Allow custom thread pool executors to be wired in.</li>
<li>Allow data providers to be non cacheable</li>
<li>Use Locks instead of synchronised keyword</li>
<li>Document pgp artifact signing keys</li>
<li>Added Unique Id for all test class instances</li>
<li>Added issue management workflows</li>
<li>Map object to configurations</li>
<li>Allow listeners to be disabled at runtime</li>
<li>Streamlined Data Provider execution</li>
<li>Honour inheritance when parsing listener factories</li>
<li>Tweaks around accessing SuiteResult</li>
<li>Streamlined random generation</li>
<li>
<p>Streamlined dependencies for configurations</p>
</li>
<li>
<p>Changes of version 7.9.0:</p>
</li>
<li>
<p>Fixed maps containing nulls can be incorrectly considered equal</p>
</li>
<li>Test Results as artifacts for failed runs</li>
<li>Fixed data races</li>
<li>Dont honour params specified in suite-file tag</li>
<li>Decouple SuiteRunner and TestRunner</li>
<li>Disable Native DI for BeforeSuite methods</li>
<li>Streamlined running Parallel Dataproviders+retries</li>
<li>Removed extra whitespace in log for Configuration.createMethods()</li>
<li>Added the link for TestNG Documentation's GitHub Repo in README.md</li>
<li>FirstTimeOnlyConfig methods + Listener invocations</li>
<li>Added overrideGroupsFromCliInParentChildXml test</li>
<li>Ensure thread safety for attribute access</li>
<li>Added @inherited to the Listeners annotation</li>
<li>Restrict Group inheritance to Before|AfterGroups</li>
<li>Ensure ITestResult injected to @AfterMethod is apt</li>
<li>Support suite level thread pools for data provider</li>
<li>Favour CompletableFuture instead of PoolService</li>
<li>Favour FutureTask for concurrency support</li>
<li>Shared Threadpool for normal/datadriven tests.</li>
<li>
<p>Abort for invalid combinations</p>
</li>
<li>
<p>Changes of version 7.8.0:</p>
</li>
<li>
<p>[Feature] Not exception but warning if some (not all) of the given test names are not found in suite files.</p>
</li>
<li>[Feature] Generate testng-results.xml per test suite</li>
<li>[Feature] Allow test classes to define "configfailurepolicy" at a per class level</li>
<li>XmlTest index is not set for test suites invoked with YAML</li>
<li>Listener's onAfterClass is called before @afterclass configuration methods are executed.</li>
<li>After upgrading to TestNG 7.5.0, setting ITestResult.status to FAILURE doesn't fail the test anymore</li>
<li>JUnitReportReporter should capture the test case output at the test case level</li>
<li>TestNG.xml doesn't honour Parallel value of a clone</li>
<li>before configuration and before invocation should be 'SKIP' when beforeMethod is 'skip'</li>
<li>Test listeners specified in parent testng.xml file are not included in testng-failed.xml file</li>
<li>Discrepancies with DataProvider and Retry of failed tests</li>
<li>Skipped Tests with DataProvider appear as failed</li>
<li>testng-results xml reports config skips from base classes as ignored</li>
<li>Feature: Check that specific object present in List</li>
<li>
<p>Upgraded snakeyaml to 2.0</p>
</li>
<li>
<p>Changes of version 7.7.1:</p>
</li>
<li>
<p>Streamline overloaded assertion methods for Groovy</p>
</li>
<li>
<p>Changes of version 7.7.0:</p>
</li>
<li>
<p>Replace FindBugs by SpotBugs</p>
</li>
<li>Gradle: Drop forUseAtConfigurationTime()</li>
<li>Added ability to provide custom message to assertThrows\expectThrows methods</li>
<li>Only resolve hostname once</li>
<li>Prevent overlogging of debug msgs in Graph impl</li>
<li>Streamlined dataprovider invoking in abstract classes</li>
<li>Streamlined TestResult due to expectedExceptions</li>
<li>Unexpected test runs count with retry analyzer</li>
<li>Make PackageUtils compliant with JPMS</li>
<li>Ability to retry a data provider during failures</li>
<li>Fixing bug with DataProvider retry</li>
<li>Added config key for callback discrepancy behavior</li>
<li>Fixed FileAlreadyExistsException error on copy</li>
<li>JarFileUtils.delete(File f) throw actual exception (instead of FileNotFound) when file cannot be deleted #2825</li>
<li>Changing assertion message of the osgitest</li>
<li>Enhancing the Matrix</li>
<li>Avoid Compilation errors on Semeru JDK flavour.</li>
<li>Add addition yml extension</li>
<li>Support getting dependencies info for a test</li>
<li>Honour regex in dependsOnMethods</li>
<li>Ensure All tests run all the time</li>
<li>Deprecate support for running Spock Tests</li>
<li>Streamline dependsOnMethods for configurations</li>
<li>Ensure ITestContext available for JUnit4 tests</li>
<li>Deprecate support for running JUnit tests</li>
<li>Changes of 7.6.1</li>
<li>Fix Files.copy() such that parent dirs are created</li>
<li>
<p>Remove deprecated utility methods</p>
</li>
<li>
<p>Changes of version 7.6.0:</p>
</li>
<li>
<p>Remove redundant Parameter implementation</p>
</li>
<li>Upgraded to JDK11</li>
<li>Move SimpleBaseTest to be Kotlin based</li>
<li>Restore testnames when using suites in suite.</li>
<li>Moving ClassHelperTests into Kotlin</li>
<li>IHookable and IConfigurable callback discrepancy</li>
<li>Minor refactoring</li>
<li>Add additional condition for assertEqualsNoOrder</li>
<li>beforeConfiguration() listener method should be invoked for skipped configurations as well</li>
<li>Keep the initial order of listeners</li>
<li>SuiteRunner could not be initial by default Configuration</li>
<li>Enable Dataprovider failures to be considered.</li>
<li>BeforeGroups should run before any matched test</li>
<li>Fixed possible StringIndexOutOfBoundsException exception in XmlReporter</li>
<li>DataProvider: possibility to unload dataprovider class, when done with it</li>
<li>Fixed possibilty that AfterGroups method is invoked before all tests</li>
<li>Fixed equals implementation for WrappedTestNGMethod</li>
<li>Wire-In listeners consistently</li>
<li>Streamline AfterClass invocation</li>
<li>Show FQMN for tests in console</li>
<li>Honour custom attribute values in TestNG default reports</li>
</ul>
<h2>Patch Instructions:</h2>
<p>
To install this SUSE update use the SUSE recommended
installation methods like YaST online_update or "zypper patch".<br/>
Alternatively you can run the command listed for your product:
</p>
<ul class="list-group">
<li class="list-group-item">
openSUSE Leap 15.5
<br/>
<code>zypper in -t patch openSUSE-SLE-15.5-2024-2568=1</code>
</li>
<li class="list-group-item">
openSUSE Leap 15.6
<br/>
<code>zypper in -t patch openSUSE-SLE-15.6-2024-2568=1</code>
</li>
<li class="list-group-item">
Development Tools Module 15-SP5
<br/>
<code>zypper in -t patch SUSE-SLE-Module-Development-Tools-15-SP5-2024-2568=1</code>
</li>
<li class="list-group-item">
Development Tools Module 15-SP6
<br/>
<code>zypper in -t patch SUSE-SLE-Module-Development-Tools-15-SP6-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Package Hub 15 15-SP6
<br/>
<code>zypper in -t patch SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Manager Server 4.3 Module 4.3
<br/>
<code>zypper in -t patch SUSE-SLE-Module-SUSE-Manager-Server-4.3-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise High Performance Computing 15 SP2 LTSS 15-SP2
<br/>
<code>zypper in -t patch SUSE-SLE-Product-HPC-15-SP2-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise High Performance Computing LTSS 15 SP3
<br/>
<code>zypper in -t patch SUSE-SLE-Product-HPC-15-SP3-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4
<br/>
<code>zypper in -t patch SUSE-SLE-Product-HPC-15-SP4-ESPOS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise High Performance Computing LTSS 15 SP4
<br/>
<code>zypper in -t patch SUSE-SLE-Product-HPC-15-SP4-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Desktop 15 SP4 LTSS 15-SP4
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLED-15-SP4-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Server 15 SP2 LTSS 15-SP2
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLES-15-SP2-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Server 15 SP3 LTSS 15-SP3
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLES-15-SP3-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Server 15 SP4 LTSS 15-SP4
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLES-15-SP4-LTSS-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Server for SAP Applications 15 SP2
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLES_SAP-15-SP2-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Server for SAP Applications 15 SP3
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLES_SAP-15-SP3-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Linux Enterprise Server for SAP Applications 15 SP4
<br/>
<code>zypper in -t patch SUSE-SLE-Product-SLES_SAP-15-SP4-2024-2568=1</code>
</li>
<li class="list-group-item">
SUSE Enterprise Storage 7.1
<br/>
<code>zypper in -t patch SUSE-Storage-7.1-2024-2568=1</code>
</li>
</ul>
<h2>Package List:</h2>
<ul>
<li>
openSUSE Leap 15.5 (noarch)
<ul>
<li>snakeyaml-2.2-150200.3.15.1</li>
<li>mockito-5.11.0-150200.3.7.1</li>
<li>mockito-javadoc-5.11.0-150200.3.7.1</li>
<li>snakeyaml-javadoc-2.2-150200.3.15.1</li>
<li>testng-javadoc-7.10.1-150200.3.10.1</li>
<li>testng-7.10.1-150200.3.10.1</li>
</ul>
</li>
<li>
openSUSE Leap 15.6 (noarch)
<ul>
<li>snakeyaml-2.2-150200.3.15.1</li>
<li>mockito-5.11.0-150200.3.7.1</li>
<li>mockito-javadoc-5.11.0-150200.3.7.1</li>
<li>snakeyaml-javadoc-2.2-150200.3.15.1</li>
<li>testng-javadoc-7.10.1-150200.3.10.1</li>
<li>testng-7.10.1-150200.3.10.1</li>
</ul>
</li>
<li>
Development Tools Module 15-SP5 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
Development Tools Module 15-SP6 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Package Hub 15 15-SP6 (noarch)
<ul>
<li>mockito-5.11.0-150200.3.7.1</li>
</ul>
</li>
<li>
SUSE Manager Server 4.3 Module 4.3 (noarch)
<ul>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise High Performance Computing 15 SP2 LTSS 15-SP2 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Desktop 15 SP4 LTSS 15-SP4 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Server 15 SP2 LTSS 15-SP2 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Server 15 SP3 LTSS 15-SP3 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Server 15 SP4 LTSS 15-SP4 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Server for SAP Applications 15 SP2 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Server for SAP Applications 15 SP3 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Linux Enterprise Server for SAP Applications 15 SP4 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
<li>
SUSE Enterprise Storage 7.1 (noarch)
<ul>
<li>testng-7.10.1-150200.3.10.1</li>
<li>snakeyaml-2.2-150200.3.15.1</li>
</ul>
</li>
</ul>
<h2>References:</h2>
<ul>
<li>
<a href="https://www.suse.com/security/cve/CVE-2022-4065.html">https://www.suse.com/security/cve/CVE-2022-4065.html</a>
</li>
<li>
<a href="https://bugzilla.suse.com/show_bug.cgi?id=1205628">https://bugzilla.suse.com/show_bug.cgi?id=1205628</a>
</li>
</ul>
</div>