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
    • 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-2023-3164

CVE-2023-3164: LibTIFF Denial of Service Vulnerability

CVE-2023-3164 is a heap-buffer-overflow flaw in LibTIFF's tiffcrop tool that enables denial of service attacks through malicious TIFF files. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 11, 2026

CVE-2023-3164 Overview

A heap-buffer-overflow vulnerability was discovered in LibTIFF, specifically in the extractImageSection() function located at tools/tiffcrop.c:7916 and tools/tiffcrop.c:7801. This memory corruption flaw allows attackers to cause a denial of service by crafting a malicious TIFF file that triggers the overflow condition when processed by the tiffcrop utility.

Critical Impact

Attackers can crash applications processing TIFF images, leading to denial of service. Systems that automatically process user-uploaded TIFF files are particularly at risk.

Affected Products

  • LibTIFF (all versions prior to patch)
  • Red Hat Enterprise Linux 7.0
  • Red Hat Enterprise Linux 8.0
  • Red Hat Enterprise Linux 9.0

Discovery Timeline

  • 2023-11-02 - CVE-2023-3164 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-3164

Vulnerability Analysis

This vulnerability is classified under CWE-120 (Buffer Copy without Checking Size of Input) and CWE-787 (Out-of-bounds Write). The flaw resides in the extractImageSection() function within the tiffcrop tool, which is used to manipulate TIFF image files. When processing a specially crafted TIFF file, the function fails to properly validate buffer boundaries before writing data, resulting in a heap-buffer-overflow condition.

The vulnerability requires local access and user interaction—specifically, a victim must process a malicious TIFF file using the vulnerable tiffcrop utility. While the attack does not lead to information disclosure or integrity compromise, it can reliably cause the application to crash, resulting in a denial of service condition.

Root Cause

The root cause of this vulnerability lies in insufficient bounds checking within the extractImageSection() function. When extracting image sections from a TIFF file, the function allocates a heap buffer based on expected dimensions but fails to verify that subsequent write operations remain within the allocated buffer boundaries. A maliciously crafted TIFF file can specify dimensions or offsets that cause the function to write beyond the allocated heap buffer.

Attack Vector

This vulnerability requires local access to the target system. An attacker must convince a user to process a maliciously crafted TIFF file using the tiffcrop utility or an application that incorporates this functionality. The attack can be delivered through various social engineering vectors such as email attachments, file sharing platforms, or by placing malicious files in directories monitored by automated image processing systems.

The exploitation does not require any special privileges, but does require user interaction to open or process the malicious file. Upon successful exploitation, the heap-buffer-overflow causes the application to crash, denying service to legitimate users.

Detection Methods for CVE-2023-3164

Indicators of Compromise

  • Unexpected crashes of tiffcrop or applications using LibTIFF for TIFF processing
  • Core dumps or crash reports related to extractImageSection() function calls
  • Presence of unusually structured TIFF files with malformed dimension or offset values
  • Application logs showing segmentation faults during TIFF file processing

Detection Strategies

  • Monitor system logs for repeated crashes of tiffcrop or LibTIFF-dependent applications
  • Implement file integrity monitoring for directories containing TIFF processing utilities
  • Deploy runtime application protection to detect heap corruption attempts
  • Use AddressSanitizer (ASan) in development environments to catch buffer overflow attempts

Monitoring Recommendations

  • Configure crash reporting to alert security teams when LibTIFF-related applications fail
  • Monitor for unusual patterns of TIFF file processing failures across systems
  • Implement network monitoring to detect delivery of potentially malicious TIFF files
  • Review application logs for repeated processing failures of specific TIFF files

How to Mitigate CVE-2023-3164

Immediate Actions Required

  • Update LibTIFF to the latest patched version available from your distribution
  • Restrict access to tiffcrop utility to only trusted users who require it
  • Implement input validation for TIFF files before processing them with tiffcrop
  • Consider removing or disabling the tiffcrop utility if not required for operations

Patch Information

Organizations should apply available security updates from their Linux distribution vendors. Red Hat has acknowledged this vulnerability for Enterprise Linux versions 7.0, 8.0, and 9.0. Administrators should consult the Red Hat CVE Advisory for specific patch information and the Red Hat Bug Report for detailed tracking. The upstream issue is tracked in the LibTIFF GitLab repository.

Workarounds

  • Avoid processing untrusted TIFF files with the tiffcrop utility until patched
  • Use alternative TIFF processing tools that are not affected by this vulnerability
  • Implement sandboxing or containerization for TIFF processing operations to limit impact
  • Validate TIFF file structure before processing using third-party validation tools
bash
# Check current LibTIFF version
tiffcp -v 2>&1 | head -1

# Update LibTIFF on RHEL/CentOS systems
sudo yum update libtiff

# Update LibTIFF on Debian/Ubuntu systems  
sudo apt-get update && sudo apt-get upgrade libtiff-tools

# Restrict tiffcrop permissions as temporary mitigation
sudo chmod 750 /usr/bin/tiffcrop

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibtiff

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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
  • CWE-120

  • CWE-787
  • Technical References
  • Red Hat CVE Advisory

  • Red Hat Bug Report

  • GitLab Issue Discussion
  • Related CVEs
  • CVE-2023-52356: Libtiff Denial of Service Vulnerability

  • CVE-2023-52355: Libtiff DOS Vulnerability

  • CVE-2024-7006: Libtiff Null Pointer Dereference DOS Flaw

  • CVE-2023-0800: Libtiff Out-of-Bounds Write DoS 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