Description
ResourceIsolationRequestCycleListener protects a Wicket application against cross-site request forgery by rejecting requests that a resource isolation policy judges to come from another origin. Its default policy, FetchMetadataResourceIsolationPolicy, was derived from a reference implementation written to guard static resources, and it inherited two allowances that are unsafe when the thing being guarded is an action on a page:
* Every "simple top-level navigation" was allowed. Any GET request carrying Sec-Fetch-Mode: navigate whose Sec-Fetch-Dest was neither object nor embed was allowed, whatever Sec-Fetch-Site said — including cross-site. Wicket invokes component listeners (Link.onClick(), form submits, behaviour callbacks) through ordinary GET navigations, so a page under an attacker's control could navigate the victim's browser to a listener URL and have that listener run inside the victim's authenticated session. Browsers send SameSite=Lax cookies — the effective default when no SameSite attribute is set — on cross-site top-level GET navigations, so the victim's session cookie accompanied the request.
* Sec-Fetch-Site: same-site was allowed unconditionally. That value means the same registrable domain and scheme but a different origin — another subdomain or another port. Any sibling origin could therefore invoke any listener by any method, POST form submits included, and cookies are always sent on same-site requests regardless of SameSite. A hostile sibling origin obtained through a subdomain takeover, through delegated user content, or through an XSS elsewhere on the site could act as the authenticated user.
Users are recommended to upgrade to version 9.24.0 or 10.11.0, which fix the issue.
Affected versions

* Apache Wicket 9.1.0 through 9.23.0
* Apache Wicket 10.0.0 through 10.10.0



Not affected

Any release older than 9.1.0:
* Apache Wicket 8.x (8.0.0 through 8.17.0). The resource isolation classes do not exist in the 8.x line, which offers only the Origin/Referer-based CsrfPreventionRequestCycleListener. No 8.x release requires a fix.
* Apache Wicket 9.0.0. ResourceIsolationRequestCycleListener and FetchMetadataResourceIsolationPolicy were introduced by WICKET-6786 and first shipped in 9.1.0 (released 2020-10-07).
Published: 2026-08-31
Score: n/a
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

ResourceIsolationRequestCycleListener was designed to prevent CSRF by rejecting requests that violate a resource isolation policy. However, the default FetchMetadataResourceIsolationPolicy mistakenly permits two classes of requests that are unsafe. First, any top‑level GET navigation that does not target an object or embed is allowed, even if it originates from a different site. Because browsers send Lax cookies on such navigations, an attacker can cause a victim’s authenticated session to invoke link callbacks, form submissions or other page actions. Second, the policy allows requests whose Sec‑Fetch‑Site header indicates same‑site, meaning the same registrable domain and scheme but a different origin. This permits a sibling origin, such as a subdomain or alternate port, to send POST form submissions that include the victim’s session cookie and trigger any listener. These weaknesses allow an attacker to perform unauthorized actions on behalf of the victim, compromising confidentiality and integrity of data handled by those listeners.

Affected Systems

The vulnerability affects Apache Wicket releases 9.1.0 through 9.23.0 and 10.0.0 through 10.10.0. Versions prior to 9.1.0, including all 8.x releases, do not contain the ResourceIsolationRequestCycleListener and are not impacted.

Risk and Exploitability

The abnormal policy logic has no publicly available EPSS score and the vulnerability is not listed in CISA’s KEV catalog. Nonetheless, the risk is substantial because exploitability requires only the ability to persuade a victim’s browser to load a crafted URL or to host a malicious sibling origin. Successful exploitation would enable a remote attacker to trigger arbitrary authenticated actions within the victim’s session, potentially leading to data disclosure, unauthorized data modification or account takeover. All affected installations should apply the official patch promptly to eliminate the flaw.

Generated by OpenCVE AI on August 31, 2026 at 13:23 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade Apache Wicket to version 9.24.0 or 10.11.0, which contains the patched resource isolation policy.
  • If an upgrade cannot be performed immediately, disable the default ResourceIsolationRequestCycleListener or replace it with a custom policy that blocks cross‑site top‑level GET requests and forbids same‑site sibling origin access to listeners.
  • Configure session cookies for the application to use the SameSite=Strict attribute and eliminate or secure any unused subdomains to prevent sibling‑origin exploitation.

Generated by OpenCVE AI on August 31, 2026 at 13:23 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Mon, 31 Aug 2026 13:45:00 +0000

Type Values Removed Values Added
First Time appeared Apache
Apache wicket
Vendors & Products Apache
Apache wicket

Mon, 31 Aug 2026 13:30:00 +0000

Type Values Removed Values Added
References

Mon, 31 Aug 2026 12:00:00 +0000

Type Values Removed Values Added
Description ResourceIsolationRequestCycleListener protects a Wicket application against cross-site request forgery by rejecting requests that a resource isolation policy judges to come from another origin. Its default policy, FetchMetadataResourceIsolationPolicy, was derived from a reference implementation written to guard static resources, and it inherited two allowances that are unsafe when the thing being guarded is an action on a page: * Every "simple top-level navigation" was allowed. Any GET request carrying Sec-Fetch-Mode: navigate whose Sec-Fetch-Dest was neither object nor embed was allowed, whatever Sec-Fetch-Site said — including cross-site. Wicket invokes component listeners (Link.onClick(), form submits, behaviour callbacks) through ordinary GET navigations, so a page under an attacker's control could navigate the victim's browser to a listener URL and have that listener run inside the victim's authenticated session. Browsers send SameSite=Lax cookies — the effective default when no SameSite attribute is set — on cross-site top-level GET navigations, so the victim's session cookie accompanied the request. * Sec-Fetch-Site: same-site was allowed unconditionally. That value means the same registrable domain and scheme but a different origin — another subdomain or another port. Any sibling origin could therefore invoke any listener by any method, POST form submits included, and cookies are always sent on same-site requests regardless of SameSite. A hostile sibling origin obtained through a subdomain takeover, through delegated user content, or through an XSS elsewhere on the site could act as the authenticated user. Users are recommended to upgrade to version 9.24.0 or 10.11.0, which fix the issue. Affected versions * Apache Wicket 9.1.0 through 9.23.0 * Apache Wicket 10.0.0 through 10.10.0 Not affected Any release older than 9.1.0: * Apache Wicket 8.x (8.0.0 through 8.17.0). The resource isolation classes do not exist in the 8.x line, which offers only the Origin/Referer-based CsrfPreventionRequestCycleListener. No 8.x release requires a fix. * Apache Wicket 9.0.0. ResourceIsolationRequestCycleListener and FetchMetadataResourceIsolationPolicy were introduced by WICKET-6786 and first shipped in 9.1.0 (released 2020-10-07).
Title Apache Wicket: Cross-Site Request Forgery (CSRF) protection bypass in ResourceIsolationRequestCycleListener
Weaknesses CWE-352
References

cve-icon MITRE

Status: PUBLISHED

Assigner: apache

Published:

Updated: 2026-08-31T12:16:31.138Z

Reserved: 2026-08-06T08:09:48.751Z

Link: CVE-2026-71378

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-31T12:17:56.803

Modified: 2026-08-31T13:18:25.100

Link: CVE-2026-71378

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-31T13:30:04Z

Weaknesses
  • CWE-352

    Cross-Site Request Forgery (CSRF)