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-2025-53101

CVE-2025-53101: ImageMagick Buffer Overflow Vulnerability

CVE-2025-53101 is a stack buffer overflow vulnerability in ImageMagick's magick mogrify command affecting versions prior to 7.1.2-0 and 6.9.13-26. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-53101 Overview

CVE-2025-53101 is a stack overflow vulnerability in ImageMagick, the widely-used open-source software for editing and manipulating digital images. The vulnerability exists in ImageMagick's magick mogrify command, where specifying multiple consecutive %d format specifiers in a filename template causes internal pointer arithmetic to generate an address below the beginning of the stack buffer, resulting in a stack overflow through vsnprintf().

Critical Impact

This vulnerability allows remote attackers to potentially achieve arbitrary code execution or cause denial of service through crafted filename templates processed by ImageMagick's mogrify command.

Affected Products

  • ImageMagick versions prior to 7.1.2-0
  • ImageMagick versions prior to 6.9.13-26
  • Systems using magick mogrify command with user-controlled filename templates

Discovery Timeline

  • 2025-07-14 - CVE-2025-53101 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-53101

Vulnerability Analysis

This vulnerability stems from improper handling of format specifiers in filename templates within ImageMagick's mogrify command. When a user supplies a filename template containing multiple consecutive %d format specifiers, the internal pointer arithmetic miscalculates memory addresses. This miscalculation results in the generation of an address that falls below the legitimate beginning of the allocated stack buffer.

The vulnerable code path involves the vsnprintf() function, which writes formatted output to a buffer. Due to the erroneous pointer calculation, the function writes data outside the intended memory region, triggering a stack overflow condition. This memory corruption can be exploited to overwrite critical stack data such as return addresses, potentially enabling arbitrary code execution.

Root Cause

The root cause is classified as CWE-124 (Buffer Underwrite), where pointer arithmetic operations incorrectly calculate memory addresses when processing multiple %d format specifiers. The code fails to properly validate or limit the number of consecutive format specifiers, allowing the computed buffer pointer to reference memory locations before the start of the allocated stack buffer.

Attack Vector

The vulnerability is exploitable over the network without authentication or user interaction. An attacker can craft a malicious filename template containing multiple %d format specifiers and pass it to the magick mogrify command. This could occur through:

  • Web applications that use ImageMagick to process user-uploaded images with filename templates
  • Automated image processing pipelines that accept external input
  • Command-line usage where filename parameters are derived from untrusted sources

The exploitation occurs when the vulnerable format specifier processing causes vsnprintf() to write beyond the stack buffer boundaries, corrupting adjacent memory and potentially hijacking program control flow.

Detection Methods for CVE-2025-53101

Indicators of Compromise

  • Unexpected crashes or segmentation faults in ImageMagick processes, particularly in mogrify operations
  • Core dumps indicating stack corruption in ImageMagick-related processes
  • Abnormal memory access patterns in process monitoring showing addresses below expected stack regions
  • Error logs containing vsnprintf or format string related errors from ImageMagick

Detection Strategies

  • Monitor for ImageMagick process crashes with stack-related error signatures
  • Implement input validation to detect filename templates with multiple consecutive %d specifiers
  • Use application-level logging to track format specifier patterns in mogrify command inputs
  • Deploy memory protection mechanisms (ASLR, stack canaries) that can detect exploitation attempts

Monitoring Recommendations

  • Enable verbose logging for ImageMagick operations in production environments
  • Configure system monitoring to alert on repeated ImageMagick process failures
  • Implement file integrity monitoring on systems running ImageMagick to detect post-exploitation modifications
  • Review web application logs for unusual filename patterns submitted to image processing endpoints

How to Mitigate CVE-2025-53101

Immediate Actions Required

  • Upgrade ImageMagick to version 7.1.2-0 or later for the 7.x branch
  • Upgrade ImageMagick to version 6.9.13-26 or later for the 6.x branch
  • Implement input sanitization to reject filename templates with multiple consecutive %d specifiers
  • Consider restricting ImageMagick processing to controlled inputs until patching is complete

Patch Information

ImageMagick has released fixed versions that address this vulnerability. The patch is available through GitHub Commit 66dc8f5. For additional details, see the GitHub Security Advisory GHSA-qh3h-j545-h8c9. Debian users should also reference the Debian LTS Security Announcement for distribution-specific updates.

Fixed versions:

  • ImageMagick 7.x: Version 7.1.2-0 and later
  • ImageMagick 6.x: Version 6.9.13-26 and later

Workarounds

  • Sanitize all filename template inputs to remove or escape format specifiers before passing to mogrify
  • Implement strict input validation to reject filename templates containing multiple %d patterns
  • Run ImageMagick processes in sandboxed environments with restricted permissions
  • Use ImageMagick's policy.xml to restrict potentially dangerous operations until patching is possible
bash
# Example: Check current ImageMagick version
magick --version

# Example: Update ImageMagick via package manager (Debian/Ubuntu)
sudo apt update && sudo apt install imagemagick

# Example: Verify patch application by checking version
magick --version | grep -E "7\.1\.[2-9]|6\.9\.13-(2[6-9]|[3-9][0-9])"

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechImagemagick

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-124
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42050: ImageMagick Buffer Overflow Vulnerability

  • CVE-2026-40310: ImageMagick Buffer Overflow Vulnerability

  • CVE-2026-40183: ImageMagick Buffer Overflow Vulnerability

  • CVE-2026-40169: ImageMagick Buffer Overflow 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