The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-2022-31684

CVE-2022-31684: Reactor Netty Information Disclosure Flaw

CVE-2022-31684 is an information disclosure vulnerability in Pivotal Reactor Netty HTTP Server that may expose access tokens in logs during invalid HTTP requests. This article covers technical details, affected versions, and mitigation.

Published: February 18, 2026

CVE-2022-31684 Overview

Reactor Netty HTTP Server contains an information disclosure vulnerability in versions 1.0.11 through 1.0.23. The HTTP server component may log request headers in certain cases when processing invalid HTTP requests. When WARN level logging is enabled, the logged headers may inadvertently reveal valid access tokens to unauthorized parties who have access to server logs. This vulnerability specifically affects environments where invalid HTTP requests occur and WARN level logging is configured.

Critical Impact

Access tokens and other sensitive authentication credentials in HTTP request headers may be exposed in server logs, potentially enabling unauthorized access to protected resources.

Affected Products

  • Pivotal Reactor Netty versions 1.0.11 through 1.0.23
  • Applications using affected Reactor Netty HTTP Server components
  • Spring WebFlux applications leveraging vulnerable Reactor Netty versions

Discovery Timeline

  • 2022-10-19 - CVE-2022-31684 published to NVD
  • 2025-05-09 - Last updated in NVD database

Technical Details for CVE-2022-31684

Vulnerability Analysis

This vulnerability falls under CWE-532 (Insertion of Sensitive Information into Log File). The Reactor Netty HTTP Server, a non-blocking I/O library commonly used in reactive Java applications including Spring WebFlux, improperly handles logging during the processing of malformed or invalid HTTP requests. When the server encounters such requests and WARN level logging is enabled, the logging mechanism captures and persists HTTP request headers to log files without adequate sanitization.

The exposure occurs because authentication tokens, session identifiers, API keys, and other sensitive credentials are commonly transmitted via HTTP headers such as Authorization, X-Auth-Token, or custom authentication headers. These values are written to log files in plaintext, creating a persistent record of sensitive authentication material.

Root Cause

The root cause stems from inadequate input sanitization in the logging pathway for error conditions. When the Reactor Netty HTTP Server processes invalid HTTP requests and triggers warning-level log entries, the logging logic fails to redact or filter sensitive header values before writing them to log output. This represents a violation of secure logging practices where authentication credentials should never be persisted in logs regardless of the request validity state.

Attack Vector

The attack vector is network-based and requires low privileges to exploit. An attacker with access to server log files (either through legitimate administrative access, log aggregation systems, or through a separate vulnerability that exposes logs) can harvest valid authentication tokens from logged entries.

The attack scenario involves:

  1. An attacker or legitimate user sends malformed HTTP requests to the vulnerable server
  2. The Reactor Netty HTTP Server logs the invalid request at WARN level, including full headers
  3. An adversary with log access retrieves the logged authentication tokens
  4. The attacker uses the harvested tokens to impersonate legitimate users or access protected resources

The vulnerability does not require user interaction and the impact is limited to confidentiality exposure of authentication credentials present in the logged headers.

Detection Methods for CVE-2022-31684

Indicators of Compromise

  • Presence of authentication headers (e.g., Authorization, Bearer tokens) in server log files
  • Unusual access patterns to log files or log aggregation systems
  • Authentication anomalies where tokens are used from unexpected IP addresses
  • Evidence of log file exfiltration or unauthorized log access

Detection Strategies

  • Audit server log files for presence of sensitive header values such as Authorization, Bearer, X-Auth-Token
  • Monitor log aggregation systems for queries targeting authentication-related content
  • Implement file integrity monitoring on log directories to detect unauthorized access
  • Review application dependencies for Reactor Netty versions between 1.0.11 and 1.0.23

Monitoring Recommendations

  • Enable alerting on log file access by unauthorized users or service accounts
  • Monitor for high volumes of invalid HTTP requests that could trigger vulnerable logging paths
  • Track token usage patterns to identify credential reuse from unexpected sources
  • Implement centralized logging with access controls and audit trails

How to Mitigate CVE-2022-31684

Immediate Actions Required

  • Upgrade Reactor Netty to version 1.0.24 or later which addresses this vulnerability
  • Audit existing log files for exposed authentication tokens and rotate any potentially compromised credentials
  • Review and restrict access to server log files and log aggregation systems
  • Consider temporarily reducing logging level below WARN until patching is complete

Patch Information

VMware has released a security update addressing this vulnerability. Refer to the VMware Security Advisory CVE-2022-31684 for official patch information and upgrade guidance. Organizations should upgrade to Reactor Netty version 1.0.24 or later.

For Maven-based projects, update the dependency version in pom.xml. For Gradle projects, update the version in build.gradle. Spring Boot applications should verify their transitive dependency versions through dependency management.

Workarounds

  • Reduce logging verbosity below WARN level for Reactor Netty components to prevent sensitive header logging
  • Implement log filtering or redaction rules to mask authentication headers before persistence
  • Restrict access to server logs to only essential personnel and systems
  • Rotate all authentication tokens that may have been logged during the vulnerable period
bash
# Configuration example
# For Spring Boot applications, reduce Reactor Netty logging level
# Add to application.properties or application.yml

# application.properties
logging.level.reactor.netty=ERROR

# Or in logback-spring.xml, add log filtering
# <filter class="ch.qos.logback.core.filter.EvaluatorFilter">
#   <evaluator class="ch.qos.logback.classic.boolex.JaninoEventEvaluator">
#     <expression>return message.contains("Authorization");</expression>
#   </evaluator>
#   <onMatch>DENY</onMatch>
# </filter>

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechPivotal Reactor Netty

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.37%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • NVD-CWE-noinfo

  • CWE-532
  • Vendor Resources
  • VMware Security Advisory CVE-2022-31684
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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