SUSE-SU-2026:0890-1

Vulnerability from csaf_suse - Published: 2026-03-13 08:57 - Updated: 2026-03-13 08:57
Summary
Security update for tomcat10

Notes

Title of the patch
Security update for tomcat10
Description of the patch
This update for tomcat10 fixes the following issues: Update to Tomcat 10.1.52: - CVE-2025-66614: client certificate verification bypass due to virtual host mapping (bsc#1258371). - CVE-2026-24733: improper input validation on HTTP/0.9 requests (bsc#1258385). - CVE-2026-24734: certificate revocation bypass due to incomplete OCSP verification checks (bsc#1258387). Changelog: * Catalina + Fix: 69623: Additional fix for the long standing regression that meant that calls to ClassLoader.getResource().getContent() failed when made from within a web application with resource caching enabled if the target resource was packaged in a JAR file. (markt) + Fix: Pull request #923: Avoid adding multiple CSRF tokens to a URL in the CsrfPreventionFilter. (schultz) + Fix: 69918: Ensure request parameters are correctly parsed for HTTP/2 requests when the content-length header is not set. (dsoumis) + Update: Enable minimum and recommended Tomcat Native versions to be set separately for Tomcat Native 1.x and 2.x. Update the minimum and recommended versions for Tomcat Native 1.x to 1.3.4. Update the minimum and recommended versions for Tomcat Native 2.x to 2.0.12. (markt) + Add: Add a new ssoReauthenticationMode to the Tomcat provided Authenticators that provides a per Authenticator override of the SSO Valve requireReauthentication attribute. (markt) + Fix: Ensure URL encoding errors in the Rewrite Valve trigger an exception rather than silently using a replacement character. (markt) + Fix: 69932: Fix request end access log pattern regression, which would log the start time of the request instead. (remm) + Fix: 69871: Increase log level to INFO for missing configuration for the rewrite valve. (remm) + Fix: Add log warnings for additional Host appBase suspicious values. (remm) + Fix: Remove hard dependency on tomcat-jni.jar for catalina.jar. org.apache.catalina.Connector no longer requires org.apache.tomcat.jni.AprStatus to be present. (markt) + Add: Add the ability to use a custom function to generate the client identifier in the CrawlerSessionManagerValve. This is only available programmatically. Pull request #902 by Brian Matzon. (markt) + Fix: Change the SSO reauthentication behaviour for SPNEGO authentication so that a normal SPNEGO authentication is performed if the SSL Valve is configured with reauthentication enabled. This is so that the delegated credentials will be available to the web application. (markt) + Fix: When generating the class path in the Loader, re-order the check on individual class path components to avoid a potential NullPointerException. Identified by Coverity Scan. (markt) + Fix: Fix SSL socket factory configuration in the JNDI realm. Based on pull request #915 by Joshua Rogers. (remm) + Update: Add an attribute, digestInRfc3112Order, to MessageDigestCredentialHandler to control the order in which the credential and salt are digested. By default, the current, non-RFC 3112 compliant, order of salt then credential will be used. This default will change in Tomcat 12 to the RFC 3112 compliant order of credential then salt. (markt) + Fix: Log warnings when the SSO configuration does not comply with the documentation. (remm) + Update: Deprecate the RemoteAddrFilter and RemoteAddrValve in favour of the RemoteCIDRFilter and RemoteCIDRValve. (markt) + Fix: 69837: Fix corruption of the class path generated by the Loader when running on Windows. (markt) + Fix: Reject requests that map to invalid Windows file names earlier. (markt) + Fix: 69839: Ensure that changes to session IDs (typically after authentication) are promulgated to the SSO Valve to ensure that SSO entries are fully clean-up on session expiration. Patch provided by Kim Johan Andersson. (markt) + Fix: Fix a race condition in the creation of the storage location for the FileStore. (markt) * Cluster + Add: 62814: Document that human-readable names may be used for mapSendOptions and align documentation with channelSendOptions. Based on pull request #929 by archan0621. (markt) * Clustering + Fix: Correct a regression introduced in 10.1.45 that broke some clustering configurations. (markt) * Coyote + Fix: 69936: Fix bug in previous fix for Tomcat Native crashes on shutdown that triggered a significant memory leak. Patch provided by Wes. (markt) + Fix: Avoid possible NPEs when using a TLS enabled custom connector. (remm) + Fix: Improve warnings when setting ciphers lists in the FFM code, mirroring the tomcat-native changes. (remm) + Fix: 69910: Dereference TLS objects right after closing a socket to improve memory efficiency. (remm) + Fix: Relax the JSSE vs OpenSSL configuration style checks on SSLHostConfig to reflect the existing implementation that allows one configuration style to be used for the trust attributes and a different style for all the other attributes. (markt) + Fix: Better warning message when OpenSSLConf configuration elements are used with a JSSE TLS implementation. (markt) + Fix: When using OpenSSL via FFM, don't log a warning about missing CA certificates unless CA certificates were configured and the configuration failed. (markt) + Add: For configuration consistency between OpenSSL and JSSE TLS implementations, TLSv1.3 cipher suites included in the ciphers attribute of an SSLHostConfig are now always ignored (previously they would be ignored with OpenSSL implementations and used with JSSE implementations) and a warning is logged that the cipher suite has been ignored. (markt) + Add: Add the ciphersuite attribute to SSLHostConfig to configure the TLSv1.3 cipher suites. (markt) + Add: Add OCSP support to JSSE based TLS connectors and make the use of OCSP configurable per connector for both JSSE and OpenSSL based TLS implementations. Align the checks performed by OpenSSL with those performed by JSSE. (markt) + Add: Add support for soft failure of OCSP checks with soft failure support disabled by default. (markt) + Add: Add support for configuring the verification flags passed to OCSP_basic_verify when using an OpenSSL based TLS implementation. (markt) + Fix: Fix OpenSSL FFM code compatibility with LibreSSL versions below 3.5. + Fix: Prevent concurrent release of OpenSSLEngine resources and the termination of the Tomcat Native library as it can cause crashes during Tomcat shutdown. (markt) + Fix: Don't log an incorrect certificate KeyStore location when creating a TLS connector if the KeyStore instance has been set directly on the connector. (markt) + Fix: HTTP/0.9 only allows GET as the HTTP method. (remm) + Add: Add strictSni attribute on the Connector to allow matching the SSLHostConfig configuration associated with the SNI host name to the SSLHostConfig configuration matched from the HTTP protocol host name. Non matching configurations will cause the request to be rejected. The attribute default value is true, enabling the matching. (remm) + Fix: Graceful failure for OCSP on BoringSSL in the FFM code. (remm) + Fix: Fix use of deferAccept attribute in JMX, since it is normally only removed in Tomcat 11. (remm) + Fix: 69866: Fix a memory leak when using a trust store with the OpenSSL provider. Pull request #912 by aogburn. (markt) + Fix: Fix potential crash on shutdown when a Connector depends on the Tomcat Native library. (markt) + Fix: Fix AJP message length check. Pull request #916 by Joshua Rogers. + Fix: 69848: Fix copy/paste errors in 10.1.47 that meant DELETE requests received via the AJP connector were processed as OPTIONS requests and PROPFIND requests were processed as TRACE. (markt) + Fix: Various OCSP processing issues in the OpenSSL FFM code. (dsoumis) * General + Add: Add test.silent property to suppress JUnit console output during test execution. Useful for cleaner console output when running tests with multiple threads. (csutherl) * Jasper + Fix: 69333: Correct a regression in the previous fix for 69333 and ensure that reuse() or release() is always called for a tag. (markt) + Fix: 69877: Catch IllegalArgumentException when processing URIs when creating the classpath to handle invalid URIs. (remm) + Fix: Fix populating the classpath with the webapp classloader repositories. (remm) + Fix: 69862: Avoid NPE unwrapping Servlet exception which would hide some exception details. Patch submitted by Eric Blanquer. (remm) * Jdbc-pool + Fix: 64083: If the underlying connection has been closed, don't add it to the pool when it is returned. Pull request #235 by Alex Panchenko. (markt) * Web applications + Fix: Manager: Fix abrupt truncation of the HTML and JSON complete server status output if one or more of the web applications failed to start. (schultz) + Add: Manager: Include web application state in the HTML and JSON complete server status output. (markt) + Add: Documentation: Expand the documentation to better explain when OCSP is supported and when it is not. (markt) * Websocket + Fix: 69920: When attempting to write to a closed Writer or OutputStream obtained from a WebSocket session, throw an IOException rather than an IllegalStateExcpetion as required by Writer and strongly suggested by OutputStream. (markt) + Fix: 69845: When using permessage-deflate with Java 25 onwards, handle the underlying Inflater and/or Deflater throwing IllegalStateException when closed rather than NullPointerException as they do in Java 24 and earlier. * Other + Update: Update the internal fork of Commons Pool to 2.13.1. (markt) + Update: Update the internal fork of Commons DBCP to 2.14.0. (markt) + Update: Update Commons Daemon to 1.5.1. (markt) + Update: Update ByteBuddy to 1.18.3. (markt) + Update: Update UnboundID to 7.0.4. (markt) + Update: Update Checkstyle to 12.3.1. (markt) + Add: Improvements to French translations. (markt) + Add: Improvements to Japanese translations provided by tak7iji. (markt) + Add: Improvements to Chinese translations provided by Yang. vincent.h and yong hu. (markt) + Update: Update Tomcat Native to 2.0.12. (markt) + Add: Add property 'gpg.sign.files' to optionally disable release artefact signing with GPG. (rjung) + Add: Add test profile system for selective test execution. Profiles can be specified via -Dtest.profile=<name> to run specific test subsets without using patterns directly. Profile patterns are defined in test-profiles.properties. (csutherl) + Update: Update file extension to media type mappings to align with the current list used by the Apache Web Server (httpd). (markt) + Update: Update the packaged version of the Tomcat Migration Tool for Jakarta EE to 1.0.10. (markt) + Update: Update Commons Daemon to 1.5.0. (markt) + Update: Update Byte Buddy to 1.18.2. (markt) + Update: Update Checkstyle to 12.2.0. (markt) + Add: Improvements to Spanish translations provided by White Vogel. (markt) + Add: Improvements to French translations. (remm) + Update: Update the internal fork of Apache Commons BCEL to 6.11.0. (markt) + Update: Update to Byte Buddy 1.17.8. (markt) + Update: Update to Checkstyle 12.1.1. (markt) + Update: Update to Jacoco 0.8.14. (markt) + Update: Update to SpotBugs 4.9.8. (markt) + Update: Update to JSign 7.4. (markt) + Update: Update Maven Resolver Ant Tasks to 1.6.0. (rjung)
Patchnames
SUSE-2026-890,SUSE-SLE-Module-Web-Scripting-15-SP7-2026-890,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2026-890,SUSE-SLE-Product-HPC-15-SP5-LTSS-2026-890,SUSE-SLE-Product-SLES-15-SP5-LTSS-2026-890,SUSE-SLE-Product-SLES-15-SP6-LTSS-2026-890,SUSE-SLE-Product-SLES_SAP-15-SP5-2026-890,SUSE-SLE-Product-SLES_SAP-15-SP6-2026-890,openSUSE-SLE-15.6-2026-890
Terms of use
CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).

