<?xml version="1.0" encoding="UTF-8"?>
<cvrfdoc xmlns="http://www.icasi.org/CVRF/schema/cvrf/1.1" xmlns:cvrf="http://www.icasi.org/CVRF/schema/cvrf/1.1">
  <DocumentTitle xml:lang="en">Security update for tomcat</DocumentTitle>
  <DocumentType>SUSE Patch</DocumentType>
  <DocumentPublisher Type="Vendor">
    <ContactDetails>security@suse.de</ContactDetails>
    <IssuingAuthority>SUSE Security Team</IssuingAuthority>
  </DocumentPublisher>
  <DocumentTracking>
    <Identification>
      <ID>SUSE-SU-2025:0058-1</ID>
    </Identification>
    <Status>Final</Status>
    <Version>1</Version>
    <RevisionHistory>
      <Revision>
        <Number>1</Number>
        <Date>2025-02-05T10:34:01Z</Date>
        <Description>current</Description>
      </Revision>
    </RevisionHistory>
    <InitialReleaseDate>2025-02-05T10:34:01Z</InitialReleaseDate>
    <CurrentReleaseDate>2025-02-05T10:34:01Z</CurrentReleaseDate>
    <Generator>
      <Engine>cve-database/bin/generate-cvrf.pl</Engine>
      <Date>2017-02-24T01:00:00Z</Date>
    </Generator>
  </DocumentTracking>
  <DocumentNotes>
    <Note Title="Topic" Type="Summary" Ordinal="1" xml:lang="en">Security update for tomcat</Note>
    <Note Title="Details" Type="General" Ordinal="2" xml:lang="en">This update for tomcat fixes the following issues:

Update to Tomcat 9.0.98

