GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration

OPENSUSE-SU-2026:21810-1

Vulnerability from csaf_opensuse - Published: 2026-09-08 15:47 - Updated: 2026-09-16 21:48
Summary
Security update for tomcat10
Severity
Important
Notes
Title of the patch: Security update for tomcat10
Description of the patch: This update for tomcat10 fixes the following issues: - CVE-2026-65182: Bypass longest prefix security constraint (bsc#1276893). - CVE-2026-65183: TOCTOU when setting specific permissions for Unix Domain Sockets (bsc#1276894). - CVE-2026-65637: HTTP/2 no-authority bypass of strict SNI validation - fix incomplete (bsc#1276895). - CVE-2026-65905: Limited replay attack possible with DIGEST authentication (bsc#1276896). - CVE-2026-65927: RewriteValve [N] restarts at the second rule and may bypass access control (bsc#1276897). - CVE-2026-66299: memory exhaustion via maliciously slow clients due to the WebSocket chat example providing an unbounded buffer for undelivered messages (bsc#1273150). - CVE-2026-66422: Servlet role references can bypass declarative role constraints (bsc#1276898). - CVE-2026-68525: Redirect after FORM auth may bypass method specific constraints (bsc#1276899). - CVE-2026-68569: Principal lookup can fail open in some cases (bsc#1276900). - CVE-2026-68763: DoS via allocation leak in HTTP/2 backlog tracking when a stream is reset (bsc#1276901). - CVE-2026-73180: Authenticated WebSocket session survives end of HTTP session (bsc#1276902). Changes for tomcat10: - Update to Tomcat 10.1.59 * Catalina + Fix: Ensure that a login-config conflict when merging web.xml fragments triggers a deployment failure. (markt) + Code: Remove unnecessary calls to String.intern() in the parsing of configuration files. (markt) + Fix: Extend sessionAttributeValueClassNameFilter to include filtering of dynamic proxy interface classes. (markt) + Fix: Attempt to use rollback when persisting user data to the DataSourceUserDatabase fails and improve error reporting. (remm) + Fix: 70143: Handle InvalidFileNameException when parsing parts to rethrow it as an IllegalStateException as mandated by the Servlet specification. (remm) + Fix: Add missing reason to the JsonErrorReportValve. (remm) + Fix: evaluation of the N and C flags for rewrite rules. (remm) + Fix: qsd flag should always discard the original query string when rewriting. (remm) + Fix: Add appropriate escaping for context path, current directory name and parent directory name for directory listings produced by the default servlet. Ensure XML escaping is used with XML output. (markt) + Fix: When processing certificate subject names and issuer names within RewriteValve rules, always use the RFC 2253 format name. (markt) + Fix: the incorrect rejection of requests using digest authentication when the client provided nonce count is at the upper boundary of the window (markt). + Update: Separate the Context role mapping from the Servlet specification security-role-ref. (remm) + Fix: Handle the case where the JNDIRealm is configured to perform role searches with userRoleAttribute but the attribute is not available or not configured for the current user. (markt) + Fix: Improve handling of session attribute addition concurrent with session expiration. An application will now either see a successful addition followed by expiration or the addition will not succeed. It is no longer possible for the session to expire and the addition to succeed. This is of particular not for attributes that implement HttpSessionBindingListener. (markt) + Fix: Add a new attribute to the Context, urlPatternsProvidedInDecodedForm. This attribute controls whether URLs and URL patterns provided in the deployment descriptor (web.xml), annotations and/or their programmatic equivalents are treated as being provided in URL-encoded form (i.e. using %nn encoding) or in decoded form. The Servlet specification requires that they are provided in decoded form. However, Tomcat has historically treated them as if they are provided in encoded form. In Tomcat 12, they will always be treated as if they are provided in decoded form. This setting enables migration from encoded form to decoded form on an application by application basis. This attribute will be removed in Tomcat 12 where it will effectively be hard-coded to true. (markt) + Fix: Ensure the security constraint with the longest matching path is selected when more than one constraint matches the request path. (markt) + Fix: If the request saved by FORM authentication uses a method other than GET, ensure that the security constraints are re-assessed after the saved request is restored and before it is processed. Custom Authenticator implementations that extend FormAuthenticator and override doAuthenticate() and/or restoreRequest() will require modification. (markt) + Fix: Various improvements to the DataSourceRealm. A failure to connect to the database or an exception during either user or role lookup will now result in an authentication failure rather than a partially populated Principal. For CLIENT-CERT and SPNEGO authentication, the user must exist in the database for authentication to succeed. (markt) + Fix: Improve the handling of AsyncContext.dispatch() when the Context attribute dispatchersUseEncodedPaths is set to false since the application has no control over the path used for the AsyncContext.dispatch(). Prior to this fix, paths containing literal '?' characters were truncated. (markt) + Fix: Ensure that capture groups from a RewriteCond always reflect the result of the current request. (markt) + Fix: async path building. (markt) * Coyote + Update: Add utility AutoCloseable URLConnection wrapper, and use it to cleanup existing code patterns. (remm/markt) + Fix: When processing an HTTP upgrade from HTTP/1.1 to HTTP/2, ensure that all the HTTP/1.1 data has been processed before switching protocols. (markt) + Fix: Require every HTTP/2 request to provide an authority (either an :authority pseudo header or a Host header). (markt) + Fix: Register the use of an HTTP/2 stream identifier earlier so that there is no possibility of a re-used stream identifier being accepted, regardless of how early in the HEADERS frame processing an error is detected. (markt) + Add: new attributes (unixDomainSocketParentPermissions and unixDomainSocketParentOwner) to the NIO connector to provide additional control over the security of Unix Domain Sockets. Additional checks (enabled by default) have also been added for the directory where the Unix Domain Socket will be created.(markt) + Fix: an allocation leak in the HTTP/2 backlog tracking when a stream is reset. (markt) + Fix: parsing of client certificates that specify more than one OCSP responder for configurations that use OpenSSL-FFM. (markt) * Jasper + Fix: Ensure internal state is reset before re-using ELParser. (markt) * WebSocket + Add: a limit (defaults to 8KB) on the size of the HTTP response headers accepted during a WebSocket HTTP upgrade. This is configured via the org.apache.tomcat.websocket.MAX_HTTP_RESPONSE_HEADER_BYTES user property. (markt) + Fix: Improve URI template matching for WebSocket end points. Trailing slashes are now significant both for template definitions and URIs considered for potential matches to those URIs. Note that this means if a URI template ends in a variable without a trailing slash, that variable might be expanded to the empty string. (markt) + Fix: Account for session ID changes when tracking WebSocket connections for closure because they were created under an authenticated HTTP session that has since ended. (markt) * Web applications + Fix: Documentation: Better sample httpd configuration for use with SSLValve and add a note that the exact configuration required will depend on the overall httpd configuration. (markt) + Fix: Examples: Limit the buffering of messages in the WebSocket chat example to prevent a malicious client triggering excessive memory usage that could lead to a DoS. (markt) + Fix: Documentation: Expand the description of the %S (session ID) access log pattern token. (markt) + Fix: Manager: Use reflection to load clustering classes in sessionsList.jsp so the sessions list page renders correctly when clustering JARs are not present. (csutherl) * Other + Update: Maven Resolver Ant Tasks to 1.6.1. (rjung) + Update: Objenesis to 3.6. (markt) + Update: JSign to 7.5. (markt) + Update: Bouncy Castle to 1.85. (markt) + Add: Improvements to French translations. (remm) + Add: Improvements to Japanese translations provided by tak7iji. (markt) * Cluster + Add: Change the default encryptionAlgorithm for the EncryptInterceptor to AES/GCM/NoPadding. This is a breaking change for the EncryptInterceptor. (markt) + Add: Expand the documentation for the EncryptInterceptor to be more explicit regarding the security weaknesses of some supported algorithms. Also explicitly state that the replay protection is only effective for non-malleable algorithms. (markt) + Add: Expand the Javadoc for the DNSMembershipProvider in particular explaining its behaviour and providing configuration advice if control more over cluster membership is required. (markt) * jdbc-pool + Fix: 70164: Correct the documentation for the testOnBorrow attribute. Pull request #1033 provided by Kohei Tamura. (markt)
Patchnames: openSUSE-Leap-16.0-1641
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
Affected products
Product Identifier Version Remediation
Unresolved product id: openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch
Vendor Fix
Unresolved product id: openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch
Vendor Fix
Threats
Impact important
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact important
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact moderate
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact important
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact moderate
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact important
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact important
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact moderate
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact moderate
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact moderate
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact important
Affected products
Recommended 11 products, the same list as for CVE-2026-32990
Threats
Impact moderate
References
URL Category
https://www.suse.com/support/security/rating/ external
https://ftp.suse.com/pub/projects/security/csaf/o… self
https://bugzilla.suse.com/1273150 self
https://bugzilla.suse.com/1276893 self
https://bugzilla.suse.com/1276894 self
https://bugzilla.suse.com/1276895 self
https://bugzilla.suse.com/1276896 self
https://bugzilla.suse.com/1276897 self
https://bugzilla.suse.com/1276898 self
https://bugzilla.suse.com/1276899 self
https://bugzilla.suse.com/1276900 self
https://bugzilla.suse.com/1276901 self
https://bugzilla.suse.com/1276902 self
https://www.suse.com/security/cve/CVE-2026-32990/ self
https://www.suse.com/security/cve/CVE-2026-65182/ self
https://www.suse.com/security/cve/CVE-2026-65183/ self
https://www.suse.com/security/cve/CVE-2026-65637/ self
https://www.suse.com/security/cve/CVE-2026-65905/ self
https://www.suse.com/security/cve/CVE-2026-65927/ self
https://www.suse.com/security/cve/CVE-2026-66299/ self
https://www.suse.com/security/cve/CVE-2026-66422/ self
https://www.suse.com/security/cve/CVE-2026-68525/ self
https://www.suse.com/security/cve/CVE-2026-68569/ self
https://www.suse.com/security/cve/CVE-2026-68763/ self
https://www.suse.com/security/cve/CVE-2026-73180/ self
https://www.suse.com/security/cve/CVE-2026-32990 external
https://bugzilla.suse.com/1258371 external
https://bugzilla.suse.com/1276895 external
https://www.suse.com/security/cve/CVE-2026-65182 external
https://bugzilla.suse.com/1276893 external
https://www.suse.com/security/cve/CVE-2026-65183 external
https://bugzilla.suse.com/1276894 external
https://www.suse.com/security/cve/CVE-2026-65637 external
https://bugzilla.suse.com/1276895 external
https://www.suse.com/security/cve/CVE-2026-65905 external
https://bugzilla.suse.com/1276896 external
https://www.suse.com/security/cve/CVE-2026-65927 external
https://bugzilla.suse.com/1276897 external
https://www.suse.com/security/cve/CVE-2026-66299 external
https://bugzilla.suse.com/1273150 external
https://www.suse.com/security/cve/CVE-2026-66422 external
https://bugzilla.suse.com/1276898 external
https://www.suse.com/security/cve/CVE-2026-68525 external
https://bugzilla.suse.com/1276899 external
https://www.suse.com/security/cve/CVE-2026-68569 external
https://bugzilla.suse.com/1276900 external
https://www.suse.com/security/cve/CVE-2026-68763 external
https://bugzilla.suse.com/1276901 external
https://www.suse.com/security/cve/CVE-2026-73180 external
https://bugzilla.suse.com/1276902 external

{
  "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\n- CVE-2026-65182: Bypass longest prefix security constraint (bsc#1276893).\n- CVE-2026-65183: TOCTOU when setting specific permissions for Unix Domain Sockets (bsc#1276894).\n- CVE-2026-65637: HTTP/2 no-authority bypass of strict SNI validation - fix incomplete (bsc#1276895).\n- CVE-2026-65905: Limited replay attack possible with DIGEST authentication (bsc#1276896).\n- CVE-2026-65927: RewriteValve [N] restarts at the second rule and may bypass access control (bsc#1276897).\n- CVE-2026-66299: memory exhaustion via maliciously slow clients due to the WebSocket chat example providing an\n  unbounded buffer for undelivered messages (bsc#1273150).\n- CVE-2026-66422: Servlet role references can bypass declarative role constraints (bsc#1276898).\n- CVE-2026-68525: Redirect after FORM auth may bypass method specific constraints (bsc#1276899).\n- CVE-2026-68569: Principal lookup can fail open in some cases (bsc#1276900).\n- CVE-2026-68763: DoS via allocation leak in HTTP/2 backlog tracking when a stream is reset\n  (bsc#1276901).\n- CVE-2026-73180: Authenticated WebSocket session survives end of HTTP session (bsc#1276902).\n\nChanges for tomcat10:\n\n- Update to Tomcat 10.1.59\n * Catalina\n + Fix: Ensure that a login-config conflict when merging web.xml fragments\n triggers a deployment failure. (markt)\n + Code: Remove unnecessary calls to String.intern() in the parsing of\n configuration files. (markt)\n + Fix: Extend sessionAttributeValueClassNameFilter to include filtering of\n dynamic proxy interface classes. (markt)\n + Fix: Attempt to use rollback when persisting user data to the\n DataSourceUserDatabase fails and improve error reporting. (remm)\n + Fix: 70143: Handle InvalidFileNameException when parsing parts to\n rethrow it as an IllegalStateException as mandated by the Servlet\n specification. (remm)\n + Fix: Add missing reason to the JsonErrorReportValve. (remm)\n + Fix: evaluation of the N and C flags for rewrite rules. (remm)\n + Fix: qsd flag should always discard the original query string when\n rewriting. (remm)\n + Fix: Add appropriate escaping for context path, current directory name\n and parent directory name for directory listings produced by the default\n servlet. Ensure XML escaping is used with XML output. (markt)\n + Fix: When processing certificate subject names and issuer names within\n RewriteValve rules, always use the RFC 2253 format name. (markt)\n + Fix: the incorrect rejection of requests using digest authentication\n when the client provided nonce count is at the upper boundary of the\n window (markt).\n + Update: Separate the Context role mapping from the Servlet specification\n security-role-ref. (remm)\n + Fix: Handle the case where the JNDIRealm is configured to perform role\n searches with userRoleAttribute but the attribute is not available or\n not configured for the current user. (markt)\n + Fix: Improve handling of session attribute addition concurrent with\n session expiration. An application will now either see a successful\n addition followed by expiration or the addition will not succeed. It is\n no longer possible for the session to expire and the addition to\n succeed. This is of particular not for attributes that implement\n HttpSessionBindingListener. (markt)\n + Fix: Add a new attribute to the Context,\n urlPatternsProvidedInDecodedForm. This attribute controls whether URLs\n and URL patterns provided in the deployment descriptor (web.xml),\n annotations and/or their programmatic equivalents are treated as being\n provided in URL-encoded form (i.e. using %nn encoding) or in decoded\n form. The Servlet specification requires that they are provided in\n decoded form. However, Tomcat has historically treated them as if they\n are provided in encoded form. In Tomcat 12, they will always be treated\n as if they are provided in decoded form. This setting enables migration\n from encoded form to decoded form on an application by application\n basis. This attribute will be removed in Tomcat 12 where it will\n effectively be hard-coded to true. (markt)\n + Fix: Ensure the security constraint with the longest matching path is\n selected when more than one constraint matches the request path. (markt)\n + Fix: If the request saved by FORM authentication uses a method other\n than GET, ensure that the security constraints are re-assessed after the\n saved request is restored and before it is processed. Custom\n Authenticator implementations that extend FormAuthenticator and override\n doAuthenticate() and/or restoreRequest() will require modification.\n (markt)\n + Fix: Various improvements to the DataSourceRealm. A failure to connect\n to the database or an exception during either user or role lookup will\n now result in an authentication failure rather than a partially\n populated Principal. For CLIENT-CERT and SPNEGO authentication, the user\n must exist in the database for authentication to succeed. (markt)\n + Fix: Improve the handling of AsyncContext.dispatch() when the Context\n attribute dispatchersUseEncodedPaths is set to false since the\n application has no control over the path used for the\n AsyncContext.dispatch(). Prior to this fix, paths containing literal \u0027?\u0027\n characters were truncated. (markt)\n + Fix: Ensure that capture groups from a RewriteCond always reflect the\n result of the current request. (markt)\n + Fix: async path building. (markt)\n * Coyote\n + Update: Add utility AutoCloseable URLConnection wrapper, and use it to\n cleanup existing code patterns. (remm/markt)\n + Fix: When processing an HTTP upgrade from HTTP/1.1 to HTTP/2, ensure\n that all the HTTP/1.1 data has been processed before switching\n protocols. (markt)\n + Fix: Require every HTTP/2 request to provide an authority (either an\n :authority pseudo header or a Host header). (markt)\n + Fix: Register the use of an HTTP/2 stream identifier earlier so that\n there is no possibility of a re-used stream identifier being accepted,\n regardless of how early in the HEADERS frame processing an error is\n detected. (markt)\n + Add: new attributes (unixDomainSocketParentPermissions and\n unixDomainSocketParentOwner) to the NIO connector to provide additional\n control over the security of Unix Domain Sockets. Additional checks\n (enabled by default) have also been added for the directory where the\n Unix Domain Socket will be created.(markt)\n + Fix: an allocation leak in the HTTP/2 backlog tracking when a stream is\n reset. (markt)\n + Fix: parsing of client certificates that specify more than one OCSP\n responder for configurations that use OpenSSL-FFM. (markt)\n * Jasper\n + Fix: Ensure internal state is reset before re-using ELParser. (markt)\n * WebSocket\n + Add: a limit (defaults to 8KB) on the size of the HTTP response headers\n accepted during a WebSocket HTTP upgrade. This is configured via the\n org.apache.tomcat.websocket.MAX_HTTP_RESPONSE_HEADER_BYTES user\n property. (markt)\n + Fix: Improve URI template matching for WebSocket end points. Trailing\n slashes are now significant both for template definitions and URIs\n considered for potential matches to those URIs. Note that this means if\n a URI template ends in a variable without a trailing slash, that\n variable might be expanded to the empty string. (markt)\n + Fix: Account for session ID changes when tracking WebSocket connections\n for closure because they were created under an authenticated HTTP\n session that has since ended. (markt)\n * Web applications\n + Fix: Documentation: Better sample httpd configuration for use with\n SSLValve and add a note that the exact configuration required will\n depend on the overall httpd configuration. (markt)\n + Fix: Examples: Limit the buffering of messages in the WebSocket chat\n example to prevent a malicious client triggering excessive memory usage\n that could lead to a DoS. (markt)\n + Fix: Documentation: Expand the description of the %S (session ID) access\n log pattern token. (markt)\n + Fix: Manager: Use reflection to load clustering classes in\n sessionsList.jsp so the sessions list page renders correctly when\n clustering JARs are not present. (csutherl)\n * Other\n + Update: Maven Resolver Ant Tasks to 1.6.1. (rjung)\n + Update: Objenesis to 3.6. (markt)\n + Update: JSign to 7.5. (markt)\n + Update: Bouncy Castle to 1.85. (markt)\n + Add: Improvements to French translations. (remm)\n + Add: Improvements to Japanese translations provided by tak7iji. (markt)\n * Cluster\n + Add: Change the default encryptionAlgorithm for the EncryptInterceptor\n to AES/GCM/NoPadding. This is a breaking change for the\n EncryptInterceptor. (markt)\n + Add: Expand the documentation for the EncryptInterceptor to be more\n explicit regarding the security weaknesses of some supported algorithms.\n Also explicitly state that the replay protection is only effective for\n non-malleable algorithms. (markt)\n + Add: Expand the Javadoc for the DNSMembershipProvider in particular\n explaining its behaviour and providing configuration advice if control\n more over cluster membership is required. (markt)\n * jdbc-pool\n + Fix: 70164: Correct the documentation for the testOnBorrow attribute.\n Pull request #1033 provided by Kohei Tamura. (markt)\n",
        "title": "Description of the patch"
      },
      {
        "category": "details",
        "text": "openSUSE-Leap-16.0-1641",
        "title": "Patchnames"
      },
      {
        "category": "legal_disclaimer",
        "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
        "title": "Terms of use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://www.suse.com/support/security/contact/",
      "name": "SUSE Product Security Team",
      "namespace": "https://www.suse.com/"
    },
    "references": [
      {
        "category": "external",
        "summary": "SUSE ratings",
        "url": "https://www.suse.com/support/security/rating/"
      },
      {
        "category": "self",
        "summary": "URL of this CSAF notice",
        "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_21810-1.json"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1273150",
        "url": "https://bugzilla.suse.com/1273150"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276893",
        "url": "https://bugzilla.suse.com/1276893"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276894",
        "url": "https://bugzilla.suse.com/1276894"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276895",
        "url": "https://bugzilla.suse.com/1276895"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276896",
        "url": "https://bugzilla.suse.com/1276896"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276897",
        "url": "https://bugzilla.suse.com/1276897"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276898",
        "url": "https://bugzilla.suse.com/1276898"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276899",
        "url": "https://bugzilla.suse.com/1276899"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276900",
        "url": "https://bugzilla.suse.com/1276900"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276901",
        "url": "https://bugzilla.suse.com/1276901"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1276902",
        "url": "https://bugzilla.suse.com/1276902"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-32990 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-32990/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-65182 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-65182/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-65183 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-65183/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-65637 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-65637/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-65905 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-65905/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-65927 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-65927/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-66299 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-66299/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-66422 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-66422/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-68525 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-68525/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-68569 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-68569/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-68763 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-68763/"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2026-73180 page",
        "url": "https://www.suse.com/security/cve/CVE-2026-73180/"
      }
    ],
    "title": "Security update for tomcat10",
    "tracking": {
      "current_release_date": "2026-09-16T21:48:36Z",
      "generator": {
        "date": "2026-09-08T15:47:18Z",
        "engine": {
          "name": "cve-database.git:bin/generate-csaf.pl",
          "version": "1"
        }
      },
      "id": "openSUSE-SU-2026:21810-1",
      "initial_release_date": "2026-09-08T15:47:18Z",
      "revision_history": [
        {
          "date": "2026-09-08T15:47:18Z",
          "number": "1",
          "summary": "Current version"
        },
        {
          "date": "2026-09-16T20:47:41Z",
          "number": "2",
          "summary": "unknown changes"
        },
        {
          "date": "2026-09-16T21:48:36Z",
          "number": "3",
          "summary": "unknown changes"
        }
      ],
      "status": "final",
      "version": "3"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_version",
                "name": "tomcat10-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-admin-webapps@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-doc-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-doc-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-doc-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-doc@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-docs-webapp@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-el-5_0-api@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-embed-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-embed-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-embed-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-embed@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-jsp-3_1-api@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-jsvc-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-jsvc-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-jsvc-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-jsvc@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-lib-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-lib-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-lib-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-lib@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-servlet-6_0-api@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "tomcat10-webapps-10.1.59-160000.1.1.noarch",
                "product": {
                  "name": "tomcat10-webapps-10.1.59-160000.1.1.noarch",
                  "product_id": "tomcat10-webapps-10.1.59-160000.1.1.noarch",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:a:apache:tomcat:10.1.59:*:*:*:*:*:*:*",
                    "purl": "pkg:rpm/suse/tomcat10-webapps@10.1.59-160000.1.1?arch=noarch\u0026upstream=tomcat10-10.1.59-160000.1.1.src.rpm"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "noarch"
          },
          {
            "branches": [
              {
                "category": "product_name",
                "name": "openSUSE Leap 16.0",
                "product": {
                  "name": "openSUSE Leap 16.0",
                  "product_id": "openSUSE Leap 16.0"
                }
              }
            ],
            "category": "product_family",
            "name": "SUSE Linux Enterprise"
          }
        ],
        "category": "vendor",
        "name": "SUSE"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-admin-webapps-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-doc-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-doc-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-docs-webapp-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-embed-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-embed-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-jsvc-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-jsvc-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-lib-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-lib-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "tomcat10-webapps-10.1.59-160000.1.1.noarch as component of openSUSE Leap 16.0",
          "product_id": "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        },
        "product_reference": "tomcat10-webapps-10.1.59-160000.1.1.noarch",
        "relates_to_product_reference": "openSUSE Leap 16.0"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2026-32990",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-32990"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Input Validation vulnerability in Apache Tomcat due to an incomplete fix of CVE-2025-66614.\n\nThis issue affects Apache Tomcat: from 11.0.15 through 11.0.19, from 10.1.50 through 10.1.52, from 9.0.113 through 9.0.115.\n\nUsers are recommended to upgrade to version 11.0.20, 10.1.53 or 9.0.116, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-32990",
          "url": "https://www.suse.com/security/cve/CVE-2026-32990"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1258371 for CVE-2026-32990",
          "url": "https://bugzilla.suse.com/1258371"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276895 for CVE-2026-32990",
          "url": "https://bugzilla.suse.com/1276895"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "important"
        }
      ],
      "title": "CVE-2026-32990"
    },
    {
      "cve": "CVE-2026-65182",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-65182"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Access Control, Incorrect Authorization vulnerability in Apache Tomcat leads to security constraint bypass if a constraint for a longer path is specified before a more restrictive constraint for a shorter sub-path.\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.0.M1 through 9.0.120, from 8.5.0 through 8.5.100, from 7.0.0 through 7.0.109.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58, 9.0.121, which fixes the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-65182",
          "url": "https://www.suse.com/security/cve/CVE-2026-65182"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276893 for CVE-2026-65182",
          "url": "https://bugzilla.suse.com/1276893"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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:H/I:N/A:N",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "important"
        }
      ],
      "title": "CVE-2026-65182"
    },
    {
      "cve": "CVE-2026-65183",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-65183"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Time-of-check Time-of-use (TOCTOU) Race Condition vulnerability in Apache Tomcat when creating unix domain sockets allows an unauthorised local user to access the unix domain socket.\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.42 through 9.0.120.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58, 9.0.121, which fixes the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-65183",
          "url": "https://www.suse.com/security/cve/CVE-2026-65183"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276894 for CVE-2026-65183",
          "url": "https://bugzilla.suse.com/1276894"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 5.3,
            "baseSeverity": "MEDIUM",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-65183"
    },
    {
      "cve": "CVE-2026-65637",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-65637"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Input Validation vulnerability in Apache Tomcat due to incomplete fix for CVE-2026-32990.\n\n\n\nThis issue affects Apache Tomcat: from 11.0.20 through 11.0.24, from 10.1.53 through 10.1.57, from 9.0.115 through 9.0.120.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-65637",
          "url": "https://www.suse.com/security/cve/CVE-2026-65637"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276895 for CVE-2026-65637",
          "url": "https://bugzilla.suse.com/1276895"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 7.3,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "important"
        }
      ],
      "title": "CVE-2026-65637"
    },
    {
      "cve": "CVE-2026-65905",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-65905"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Authentication Bypass by Capture-replay vulnerability in Apache Tomcat\u0027s DIGEST authenticator. If, before windowSize requests have been made, a client makes a DIGEST \nauthenticated request with a nonceCount on the upper boundary of the \nreplay window then that request is replayable once only while the \nassociated nonceCount remains within the replay window.\n\n\n\n  \n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.0.M1 through 9.0.120.\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected:  from 8.5.0 through 8.5.100, from 7.0.30 through 7.0.109. Other unsupported versions may also be affected.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-65905",
          "url": "https://www.suse.com/security/cve/CVE-2026-65905"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276896 for CVE-2026-65905",
          "url": "https://bugzilla.suse.com/1276896"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 5.3,
            "baseSeverity": "MEDIUM",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-65905"
    },
    {
      "cve": "CVE-2026-65927",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-65927"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Off-by-one Error vulnerability in Apache Tomcat impacting the [N] flag on the rewrite valves causes rewrite processing to restart at the second rule rather than the first rule.\n\n\n\n\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.0.M1 through 9.0.120.\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 8.5.0 through 8.5.100. Other unsupported versions may also be affected.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121 which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-65927",
          "url": "https://www.suse.com/security/cve/CVE-2026-65927"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276897 for CVE-2026-65927",
          "url": "https://bugzilla.suse.com/1276897"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 7.3,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "important"
        }
      ],
      "title": "CVE-2026-65927"
    },
    {
      "cve": "CVE-2026-66299",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-66299"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Uncontrolled Resource Consumption vulnerability in Apache Tomcat\u0027s WebSocket chat example.\n\nThis issue affects Apache Tomcat: from 11.0.0-M20 through 11.0.24, from 10.1.24 through 10.1.57, from 9.0.89 through 9.0.120. Users who have followed the security guidance to remove the examples web application are not affected by this issue.\n\nUsers are recommended to remove the examples web application or to upgrade to version 11.0.25, 10.1.58 or 9.0.121 (when released), which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-66299",
          "url": "https://www.suse.com/security/cve/CVE-2026-66299"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1273150 for CVE-2026-66299",
          "url": "https://bugzilla.suse.com/1273150"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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:N/A:H",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "important"
        }
      ],
      "title": "CVE-2026-66299"
    },
    {
      "cve": "CVE-2026-66422",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-66422"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Authorization vulnerability in Apache Tomcat cause by security-role-ref definitions being incorrectly used as role aliases within the Realm in additional to the correct usage with Request.isUserInRole().\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.25 through 9.0.120.\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 8.5.46 through 8.5.100, from 7.0.97 through 7.0.109. Other unsupported versions may also be affected.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-66422",
          "url": "https://www.suse.com/security/cve/CVE-2026-66422"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276898 for CVE-2026-66422",
          "url": "https://bugzilla.suse.com/1276898"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-66422"
    },
    {
      "cve": "CVE-2026-68525",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-68525"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Incorrect Authorization vulnerability in Apache Tomcat\u0027s FORM authentication process allows the bypassing of a security constraint that limits user has access to a resource POST but not GET.\n\n\n\n\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.0.M1 through 9.0.120.\n\n\n\n\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 8.5.0 through 8.5.100, from 7.0.0 through 7.0.109. Other unsupported versions may also be affected.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fixes the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-68525",
          "url": "https://www.suse.com/security/cve/CVE-2026-68525"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276899 for CVE-2026-68525",
          "url": "https://bugzilla.suse.com/1276899"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-68525"
    },
    {
      "cve": "CVE-2026-68569",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-68569"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Improper Authentication vulnerability in Apache Tomcat meant that in some circumstances (e.g. CLIENT-CERT, SPNEGO) that a user would be authenticated even if the user did not exist in the DataSourceRealm.\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.0.M1 through 9.0.120.\n\n\n\n\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 8.5.0 through 8.5.100, from 7.0.0 through 7.0.109. Other unsupported versions may also be affected.\n\n\n\n\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-68569",
          "url": "https://www.suse.com/security/cve/CVE-2026-68569"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276900 for CVE-2026-68569",
          "url": "https://bugzilla.suse.com/1276900"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-68569"
    },
    {
      "cve": "CVE-2026-68763",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-68763"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Uncontrolled Resource Consumption vulnerability in Apache Tomcat  via an allocation leak in the HTTP/2 backlog tracking when a stream is reset\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.39 through 9.0.120.\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 8.5.59 through 8.5.100.  Other unsupported versions may also be affected.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-68763",
          "url": "https://www.suse.com/security/cve/CVE-2026-68763"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276901 for CVE-2026-68763",
          "url": "https://bugzilla.suse.com/1276901"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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:N/A:H",
            "version": "3.1"
          },
          "products": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "important"
        }
      ],
      "title": "CVE-2026-68763"
    },
    {
      "cve": "CVE-2026-73180",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2026-73180"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "Insufficient Session Expiration vulnerability in Apache Tomcat meant that if the session ID for an authenticated HTTP session was changed after a WebSocket connection had been established under that authenticated HTTP session, the WebSokcet session would not be closed as required by the Jakarta WebSocket specification when the HTTP session ended.\n\n\n\nThis issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.24, from 10.1.0-M1 through 10.1.57, from 9.0.0.M1 through 9.0.120.\n\n\n\nThe following versions were EOL at the time the CVE was created but are \nknown to be affected: from 8.5.0 through 8.5.100, from 7.0.43 through 7.0.109.  Other unsupported versions may also be affected.\n\n\n\nUsers are recommended to upgrade to version 11.0.25, 10.1.58 or 9.0.121, which fix the issue.",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
          "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2026-73180",
          "url": "https://www.suse.com/security/cve/CVE-2026-73180"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1276902 for CVE-2026-73180",
          "url": "https://bugzilla.suse.com/1276902"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.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": [
            "openSUSE Leap 16.0:tomcat10-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-admin-webapps-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-doc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-docs-webapp-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-el-5_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-embed-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsp-3_1-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-jsvc-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-lib-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-servlet-6_0-api-10.1.59-160000.1.1.noarch",
            "openSUSE Leap 16.0:tomcat10-webapps-10.1.59-160000.1.1.noarch"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2026-09-08T15:47:18Z",
          "details": "moderate"
        }
      ],
      "title": "CVE-2026-73180"
    }
  ]
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

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…

Related by attack behaviour

Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.


Loading…