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-30973

CVE-2022-30973: Apache Tika Denial of Service Vulnerability

CVE-2022-30973 is a denial of service flaw in Apache Tika caused by regex backtracking in StandardsText class. This article covers technical details, affected versions, impact, and mitigation steps.

Published: February 11, 2026

CVE-2022-30973 Overview

CVE-2022-30973 is a Denial of Service vulnerability in Apache Tika affecting the 1.x branch. The vulnerability exists because the fix for a related issue (CVE-2022-30126) was not properly applied to the 1.28.2 release. A regular expression in the StandardsText class, utilized by the StandardsExtractingContentHandler, can cause catastrophic backtracking when processing a specially crafted file, leading to denial of service conditions.

Critical Impact

Attackers can exploit this regex vulnerability to cause application hangs or resource exhaustion through specially crafted files, disrupting document processing services that rely on Apache Tika's StandardsExtractingContentHandler.

Affected Products

  • Apache Tika 1.x versions prior to 1.28.3
  • Applications using StandardsExtractingContentHandler for document processing
  • Systems running vulnerable Apache Tika versions with standards extraction enabled

Discovery Timeline

  • May 31, 2022 - CVE-2022-30973 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-30973

Vulnerability Analysis

This vulnerability is a classic example of Regular Expression Denial of Service (ReDoS). The StandardsText class in Apache Tika contains a regular expression pattern that exhibits exponential time complexity when processing maliciously crafted input. When the regex engine encounters certain string patterns, it enters a backtracking loop that can consume excessive CPU resources and effectively freeze the application.

The vulnerability specifically affects users who have enabled the non-default StandardsExtractingContentHandler, which is used to extract references to standards (such as ISO, ANSI, IEEE standards) from documents. While this limits the attack surface, organizations using this feature for document compliance analysis or metadata extraction remain vulnerable.

Root Cause

The root cause stems from an incomplete fix for CVE-2022-30126. The patch that addressed regex backtracking issues in the main branch was not properly backported to the 1.x release branch. This resulted in version 1.28.2 shipping without the necessary regex optimizations, leaving the vulnerable pattern in place within the StandardsText class.

Attack Vector

The attack requires local access where an attacker must convince a user to process a specially crafted file or have the ability to submit files to a document processing system. The vulnerability exploits the regex processing mechanism through carefully constructed input strings that trigger worst-case backtracking behavior.

The exploitation mechanism involves crafting input text that matches partial regex patterns in ways that force the regex engine to explore numerous permutations before failing to match. This algorithmic complexity attack doesn't require any special privileges but does require user interaction to process the malicious file.

Detection Methods for CVE-2022-30973

Indicators of Compromise

  • Abnormally high CPU utilization during document processing operations
  • Extended processing times for specific files that should complete quickly
  • Application hangs or unresponsiveness when parsing certain document types
  • Thread dumps showing regex-related processing in StandardsText class methods

Detection Strategies

  • Monitor Apache Tika process CPU usage for sustained spikes during file processing
  • Implement processing timeouts to detect potential ReDoS attacks on document handlers
  • Review application logs for timeout errors related to StandardsExtractingContentHandler
  • Inventory systems to identify Apache Tika 1.x installations prior to version 1.28.3

Monitoring Recommendations

  • Set up alerting for document processing operations that exceed expected duration thresholds
  • Monitor thread pool exhaustion in applications using Apache Tika for document parsing
  • Track resource utilization patterns to identify potential exploitation attempts
  • Implement file upload monitoring to detect patterns of malicious file submissions

How to Mitigate CVE-2022-30973

Immediate Actions Required

  • Upgrade Apache Tika to version 1.28.3 or later immediately
  • Disable StandardsExtractingContentHandler if not required for business operations
  • Implement processing timeouts for document parsing operations
  • Review and restrict file upload capabilities where Apache Tika processes user-submitted content

Patch Information

Apache has addressed this vulnerability in version 1.28.3 of Apache Tika. Users should upgrade to this version or later to receive the corrected regex pattern that prevents catastrophic backtracking. For detailed information about the fix, refer to the Apache Thread Discussion.

Additional security advisories are available from NetApp Security Advisory and Openwall OSS Security.

Workarounds

  • Remove or disable StandardsExtractingContentHandler from document processing pipelines if standards extraction is not required
  • Implement strict timeout controls around Apache Tika parsing operations to prevent indefinite hangs
  • Add file size limits and content validation before passing documents to Tika for processing
  • Consider using a process sandbox or container isolation for document parsing workloads
bash
# Configuration example
# Verify Apache Tika version
java -jar tika-app.jar --version

# Upgrade to patched version 1.28.3 or later
# Update Maven dependency in pom.xml:
# <dependency>
#   <groupId>org.apache.tika</groupId>
#   <artifactId>tika-core</artifactId>
#   <version>1.28.3</version>
# </dependency>

# Or for Gradle in build.gradle:
# implementation 'org.apache.tika:tika-core:1.28.3'

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechApache Tika

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-Other
  • Technical References
  • Openwall OSS Security Update

  • Openwall OSS Security Notification

  • NetApp Security Advisory
  • Vendor Resources
  • Apache Thread Discussion
  • Related CVEs
  • CVE-2022-33879: Apache Tika DOS Vulnerability

  • CVE-2022-30126: Apache Tika DOS Vulnerability

  • CVE-2022-25169: Apache Tika DOS Vulnerability

  • CVE-2025-66516: Apache Tika XXE Vulnerability
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