{
  "document": {
    "aggregate_severity": {
      "namespace": "https://www.suse.com/support/security/rating/",
      "text": "important"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright 2024 SUSE LLC. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "Security update for tomcat10",
        "title": "Title of the patch"
      },
      {
        "category": "description",
        "text": "This update for tomcat10 fixes the following issues:\n\nUpdate to Tomcat 10.1.52:\n\n- CVE-2025-66614: client certificate verification bypass due to virtual host mapping (bsc#1258371).\n- CVE-2026-24733: improper input validation on HTTP/0.9 requests (bsc#1258385).\n- CVE-2026-24734: certificate revocation bypass due to incomplete OCSP verification checks (bsc#1258387).\n\nChangelog:\n\n * Catalina\n + Fix: 69623: Additional fix for the long standing regression that meant\n that calls to ClassLoader.getResource().getContent() failed when made from\n within a web application with resource caching enabled if the target\n resource was packaged in a JAR file. (markt)\n + Fix: Pull request #923: Avoid adding multiple CSRF tokens to a URL in the\n CsrfPreventionFilter. (schultz)\n + Fix: 69918: Ensure request parameters are correctly parsed for HTTP/2\n requests when the content-length header is not set. (dsoumis)\n + Update: Enable minimum and recommended Tomcat Native versions to be set\n separately for Tomcat Native 1.x and 2.x. Update the minimum and\n recommended versions for Tomcat Native 1.x to 1.3.4. Update the minimum\n and recommended versions for Tomcat Native 2.x to 2.0.12. (markt)\n + Add: Add a new ssoReauthenticationMode to the Tomcat provided\n Authenticators that provides a per Authenticator override of the SSO Valve\n requireReauthentication attribute. (markt)\n + Fix: Ensure URL encoding errors in the Rewrite Valve trigger an exception\n rather than silently using a replacement character. (markt)\n + Fix: 69932: Fix request end access log pattern regression, which would log\n the start time of the request instead. (remm)\n + Fix: 69871: Increase log level to INFO for missing configuration for the\n rewrite valve. (remm)\n + Fix: Add log warnings for additional Host appBase suspicious values.\n (remm)\n + Fix: Remove hard dependency on tomcat-jni.jar for catalina.jar.\n org.apache.catalina.Connector no longer requires\n org.apache.tomcat.jni.AprStatus to be present. (markt)\n + Add: Add the ability to use a custom function to generate the client\n identifier in the CrawlerSessionManagerValve. This is only available\n programmatically. Pull request #902 by Brian Matzon. (markt)\n + Fix: Change the SSO reauthentication behaviour for SPNEGO authentication\n so that a normal SPNEGO authentication is performed if the SSL Valve is\n configured with reauthentication enabled. This is so that the delegated\n credentials will be available to the web application. (markt)\n + Fix: When generating the class path in the Loader, re-order the check on\n individual class path components to avoid a potential\n NullPointerException. Identified by Coverity Scan. (markt)\n + Fix: Fix SSL socket factory configuration in the JNDI realm. Based on pull\n request #915 by Joshua Rogers. (remm)\n + Update: Add an attribute, digestInRfc3112Order, to\n MessageDigestCredentialHandler to control the order in which the\n credential and salt are digested. By default, the current, non-RFC 3112\n compliant, order of salt then credential will be used. This default will\n change in Tomcat 12 to the RFC 3112 compliant order of credential then\n salt. (markt)\n + Fix: Log warnings when the SSO configuration does not comply with the\n documentation. (remm)\n + Update: Deprecate the RemoteAddrFilter and RemoteAddrValve in favour of\n the RemoteCIDRFilter and RemoteCIDRValve. (markt)\n + Fix: 69837: Fix corruption of the class path generated by the Loader when\n running on Windows. (markt)\n + Fix: Reject requests that map to invalid Windows file names earlier.\n (markt)\n + Fix: 69839: Ensure that changes to session IDs (typically after\n authentication) are promulgated to the SSO Valve to ensure that SSO\n entries are fully clean-up on session expiration. Patch provided by Kim\n Johan Andersson. (markt)\n + Fix: Fix a race condition in the creation of the storage location for the\n FileStore. (markt)\n * Cluster\n + Add: 62814: Document that human-readable names may be used for\n mapSendOptions and align documentation with channelSendOptions. Based on\n pull request #929 by archan0621. (markt)\n * Clustering\n + Fix: Correct a regression introduced in 10.1.45 that broke some clustering\n configurations. (markt)\n * Coyote\n + Fix: 69936: Fix bug in previous fix for Tomcat Native crashes on shutdown\n that triggered a significant memory leak. Patch provided by Wes. (markt)\n + Fix: Avoid possible NPEs when using a TLS enabled custom connector. (remm)\n + Fix: Improve warnings when setting ciphers lists in the FFM code,\n mirroring the tomcat-native changes. (remm)\n + Fix: 69910: Dereference TLS objects right after closing a socket to\n improve memory efficiency. (remm)\n + Fix: Relax the JSSE vs OpenSSL configuration style checks on SSLHostConfig\n to reflect the existing implementation that allows one configuration style\n to be used for the trust attributes and a different style for all the\n other attributes. (markt)\n + Fix: Better warning message when OpenSSLConf configuration elements are\n used with a JSSE TLS implementation. (markt)\n + Fix: When using OpenSSL via FFM, don\u0027t log a warning about missing CA\n certificates unless CA certificates were configured and the configuration\n failed. (markt)\n + Add: For configuration consistency between OpenSSL and JSSE TLS\n implementations, TLSv1.3 cipher suites included in the ciphers attribute\n of an SSLHostConfig are now always ignored (previously they would be\n ignored with OpenSSL implementations and used with JSSE implementations)\n and a warning is logged that the cipher suite has been ignored. (markt)\n + Add: Add the ciphersuite attribute to SSLHostConfig to configure the\n TLSv1.3 cipher suites. (markt)\n + Add: Add OCSP support to JSSE based TLS connectors and make the use of\n OCSP configurable per connector for both JSSE and OpenSSL based TLS\n implementations. Align the checks performed by OpenSSL with those\n performed by JSSE. (markt)\n + Add: Add support for soft failure of OCSP checks with soft failure support\n disabled by default. (markt)\n + Add: Add support for configuring the verification flags passed to\n OCSP_basic_verify when using an OpenSSL based TLS implementation. (markt)\n + Fix: Fix OpenSSL FFM code compatibility with LibreSSL versions below 3.5.\n + Fix: Prevent concurrent release of OpenSSLEngine resources and the\n termination of the Tomcat Native library as it can cause crashes during\n Tomcat shutdown. (markt)\n + Fix: Don\u0027t log an incorrect certificate KeyStore location when creating a\n TLS connector if the KeyStore instance has been set directly on the\n connector. (markt)\n + Fix: HTTP/0.9 only allows GET as the HTTP method. (remm)\n + Add: Add strictSni attribute on the Connector to allow matching the\n SSLHostConfig configuration associated with the SNI host name to the\n SSLHostConfig configuration matched from the HTTP protocol host name. Non\n matching configurations will cause the request to be rejected. The\n attribute default value is true, enabling the matching. (remm)\n + Fix: Graceful failure for OCSP on BoringSSL in the FFM code. (remm)\n + Fix: Fix use of deferAccept attribute in JMX, since it is normally only\n removed in Tomcat 11. (remm)\n + Fix: 69866: Fix a memory leak when using a trust store with the OpenSSL\n provider. Pull request #912 by aogburn. (markt)\n + Fix: Fix potential crash on shutdown when a Connector depends on the\n Tomcat Native library. (markt)\n + Fix: Fix AJP message length check. Pull request #916 by Joshua Rogers.\n + Fix: 69848: Fix copy/paste errors in 10.1.47 that meant DELETE requests\n received via the AJP connector were processed as OPTIONS requests and\n PROPFIND requests were processed as TRACE. (markt)\n + Fix: Various OCSP processing issues in the OpenSSL FFM code. (dsoumis)\n * General\n + Add: Add test.silent property to suppress JUnit console output during test\n execution. Useful for cleaner console output when running tests with\n multiple threads. (csutherl)\n * Jasper\n + Fix: 69333: Correct a regression in the previous fix for 69333 and ensure\n that reuse() or release() is always called for a tag. (markt)\n + Fix: 69877: Catch IllegalArgumentException when processing URIs when\n creating the classpath to handle invalid URIs. (remm)\n + Fix: Fix populating the classpath with the webapp classloader\n repositories. (remm)\n + Fix: 69862: Avoid NPE unwrapping Servlet exception which would hide some\n exception details. Patch submitted by Eric Blanquer. (remm)\n * Jdbc-pool\n + Fix: 64083: If the underlying connection has been closed, don\u0027t add it to\n the pool when it is returned. Pull request #235 by Alex Panchenko. (markt)\n * Web applications\n + Fix: Manager: Fix abrupt truncation of the HTML and JSON complete server\n status output if one or more of the web applications failed to start.\n (schultz)\n + Add: Manager: Include web application state in the HTML and JSON complete\n server status output. (markt)\n + Add: Documentation: Expand the documentation to better explain when OCSP\n is supported and when it is not. (markt)\n * Websocket\n + Fix: 69920: When attempting to write to a closed Writer or OutputStream\n obtained from a WebSocket session, throw an IOException rather than an\n IllegalStateExcpetion as required by Writer and strongly suggested by\n OutputStream. (markt)\n + Fix: 69845: When using permessage-deflate with Java 25 onwards, handle the\n underlying Inflater and/or Deflater throwing IllegalStateException when\n closed rather than NullPointerException as they do in Java 24 and earlier.\n * Other\n + Update: Update the internal fork of Commons Pool to 2.13.1. (markt)\n + Update: Update the internal fork of Commons DBCP to 2.14.0. (markt)\n + Update: Update Commons Daemon to 1.5.1. (markt)\n + Update: Update ByteBuddy to 1.18.3. (markt)\n + Update: Update UnboundID to 7.0.4. (markt)\n + Update: Update Checkstyle to 12.3.1. (markt)\n + Add: Improvements to French translations. (markt)\n + Add: Improvements to Japanese translations provided by tak7iji. (markt)\n + Add: Improvements to Chinese translations provided by Yang. vincent.h and\n yong hu. (markt)\n + Update: Update Tomcat Native to 2.0.12. (markt)\n + Add: Add property \u0027gpg.sign.files\u0027 to optionally disable release artefact\n signing with GPG. (rjung)\n + Add: Add test profile system for selective test execution. Profiles can be\n specified via -Dtest.profile=\u003cname\u003e to run specific test subsets without\n using patterns directly. Profile patterns are defined in\n test-profiles.properties. (csutherl)\n + Update: Update file extension to media type mappings to align with the\n current list used by the Apache Web Server (httpd). (markt)\n + Update: Update the packaged version of the Tomcat Migration Tool for\n Jakarta EE to 1.0.10. (markt)\n + Update: Update Commons Daemon to 1.5.0. (markt)\n + Update: Update Byte Buddy to 1.18.2. (markt)\n + Update: Update Checkstyle to 12.2.0. (markt)\n + Add: Improvements to Spanish translations provided by White Vogel. (markt)\n + Add: Improvements to French translations. (remm)\n + Update: Update the internal fork of Apache Commons BCEL to 6.11.0. (markt)\n + Update: Update to Byte Buddy 1.17.8. (markt)\n + Update: Update to Checkstyle 12.1.1. (markt)\n + Update: Update to Jacoco 0.8.14. (markt)\n + Update: Update to SpotBugs 4.9.8. (markt)\n + Update: Update to JSign 7.4. (markt)\n + Update: Update Maven Resolver Ant Tasks to 1.6.0. (rjung)\n",
        "title": "Description of the patch"
      },
      {
        "category": "details",
        "text": "SUSE-2026-890,SUSE-SLE-Module-Web-Scripting-15-SP7-2026-890,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2026-890,SUSE-SLE-Product-HPC-15-SP5-LTSS-2026-890,SUSE-SLE-Product-SLES-15-SP5-LTSS-2026-890,SUSE-SLE-Product-SLES-15-SP6-LTSS-2026-890,SUSE-SLE-Product-SLES_SAP-15-SP5-2026-890,SUSE-SLE-Product-SLES_SAP-15-SP6-2026-890,openSUSE-SLE-15.6-2026-890",
        "title": "Patchnames"
      },
      {
        "category": "legal_disclaimer",
        "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
        "title": "Terms of use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://www.suse.com/support/security/contact/",
      "name": "SUSE Product Security Team",
      "namespace": "https://www.suse.com/"
    },
    "references": [
      {
        "category": "external",
        "summary": "SUSE ratings",
        "url": "https://www.suse.com/support/security/rating/"
      },
      {
        "category": "self",
        "summary": "URL of this CSAF notice",
        "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2026_0890-1.json"
      },
      {
        "category": "self",
        "summary": "URL for SUSE-SU-2026:0890-1",
        "url": "https://www.suse.com/support/update/announcement/2026/suse-su-20260890-1/"
      },
      {
        "category": "self",
        "summary": "E-Mail link for SUSE-SU-2026:0890-1",
        "url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024692.html"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1258371",
        "url": "https://bugzilla.suse.com/1258371"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1258385",
        "url": "https://bugzilla.suse.com/1258385"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1258387",
        "url": "https://bugzilla.suse.com/1258387"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2025-66614 page",
        "url": "https://www.suse.com/security/cve/CVE-2025-66614/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-24733 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-24733/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-24734 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-24734/"
      }
    ],
    "title": "Security update for tomcat10",
    "tracking": {
      "current_release_date": "2026-03-13T08:57:08Z",
      "generator": {
        "date": "2026-03-13T08:57:08Z",
        "engine": {
          "name": "cve-database.git:bin/generate-csaf.pl",
          "version": "1"
        }
      },
      "id": "SUSE-SU-2026:0890-1",
      "initial_release_date": "2026-03-13T08:57:08Z",
      "revision_history": [
        {
          "date": "2026-03-13T08:57:08Z",
          "number": "1",
          "summary": "Current version"
        }
      ],
      "status": "final",
      "version": "1"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_version",
                "name": "tomcat10-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-doc-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-doc-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-doc-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-embed-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-embed-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-embed-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-jsvc-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-lib-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
                "product": {
                  "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
                  "product_id": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
                }
              }
            ],
            "category": "architecture",
            "name": "noarch"
          },
          {
            "branches": [
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
                "product": {
                  "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
                  "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp7"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
                "product": {
                  "name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
                  "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sle_hpc-espos:15:sp5"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
                "product": {
                  "name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
                  "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp5"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
                "product": {
                  "name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
                  "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sles-ltss:15:sp5"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Server 15 SP6-LTSS",
                "product": {
                  "name": "SUSE Linux Enterprise Server 15 SP6-LTSS",
                  "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sles-ltss:15:sp6"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
                "product": {
                  "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
                  "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sles_sap:15:sp5"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP6",
                "product": {
                  "name": "SUSE Linux Enterprise Server for SAP Applications 15 SP6",
                  "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sles_sap:15:sp6"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "openSUSE Leap 15.6",
                "product": {
                  "name": "openSUSE Leap 15.6",
                  "product_id": "openSUSE Leap 15.6",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:opensuse:leap:15.6"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "SUSE Linux Enterprise"
          }
        ],
        "category": "vendor",
        "name": "SUSE"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP7",
          "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP7"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
          "product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
          "product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-doc-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-doc-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-embed-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-embed-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsvc-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch as component of openSUSE Leap 15.6",
          "product_id": "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 15.6"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2025-66614",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2025-66614"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Input Validation vulnerability.\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.14, from 10.1.0-M1 through 10.1.49, from 9.0.0-M1 through 9.0.112.\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: 8.5.0 through 8.5.100. Older EOL versions are not affected.\nTomcat did not validate that the host name provided via the SNI \nextension was the same as the host name provided in the HTTP host header \nfield. If Tomcat was configured with more than one virtual host and the \nTLS configuration for one of those hosts did not require client \ncertificate authentication but another one did, it was possible for a \nclient to bypass the client certificate authentication by sending \ndifferent host names in the SNI extension and the HTTP host header field.\n\n\n\nThe vulnerability only applies if client certificate authentication is \nonly enforced at the Connector. It does not apply if client certificate \nauthentication is enforced at the web application.\n\n\nUsers are recommended to upgrade to version 11.0.15 or later, 10.1.50 or later or 9.0.113 or later, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2025-66614",
          "url": "https://www.suse.com/security/cve/CVE-2025-66614"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1258371 for CVE-2025-66614",
          "url": "https://bugzilla.suse.com/1258371"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 7.5,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
            "version": "3.1"
          },
          "products": [
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-03-13T08:57:08Z",
          "details": "important"
        }
      ],
      "title": "CVE-2025-66614"
    },
    {
      "cve": "CVE-2026-24733",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-24733"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Input Validation vulnerability in Apache Tomcat.\n\n\nTomcat did not limit HTTP/0.9 requests to the GET method. If a security \nconstraint was configured to allow HEAD requests to a URI but deny GET \nrequests, the user could bypass that constraint on GET requests by \nsending a (specification invalid) HEAD request using HTTP/0.9.\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.14, from 10.1.0-M1 through 10.1.49, from 9.0.0.M1 through 9.0.112.\n\n\nOlder, EOL versions are also affected.\n\nUsers are recommended to upgrade to version 11.0.15 or later, 10.1.50 or later or 9.0.113 or later, which fixes the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-24733",
          "url": "https://www.suse.com/security/cve/CVE-2026-24733"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1258385 for CVE-2026-24733",
          "url": "https://bugzilla.suse.com/1258385"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 6.5,
            "baseSeverity": "MEDIUM",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
            "version": "3.1"
          },
          "products": [
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-03-13T08:57:08Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-24733"
    },
    {
      "cve": "CVE-2026-24734",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-24734"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Input Validation vulnerability in Apache Tomcat Native, Apache Tomcat.\n\nWhen using an OCSP responder, Tomcat Native (and Tomcat\u0027s FFM port of the Tomcat Native code) did not complete verification or freshness checks on the OCSP response which could allow certificate revocation to be bypassed.\n\nThis issue affects Apache Tomcat Native:   from 1.3.0 through 1.3.4, from 2.0.0 through 2.0.11; Apache Tomcat: from 11.0.0-M1 through 11.0.17, from 10.1.0-M7 through 10.1.51, from 9.0.83 through 9.0.114.\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 1.1.23 through 1.1.34, from 1.2.0 through 1.2.39.  Older EOL versions are not affected.\n\nApache Tomcat Native users are recommended to upgrade to versions 1.3.5 or later or 2.0.12 or later, which fix the issue.\n\nApache Tomcat users are recommended to upgrade to versions 11.0.18 or later, 10.1.52 or later or 9.0.115 or later which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
          "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-24734",
          "url": "https://www.suse.com/security/cve/CVE-2026-24734"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1258387 for CVE-2026-24734",
          "url": "https://bugzilla.suse.com/1258387"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 6.8,
            "baseSeverity": "MEDIUM",
            "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N",
            "version": "3.1"
          },
          "products": [
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Module for Web and Scripting 15 SP7:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP5-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server 15 SP6-LTSS:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP5:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "SUSE Linux Enterprise Server for SAP Applications 15 SP6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-admin-webapps-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-doc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-docs-webapp-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-el-5_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-embed-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsp-3_1-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-jsvc-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-lib-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-servlet-6_0-api-10.1.52-150200.5.61.1.noarch",
            "openSUSE Leap 15.6:tomcat10-webapps-10.1.52-150200.5.61.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-03-13T08:57:08Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-24734"
    }
  ]
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Sightings

Author Source Type Date

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.


Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…