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-2023-1916

CVE-2023-1916: Libtiff Denial of Service Vulnerability

CVE-2023-1916 is a denial of service flaw in Libtiff's tiffcrop tool that enables out-of-bounds reads through malicious TIFF files. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 4, 2026

CVE-2023-1916 Overview

A flaw was found in tiffcrop, a program distributed by the libtiff package. A specially crafted TIFF file can lead to an out-of-bounds read in the extractImageSection function in tools/tiffcrop.c, resulting in a denial of service and limited information disclosure. This issue affects libtiff versions 4.x.

Critical Impact

Processing a maliciously crafted TIFF file with tiffcrop can cause application crashes (denial of service) and potentially leak sensitive memory contents through information disclosure.

Affected Products

  • libtiff 4.x versions
  • Systems utilizing tiffcrop for TIFF image processing
  • Applications depending on libtiff library (including Apple products per HT213844)

Discovery Timeline

  • 2023-04-10 - CVE-2023-1916 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-1916

Vulnerability Analysis

This vulnerability is classified as CWE-125: Out-of-Bounds Read. The flaw exists in the extractImageSection function within tools/tiffcrop.c, which is part of the tiffcrop utility used for cropping and manipulating TIFF images. When processing a specially crafted TIFF file, the function fails to properly validate boundaries before reading image data, allowing an attacker to cause the program to read memory beyond the allocated buffer.

The local attack vector requires user interaction, as a victim must process a malicious TIFF file using tiffcrop. While exploitation does not require privileges, the attacker must convince a user to open or process the malicious file. The vulnerability primarily impacts availability through denial of service, with a secondary impact on confidentiality through limited information disclosure from leaked memory contents.

Root Cause

The root cause is insufficient boundary checking in the extractImageSection function. When parsing TIFF image sections, the code does not adequately validate that the requested image coordinates and dimensions fall within the bounds of the actual image data buffer. This allows crafted TIFF files with malformed section parameters to trigger reads beyond the allocated memory region.

Attack Vector

The attack requires local access and user interaction. An attacker must craft a malicious TIFF file with specially constructed image section parameters and deliver it to a victim. When the victim processes this file using tiffcrop or an application that utilizes the vulnerable libtiff functionality, the out-of-bounds read is triggered.

The exploitation scenario typically involves:

  1. Attacker creates a malicious TIFF file with manipulated image section metadata
  2. The file is delivered to the victim through email, web download, or file sharing
  3. The victim processes the TIFF file using tiffcrop or a vulnerable application
  4. The extractImageSection function reads beyond buffer boundaries
  5. This results in application crash (DoS) or potential memory content leakage

For detailed technical analysis, refer to GitLab Issue #536 and GitLab Issue #537.

Detection Methods for CVE-2023-1916

Indicators of Compromise

  • Unexpected crashes of tiffcrop or applications using libtiff when processing TIFF files
  • Core dumps or crash logs indicating segmentation faults in extractImageSection or related functions
  • Unusual TIFF files with malformed or suspicious image section metadata

Detection Strategies

  • Monitor for abnormal termination of processes using libtiff components
  • Implement file integrity monitoring for TIFF files processed in sensitive environments
  • Deploy application-level monitoring to detect repeated crashes when processing image files
  • Use memory sanitizers (ASan, MSan) in development/testing environments to catch out-of-bounds reads

Monitoring Recommendations

  • Configure crash reporting to capture and analyze tiffcrop failures
  • Implement input validation for TIFF files before processing in production workflows
  • Monitor system logs for patterns of repeated image processing failures
  • Deploy SentinelOne endpoint protection to detect exploitation attempts and anomalous process behavior

How to Mitigate CVE-2023-1916

Immediate Actions Required

  • Update libtiff to the latest patched version available from your distribution
  • Restrict use of tiffcrop to trusted TIFF files only
  • Implement input validation for TIFF files from untrusted sources
  • Consider sandboxing tiffcrop operations to limit potential impact

Patch Information

Users should update to a patched version of libtiff that addresses this vulnerability. Check your operating system's package manager for security updates to the libtiff package. Apple users should refer to the Apple Support Article HT213844 for relevant security updates.

For tracking and additional details, see GitLab Issue #536 and GitLab Issue #537.

Workarounds

  • Avoid processing TIFF files from untrusted or unknown sources with tiffcrop
  • Use alternative tools for TIFF manipulation until patching is complete
  • Implement strict file type validation before processing image files
  • Run tiffcrop in a sandboxed or containerized environment to limit impact of potential exploitation
bash
# Example: Running tiffcrop in a restricted environment
# Using firejail to sandbox tiffcrop execution
firejail --private --net=none tiffcrop input.tiff output.tiff

# Check installed libtiff version
pkg-config --modversion libtiff

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 Score6.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • GitLab Issue #536

  • GitLab Issue #537

  • Apple Support Article

  • GitLab Issue #536
  • 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