- Fixed CVEs:
  + CVE-2024-54677: DoS in examples web application (bsc#1234664)
  + CVE-2024-50379: RCE due to TOCTOU issue in JSP compilation (bsc#1234663)
  + CVE-2024-52317: Request/response mix-up with HTTP/2 (bsc#1233435)
- Catalina
  + Add: Add option to serve resources from subpath only with WebDAV Servlet
    like with DefaultServlet. (michaelo)
  + Fix: Add special handling for the protocols attribute of SSLHostConfig in
    storeconfig. (remm)
  + Fix: 69442: Fix case sensitive check on content-type when parsing request
    parameters. (remm)
  + Code: Refactor duplicate code for extracting media type and subtype from
    content-type into a single method. (markt)
  + Fix: Compatibility of generated embedded code with components where
    constructors or property related methods throw a checked exception. (remm)
  + Fix: The previous fix for inconsistent resource metadata during concurrent
    reads and writes was incomplete. (markt)
  + Fix: 69444: Ensure that the javax.servlet.error.message request attribute
    is set when an application defined error page is called. (markt)
  + Fix: Avoid quotes for numeric values in the JSON generated by the status
    servlet. (remm)
  + Add: Add strong ETag support for the WebDAV and default servlet, which can
    be enabled by using the useStrongETags init parameter with a value set to
    true. The ETag generated will be a SHA-1 checksum of the resource content.
    (remm)
  + Fix: Use client locale for directory listings. (remm)
  + Fix: 69439: Improve the handling of multiple Cache-Control headers in the
    ExpiresFilter. Based on pull request #777 by Chenjp. (markt)
  + Fix: 69447: Update the support for caching classes the web application
    class loader cannot find to take account of classes loaded from external
    repositories. Prior to this fix, these classes could be incorrectly marked
    as not found. (markt)
  + Fix: 69466: Rework handling of HEAD requests. Headers explicitly set by
    users will not be removed and any header present in a HEAD request will
    also be present in the equivalent GET request. There may be some headers,
    as per RFC 9110, section 9.3.2, that are present in a GET request that are
    not present in the equivalent HEAD request. (markt)
  + Fix: 69471: Log instances of CloseNowException caught by
    ApplicationDispatcher.invoke() at debug level rather than error level as
    they are very likely to have been caused by a client disconnection or
    similar I/O issue. (markt)
  + Add: Add a test case for the fix for 69442. Also refactor references to
    application/x-www-form-urlencoded. Based on pull request #779 by Chenjp.
    (markt)
  + Fix: 69476: Catch possible ISE when trying to report PUT failure in the
    DefaultServlet. (remm)
  + Add: Add support for RateLimit header fields for HTTP (draft) in the
    RateLimitFilter. Based on pull request #775 provided by Chenjp. (markt)
  + Add: #787: Add regression tests for 69478. Pull request provided by Thomas
    Krisch. (markt)
  + Fix: The default servlet now rejects HTTP range requests when two or more
    of the requested ranges overlap. Based on pull request #782 provided by
    Chenjp. (markt)
  + Fix: Enhance Content-Range verification for partial PUT requests handled
    by the default servlet. Provided by Chenjp in pull request #778. (markt)
  + Fix: Harmonize DataSourceStore lookup in the global resources to
    optionally avoid the comp/env prefix which is usually not used there.
    (remm)
  + Fix: As required by RFC 9110, the HTTP Range header will now only be
    processed for GET requests. Based on pull request #790 provided by Chenjp.
    (markt)
  + Fix: Deprecate the useAcceptRanges initialisation parameter for the
    default servlet. It will be removed in Tomcat 12 onwards where it will
    effectively be hard coded to true. (markt)
  + Add: Add DataSource based property storage for the WebdavServlet. (remm)
- Coyote
  + Fix: Align encodedSolidusHandling with the Servlet specification. If the
    pass-through mode is used, any %25 sequences will now also be passed
    through to avoid errors and/or corruption when the application decodes the
    path. (markt)
- Jasper
  + Fix: Further optimise EL evaluation of method parameters. Patch provided
    by Paolo B. (markt)
  + Fix: Follow-up to the fix for 69381. Apply the optimisation for method
    lookup performance in expression language to an additional location.
    (markt)
- Web applications
  + Fix: Documentation. Remove references to the ResourceParams element.
    Support for ResourceParams was removed in Tomcat 5.5.x. (markt)
  + Fix: Documentation. 69477: Correct name of attribute for RemoteIPFilter.
    The attribute is internalProxies rather than allowedInternalProxies. Pull
    request #786 (markt)
  + Fix: Examples. Fix broken links when Servlet Request Info example is
    called via a URL that includes a pathInfo component. (markt)
  + Fix: Examples. Expand the obfuscation of session cookie values in the
    request header example to JSON responses. (markt)
  + Add: Examples. Add the ability to delete session attributes in the servlet
    session example. (markt)
  + Add: Examples. Add a hard coded limit of 10 attributes per session for the
    servlet session example. (markt)
  + Add: Examples. Add the ability to delete session attributes and add a hard
    coded limit of 10 attributes per session for the JSP form authentication
    example. (markt)
  + Add: Examples. Limit the shopping cart example to only allow adding the
    pre-defined items to the cart. (markt)
  + Fix: Examples. Remove JSP calendar example. (markt)
- Other
  + Fix: 69465: Fix warnings during native image compilation using the Tomcat
    embedded JARs. (markt)
  + Update: Update Tomcat's fork of Commons DBCP to 2.13.0. (markt)
  + Update: Update EasyMock to 5.5.0. (markt)
  + Update: Update Checkstyle to 10.20.2. (markt)
  + Update: Update BND to 7.1.0. (markt)
  + Add: Improvements to French translations. (remm)
  + Add: Improvements to Korean translations. (markt)
  + Add: Improvements to Chinese translations. (markt)
  + Add: Improvements to Japanese translations by tak7iji. (markt)
</Note>
    <Note Title="Terms of Use" Type="Legal Disclaimer" Ordinal="3" xml:lang="en">The CVRF data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).</Note>
    <Note Title="Patchnames" Type="Details" Ordinal="4" xml:lang="en">Container containers/apache-tomcat:9-openjdk11-2025-58,Container containers/apache-tomcat:9-openjdk17-2025-58,Container containers/apache-tomcat:9-openjdk21-2025-58,Container containers/apache-tomcat:9-openjdk8-2025-58,Container suse/manager/5.0/x86_64/server:latest-2025-58,Image SLES15-SP4-Manager-Server-4-3-BYOS-2025-58,Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure-2025-58,Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2-2025-58,Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE-2025-58,Image server-image-2025-58,Image tomcat_15_6-2025-58,SUSE-2025-58,SUSE-SLE-Module-Web-Scripting-15-SP6-2025-58,SUSE-SLE-Product-HPC-15-SP3-LTSS-2025-58,SUSE-SLE-Product-HPC-15-SP4-ESPOS-2025-58,SUSE-SLE-Product-HPC-15-SP4-LTSS-2025-58,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2025-58,SUSE-SLE-Product-HPC-15-SP5-LTSS-2025-58,SUSE-SLE-Product-SLES-15-SP3-LTSS-2025-58,SUSE-SLE-Product-SLES-15-SP4-LTSS-2025-58,SUSE-SLE-Product-SLES-15-SP5-LTSS-2025-58,SUSE-SLE-Product-SLES_SAP-15-SP3-2025-58,SUSE-SLE-Product-SLES_SAP-15-SP4-2025-58,SUSE-SLE-Product-SLES_SAP-15-SP5-2025-58,SUSE-SLE-Product-SUSE-Manager-Server-4.3-2025-58,SUSE-Storage-7.1-2025-58,openSUSE-SLE-15.6-2025-58</Note>
  </DocumentNotes>
  <DocumentDistribution xml:lang="en">Copyright SUSE LLC under the Creative Commons License 4.0 with Attribution (CC-BY-4.0)</DocumentDistribution>
  <DocumentReferences>
    <Reference Type="Self">
      <URL>https://www.suse.com/support/update/announcement/2025/suse-su-20250058-1/</URL>
      <Description>Link for SUSE-SU-2025:0058-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2025-January/020086.html</URL>
      <Description>E-Mail link for SUSE-SU-2025:0058-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/support/security/rating/</URL>
      <Description>SUSE Security Ratings</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1233435</URL>
      <Description>SUSE Bug 1233435</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1234663</URL>
      <Description>SUSE Bug 1234663</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1234664</URL>
      <Description>SUSE Bug 1234664</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1236809</URL>
      <Description>SUSE Bug 1236809</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/security/cve/CVE-2024-50379/</URL>
      <Description>SUSE CVE CVE-2024-50379 page</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/security/cve/CVE-2024-52317/</URL>
      <Description>SUSE CVE CVE-2024-52317 page</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/security/cve/CVE-2024-54677/</URL>
      <Description>SUSE CVE CVE-2024-54677 page</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/security/cve/CVE-2024-56337/</URL>
      <Description>SUSE CVE CVE-2024-56337 page</Description>
    </Reference>
  </DocumentReferences>
  <ProductTree xmlns="http://www.icasi.org/CVRF/schema/prod/1.1">
    <Branch Type="Product Family" Name="Container containers/apache-tomcat:9-openjdk11">
      <Branch Type="Product Name" Name="Container containers/apache-tomcat:9-openjdk11">
        <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk11">Container containers/apache-tomcat:9-openjdk11</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container containers/apache-tomcat:9-openjdk17">
      <Branch Type="Product Name" Name="Container containers/apache-tomcat:9-openjdk17">
        <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk17">Container containers/apache-tomcat:9-openjdk17</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container containers/apache-tomcat:9-openjdk21">
      <Branch Type="Product Name" Name="Container containers/apache-tomcat:9-openjdk21">
        <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk21">Container containers/apache-tomcat:9-openjdk21</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container containers/apache-tomcat:9-openjdk8">
      <Branch Type="Product Name" Name="Container containers/apache-tomcat:9-openjdk8">
        <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk8">Container containers/apache-tomcat:9-openjdk8</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/manager/5.0/x86_64/server:latest">
      <Branch Type="Product Name" Name="Container suse/manager/5.0/x86_64/server:latest">
        <FullProductName ProductID="Container suse/manager/5.0/x86_64/server:latest">Container suse/manager/5.0/x86_64/server:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS">
      <Branch Type="Product Name" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS">
        <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS">Image SLES15-SP4-Manager-Server-4-3-BYOS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
        <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
        <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
        <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image server-image">
      <Branch Type="Product Name" Name="Image server-image">
        <FullProductName ProductID="Image server-image">Image server-image</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image tomcat_15_6">
      <Branch Type="Product Name" Name="Image tomcat_15_6">
        <FullProductName ProductID="Image tomcat_15_6">Image tomcat_15_6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Enterprise Storage 7.1">
      <Branch Type="Product Name" Name="SUSE Enterprise Storage 7.1">
        <FullProductName ProductID="SUSE Enterprise Storage 7.1" CPE="cpe:/o:suse:ses:7.1">SUSE Enterprise Storage 7.1</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS" CPE="cpe:/o:suse:sle_hpc-ltss:15:sp3">SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS" CPE="cpe:/o:suse:sle_hpc-espos:15:sp4">SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS" CPE="cpe:/o:suse:sle_hpc-ltss:15:sp4">SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS" CPE="cpe:/o:suse:sle_hpc-espos:15:sp5">SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS" CPE="cpe:/o:suse:sle_hpc-ltss:15:sp5">SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6" CPE="cpe:/o:suse:sle-module-web-scripting:15:sp6">SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP3-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp3">SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP4-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp4">SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP5-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp5">SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3" CPE="cpe:/o:suse:sles_sap:15:sp3">SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4" CPE="cpe:/o:suse:sles_sap:15:sp4">SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5" CPE="cpe:/o:suse:sles_sap:15:sp5">SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Server 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Server 4.3">
        <FullProductName ProductID="SUSE Manager Server 4.3" CPE="cpe:/o:suse:suse-manager-server:4.3">SUSE Manager Server 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="openSUSE Leap 15.6">
      <Branch Type="Product Name" Name="openSUSE Leap 15.6">
        <FullProductName ProductID="openSUSE Leap 15.6" CPE="cpe:/o:opensuse:leap:15.6">openSUSE Leap 15.6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-el-3_0-api-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-jsp-2_3-api-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-lib-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-servlet-4_0-api-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-admin-webapps-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-docs-webapp-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-docs-webapp-9.0.98-150200.74.1">tomcat-docs-webapp-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-embed-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-embed-9.0.98-150200.74.1">tomcat-embed-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-javadoc-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-javadoc-9.0.98-150200.74.1">tomcat-javadoc-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-jsvc-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-jsvc-9.0.98-150200.74.1">tomcat-jsvc-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="tomcat-webapps-9.0.98-150200.74.1">
      <FullProductName ProductID="tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1</FullProductName>
    </Branch>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk11">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk11:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk11</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk11">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk11:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk11</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk11">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk11:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk11</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk11">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk11:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk11</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk11">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk11:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk11</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk17">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk17:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk17</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk17">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk17:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk17</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk17">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk17:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk17</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk17">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk17:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk17</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk17">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk17:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk17</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk21">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk21:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk21</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk21">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk21:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk21</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk21">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk21:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk21</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk21">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk21:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk21</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk21">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk21:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk21</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk8">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk8:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk8</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk8">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk8:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk8</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk8">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk8:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk8</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk8">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk8:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk8</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container containers/apache-tomcat:9-openjdk8">
      <FullProductName ProductID="Container containers/apache-tomcat:9-openjdk8:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Container containers/apache-tomcat:9-openjdk8</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/manager/5.0/x86_64/server:latest">
      <FullProductName ProductID="Container suse/manager/5.0/x86_64/server:latest:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Container suse/manager/5.0/x86_64/server:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/manager/5.0/x86_64/server:latest">
      <FullProductName ProductID="Container suse/manager/5.0/x86_64/server:latest:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Container suse/manager/5.0/x86_64/server:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/manager/5.0/x86_64/server:latest">
      <FullProductName ProductID="Container suse/manager/5.0/x86_64/server:latest:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Container suse/manager/5.0/x86_64/server:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/manager/5.0/x86_64/server:latest">
      <FullProductName ProductID="Container suse/manager/5.0/x86_64/server:latest:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Container suse/manager/5.0/x86_64/server:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/manager/5.0/x86_64/server:latest">
      <FullProductName ProductID="Container suse/manager/5.0/x86_64/server:latest:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Container suse/manager/5.0/x86_64/server:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE">
      <FullProductName ProductID="Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image server-image">
      <FullProductName ProductID="Image server-image:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Image server-image</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image server-image">
      <FullProductName ProductID="Image server-image:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Image server-image</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image server-image">
      <FullProductName ProductID="Image server-image:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Image server-image</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image server-image">
      <FullProductName ProductID="Image server-image:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Image server-image</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image server-image">
      <FullProductName ProductID="Image server-image:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Image server-image</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image tomcat_15_6">
      <FullProductName ProductID="Image tomcat_15_6:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of Image tomcat_15_6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image tomcat_15_6">
      <FullProductName ProductID="Image tomcat_15_6:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of Image tomcat_15_6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image tomcat_15_6">
      <FullProductName ProductID="Image tomcat_15_6:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of Image tomcat_15_6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image tomcat_15_6">
      <FullProductName ProductID="Image tomcat_15_6:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of Image tomcat_15_6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="Image tomcat_15_6">
      <FullProductName ProductID="Image tomcat_15_6:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of Image tomcat_15_6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Enterprise Storage 7.1">
      <FullProductName ProductID="SUSE Enterprise Storage 7.1:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Enterprise Storage 7.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Web and Scripting 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Module for Web and Scripting 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-9.0.98-150200.74.1">tomcat-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-admin-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-admin-webapps-9.0.98-150200.74.1">tomcat-admin-webapps-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-docs-webapp-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-docs-webapp-9.0.98-150200.74.1">tomcat-docs-webapp-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-el-3_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-el-3_0-api-9.0.98-150200.74.1">tomcat-el-3_0-api-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-embed-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-embed-9.0.98-150200.74.1">tomcat-embed-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-javadoc-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-javadoc-9.0.98-150200.74.1">tomcat-javadoc-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsp-2_3-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-jsp-2_3-api-9.0.98-150200.74.1">tomcat-jsp-2_3-api-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-jsvc-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-jsvc-9.0.98-150200.74.1">tomcat-jsvc-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-lib-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-lib-9.0.98-150200.74.1">tomcat-lib-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-servlet-4_0-api-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-servlet-4_0-api-9.0.98-150200.74.1">tomcat-servlet-4_0-api-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="tomcat-webapps-9.0.98-150200.74.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:tomcat-webapps-9.0.98-150200.74.1">tomcat-webapps-9.0.98-150200.74.1 as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
  </ProductTree>
  <Vulnerability xmlns="http://www.icasi.org/CVRF/schema/vuln/1.1" Ordinal="1">
    <Notes>
      <Note Title="Vulnerability Description" Type="General" Ordinal="1" xml:lang="en">Time-of-check Time-of-use (TOCTOU) Race Condition vulnerability during JSP compilation in Apache Tomcat permits an RCE on case insensitive file systems when the default servlet is enabled for write (non-default configuration).

This issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.1, from 10.1.0-M1 through 10.1.33, from 9.0.0.M1 through 9.0.97.

Users are recommended to upgrade to version 11.0.2, 10.1.34 or 9.0.98, which fixes the issue.</Note>
    </Notes>
    <CVE>CVE-2024-50379</CVE>
    <ProductStatuses>
      <Status Type="Fixed">
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-docs-webapp-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-embed-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-javadoc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsvc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
      </Status>
    </ProductStatuses>
    <Threats>
      <Threat Type="Impact">
        <Description>important</Description>
      </Threat>
    </Threats>
    <Remediations>
      <Remediation Type="Vendor Fix">
        <Description xml:lang="en">To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
</Description>
        <URL>https://www.suse.com/support/update/announcement/2025/suse-su-20250058-1/</URL>
      </Remediation>
    </Remediations>
    <References>
      <Reference>
        <URL>https://www.suse.com/security/cve/CVE-2024-50379.html</URL>
        <Description>CVE-2024-50379</Description>
      </Reference>
      <Reference>
        <URL>https://bugzilla.suse.com/1234663</URL>
        <Description>SUSE Bug 1234663</Description>
      </Reference>
    </References>
  </Vulnerability>
  <Vulnerability xmlns="http://www.icasi.org/CVRF/schema/vuln/1.1" Ordinal="2">
    <Notes>
      <Note Title="Vulnerability Description" Type="General" Ordinal="1" xml:lang="en">Incorrect object re-cycling and re-use vulnerability in Apache Tomcat.  Incorrect recycling of the request and response used by HTTP/2 requests 
could lead to request and/or response mix-up between users.

This issue affects Apache Tomcat: from 11.0.0-M23 through 11.0.0-M26, from 10.1.27 through 10.1.30, from 9.0.92 through 9.0.95.

Users are recommended to upgrade to version 11.0.0, 10.1.31 or 9.0.96, which fixes the issue.</Note>
    </Notes>
    <CVE>CVE-2024-52317</CVE>
    <ProductStatuses>
      <Status Type="Fixed">
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-docs-webapp-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-embed-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-javadoc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsvc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
      </Status>
    </ProductStatuses>
    <Threats>
      <Threat Type="Impact">
        <Description>moderate</Description>
      </Threat>
    </Threats>
    <Remediations>
      <Remediation Type="Vendor Fix">
        <Description xml:lang="en">To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
</Description>
        <URL>https://www.suse.com/support/update/announcement/2025/suse-su-20250058-1/</URL>
      </Remediation>
    </Remediations>
    <References>
      <Reference>
        <URL>https://www.suse.com/security/cve/CVE-2024-52317.html</URL>
        <Description>CVE-2024-52317</Description>
      </Reference>
      <Reference>
        <URL>https://bugzilla.suse.com/1233435</URL>
        <Description>SUSE Bug 1233435</Description>
      </Reference>
    </References>
  </Vulnerability>
  <Vulnerability xmlns="http://www.icasi.org/CVRF/schema/vuln/1.1" Ordinal="3">
    <Notes>
      <Note Title="Vulnerability Description" Type="General" Ordinal="1" xml:lang="en">Uncontrolled Resource Consumption vulnerability in the examples web application provided with Apache Tomcat leads to denial of service.

This issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.1, from 10.1.0-M1 through 10.1.33, from 9.0.0.M1 through 9.9.97.

Users are recommended to upgrade to version 11.0.2, 10.1.34 or 9.0.98, which fixes the issue.</Note>
    </Notes>
    <CVE>CVE-2024-54677</CVE>
    <ProductStatuses>
      <Status Type="Fixed">
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-docs-webapp-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-embed-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-javadoc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsvc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
      </Status>
    </ProductStatuses>
    <Threats>
      <Threat Type="Impact">
        <Description>important</Description>
      </Threat>
    </Threats>
    <Remediations>
      <Remediation Type="Vendor Fix">
        <Description xml:lang="en">To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
</Description>
        <URL>https://www.suse.com/support/update/announcement/2025/suse-su-20250058-1/</URL>
      </Remediation>
    </Remediations>
    <References>
      <Reference>
        <URL>https://www.suse.com/security/cve/CVE-2024-54677.html</URL>
        <Description>CVE-2024-54677</Description>
      </Reference>
      <Reference>
        <URL>https://bugzilla.suse.com/1234664</URL>
        <Description>SUSE Bug 1234664</Description>
      </Reference>
    </References>
  </Vulnerability>
  <Vulnerability xmlns="http://www.icasi.org/CVRF/schema/vuln/1.1" Ordinal="4">
    <Notes>
      <Note Title="Vulnerability Description" Type="General" Ordinal="1" xml:lang="en">Time-of-check Time-of-use (TOCTOU) Race Condition vulnerability in Apache Tomcat.

This issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.1, from 10.1.0-M1 through 10.1.33, from 9.0.0.M1 through 9.0.97.

The mitigation for CVE-2024-50379 was incomplete.

Users running Tomcat on a case insensitive file system with the default servlet write enabled (readonly initialisation 
parameter set to the non-default value of false) may need additional configuration to fully mitigate CVE-2024-50379 depending on which version of Java they are using with Tomcat:
- running on Java 8 or Java 11: the system property  sun.io.useCanonCaches must be explicitly set to false (it defaults to true)
- running on Java 17: the  system property sun.io.useCanonCaches, if set, must be set to false  (it defaults to false)
- running on Java 21 onwards: no further configuration is required  (the system property and the problematic cache have been removed)

Tomcat 11.0.3, 10.1.35 and 9.0.99 onwards will include checks that  sun.io.useCanonCaches is set appropriately before allowing the default servlet to be write enabled on a case insensitive file system. Tomcat will also set  sun.io.useCanonCaches to false by default where it can.</Note>
    </Notes>
    <CVE>CVE-2024-56337</CVE>
    <ProductStatuses>
      <Status Type="Fixed">
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk11:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk17:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk21:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container containers/apache-tomcat:9-openjdk8:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Container suse/manager/5.0/x86_64/server:latest:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image SLES15-SP4-Manager-Server-4-3-BYOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image server-image:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>Image tomcat_15_6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Enterprise Storage 7.1:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Web and Scripting 15 SP6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>SUSE Manager Server 4.3:tomcat-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-admin-webapps-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-docs-webapp-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-el-3_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-embed-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-javadoc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsp-2_3-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-jsvc-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-lib-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-servlet-4_0-api-9.0.98-150200.74.1</ProductID>
        <ProductID>openSUSE Leap 15.6:tomcat-webapps-9.0.98-150200.74.1</ProductID>
      </Status>
    </ProductStatuses>
    <Threats>
      <Threat Type="Impact">
        <Description>important</Description>
      </Threat>
    </Threats>
    <Remediations>
      <Remediation Type="Vendor Fix">
        <Description xml:lang="en">To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
</Description>
        <URL>https://www.suse.com/support/update/announcement/2025/suse-su-20250058-1/</URL>
      </Remediation>
    </Remediations>
    <References>
      <Reference>
        <URL>https://www.suse.com/security/cve/CVE-2024-56337.html</URL>
        <Description>CVE-2024-56337</Description>
      </Reference>
      <Reference>
        <URL>https://bugzilla.suse.com/1234663</URL>
        <Description>SUSE Bug 1234663</Description>
      </Reference>
      <Reference>
        <URL>https://bugzilla.suse.com/1236809</URL>
        <Description>SUSE Bug 1236809</Description>
      </Reference>
    </References>
  </Vulnerability>
</cvrfdoc>
