A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-40010

CVE-2026-40010: Apache Wicket Auth Bypass Vulnerability

CVE-2026-40010 is an authentication bypass flaw in Apache Wicket caused by missing session ID regeneration, enabling session fixation attacks. This article covers technical details, affected versions, and patches.

Published: May 7, 2026

CVE-2026-40010 Overview

CVE-2026-40010 is a session fixation vulnerability in Apache Wicket, a component-based Java web application framework. The flaw stems from a missing invocation of the Servlet HTTP web request method changeSessionId after session binding. This omission allows an attacker to fixate a known session identifier on a victim and inherit the authenticated session once the victim logs in. The issue affects Apache Wicket versions 8.0.0 through 8.17.0, version 9.0.0, and versions 10.0.0 through 10.8.0. The Apache Software Foundation has released version 10.9.0 to address the issue.

Critical Impact

Successful exploitation enables an unauthenticated, remote attacker to hijack authenticated user sessions, leading to account takeover and unauthorized access to confidential application data.

Affected Products

  • Apache Wicket 8.0.0 through 8.17.0
  • Apache Wicket 9.0.0
  • Apache Wicket 10.0.0 through 10.8.0

Discovery Timeline

  • 2026-05-06 - CVE-2026-40010 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-40010

Vulnerability Analysis

The vulnerability is classified under [CWE-384] Session Fixation. Apache Wicket fails to call HttpServletRequest.changeSessionId() after a user session is bound following authentication. As a result, the session identifier issued before authentication continues to identify the authenticated session.

An attacker who plants a known session ID in the victim's browser, for example through a crafted link or a network-injected Set-Cookie header, can reuse that identifier after the victim authenticates. The attacker then operates as the authenticated user without ever knowing the victim's credentials.

The attack can be carried out remotely over the network, requires no privileges, and does not require user interaction beyond visiting an attacker-influenced page or following a crafted link.

Root Cause

The Servlet 3.1 specification introduced changeSessionId() to mitigate session fixation by rotating the session identifier on privilege transitions. Apache Wicket's session binding logic did not invoke this method when associating an authenticated principal with the active session. The pre-authentication identifier therefore persisted across the authentication boundary, breaking the security assumption that authentication invalidates anonymous session state.

Attack Vector

A typical exploitation chain proceeds as follows. The attacker first obtains a valid JSESSIONID from the target Wicket application. The attacker then induces the victim to use that identifier through cross-site scripting, a malicious link with the session ID in a URL parameter, or a network man-in-the-middle position that injects a session cookie. When the victim authenticates, the application binds the authenticated principal to the attacker-chosen session ID. The attacker, holding the same identifier, replays it and accesses the victim's authenticated session. Detailed discussion is available in the Apache Mailing List Discussion and the OpenWall OSS Security Update.

Detection Methods for CVE-2026-40010

Indicators of Compromise

  • A JSESSIONID value that remains identical across the unauthenticated and authenticated portions of a user's request stream.
  • Multiple distinct source IP addresses or User-Agent strings using the same session identifier within a short time window.
  • Session cookies arriving in inbound requests that were never previously issued by the application in a Set-Cookie response.
  • Authentication events on Wicket endpoints not preceded by a session ID rotation in access logs.

Detection Strategies

  • Inventory deployed Apache Wicket versions across web tiers and flag any instance running 8.0.0 through 8.17.0, 9.0.0, or 10.0.0 through 10.8.0.
  • Correlate web server access logs to identify session IDs that appear unchanged before and after the login endpoint is hit.
  • Alert on concurrent use of the same JSESSIONID from geographically or network-distinct sources.
  • Inspect application logs for authentication success events that do not coincide with a fresh session identifier.

Monitoring Recommendations

  • Forward web access logs and Wicket application logs to a centralized analytics platform for cross-session correlation.
  • Track baselines of session ID rotation frequency to surface deviations from expected post-authentication behavior.
  • Monitor outbound Set-Cookie headers from authentication endpoints to confirm new session identifiers are issued on login.

How to Mitigate CVE-2026-40010

Immediate Actions Required

  • Upgrade Apache Wicket to version 10.9.0, which adds the missing changeSessionId() invocation after session binding.
  • Identify all internal and external applications built on vulnerable Wicket versions and prioritize patching for internet-facing deployments.
  • Invalidate all currently active sessions after upgrading to ensure any pre-existing fixated identifiers are revoked.
  • Review authentication audit logs for the indicators listed above to identify possible prior abuse.

Patch Information

Apache Wicket 10.9.0 resolves CVE-2026-40010 by ensuring the application calls HttpServletRequest.changeSessionId() when binding an authenticated session. Refer to the Apache Mailing List Discussion for the official advisory and upgrade guidance. Users on the 8.x and 9.x branches should evaluate migration paths to a fixed branch as no backport is referenced in the advisory.

Workarounds

  • Configure the servlet container to rotate session identifiers on authentication using container-level features such as <session-config> rotation policies where supported.
  • Apply a custom AuthenticatedWebSession subclass override that explicitly calls request.changeSessionId() after a successful sign-in until the upgrade can be deployed.
  • Enforce the HttpOnly, Secure, and SameSite=Strict attributes on JSESSIONID cookies to limit attacker ability to plant identifiers via cross-site channels.
  • Terminate plaintext HTTP listeners and require TLS to reduce the feasibility of network-based session injection.
bash
# Example Maven dependency update to the fixed version
<dependency>
  <groupId>org.apache.wicket</groupId>
  <artifactId>wicket-core</artifactId>
  <version>10.9.0</version>
</dependency>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechApache Wicket

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-384
  • Technical References
  • OpenWall OSS Security Update
  • Vendor Resources
  • Apache Mailing List Discussion
  • Related CVEs
  • CVE-2026-42509: Apache Wicket XSS Vulnerability

  • CVE-2026-43646: Apache Wicket Information Disclosure Flaw

  • CVE-2026-43975: Apache Wicket Path Traversal Vulnerability

  • CVE-2024-36522: Apache Wicket RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English