CVE-2019-11597
Description
In ImageMagick 7.0.8-43 Q16, a heap-based buffer over-read in WriteTIFFImage allows denial of service or information disclosure via a crafted image.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
In ImageMagick 7.0.8-43 Q16, a heap-based buffer over-read in WriteTIFFImage allows denial of service or information disclosure via a crafted image.
Vulnerability
In ImageMagick 7.0.8-43 Q16, a heap-based buffer over-read exists in the WriteTIFFImage function of coders/tiff.c. This occurs when processing a specially crafted TIFF image, leading to an over-read of heap memory. [1]
Exploitation
An attacker can trigger this vulnerability by providing a crafted image file and executing magick convert $poc /dev/null. No authentication is required; the attacker only needs to trick a user or automated system into processing the malicious image with ImageMagick. [1]
Impact
Successful exploitation results in a denial of service (crash) and could lead to information disclosure through the heap-based buffer over-read. [1]
Mitigation
The vulnerability was fixed in a subsequent release of ImageMagick. Users should upgrade to the latest version to mitigate the issue. The official fix is tracked in the GitHub issue. [1]
AI Insight generated on May 26, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected products
18= 7.0.8-43+ 1 more
- (no CPE)range: = 7.0.8-43
- (no CPE)range: <= 7.0.8-43
- osv-coords16 versionspkg:rpm/opensuse/ImageMagick&distro=openSUSE%20Leap%2015.0pkg:rpm/opensuse/ImageMagick&distro=openSUSE%20Leap%2015.1pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Desktop%2012%20SP3pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Desktop%2012%20SP4pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Module%20for%20Desktop%20Applications%2015pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Module%20for%20Desktop%20Applications%2015%20SP1pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Module%20for%20Development%20Tools%2015pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Module%20for%20Development%20Tools%2015%20SP1pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Server%2012%20SP3pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Server%2012%20SP4pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Server%20for%20SAP%20Applications%2012%20SP3pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Server%20for%20SAP%20Applications%2012%20SP4pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Software%20Development%20Kit%2012%20SP3pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Software%20Development%20Kit%2012%20SP4pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Workstation%20Extension%2012%20SP3pkg:rpm/suse/ImageMagick&distro=SUSE%20Linux%20Enterprise%20Workstation%20Extension%2012%20SP4
< 7.0.7.34-lp151.7.6.1+ 15 more
- (no CPE)range: < 7.0.7.34-lp151.7.6.1
- (no CPE)range: < 7.0.7.34-lp151.7.6.1
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 7.0.7.34-3.64.2
- (no CPE)range: < 7.0.7.34-3.64.2
- (no CPE)range: < 7.0.7.34-3.64.2
- (no CPE)range: < 7.0.7.34-3.64.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
- (no CPE)range: < 6.8.8.1-71.123.2
Patches
0No patches discovered yet.
Vulnerability mechanics
Root cause
"Heap-based buffer over-read in WriteTIFFImage due to insufficient bounds checking when copying pixel data into a TIFF output buffer."
Attack vector
An attacker crafts a malicious image file that, when processed by ImageMagick's `convert` command, triggers a heap-buffer-overflow in the `WriteTIFFImage` function at `coders/tiff.c:4314` [ref_id=1]. The overflow occurs during a `memcpy` operation inside the libtiff library, reading 131072 bytes from a 4-byte allocated region [ref_id=1]. The attack requires no special privileges — the victim need only run `magick convert $poc /dev/null` on the crafted file [ref_id=1].
Affected code
The vulnerability resides in the `WriteTIFFImage` function within `coders/tiff.c` [ref_id=1]. The crash occurs at line 4314 during a `memcpy` call invoked through the libtiff library [ref_id=1]. The allocated region is only 4 bytes, but the read operation attempts to copy 131072 bytes, causing the over-read [ref_id=1].
What the fix does
No patch is included in the bundle. The issue was reported to the ImageMagick project via GitHub issue #1555 [ref_id=1], but the bundle does not contain a subsequent fix commit or advisory detailing remediation steps. The advisory does not specify whether a fix was ever released.
Preconditions
- inputVictim must run ImageMagick's convert command (or any code path invoking WriteTIFFImage) on a crafted image file
- authNo authentication or special privileges required
Reproduction
1. Obtain the proof-of-concept file referenced in the issue (not included in the bundle). 2. Run `magick convert $poc /dev/null` [ref_id=1]. 3. Observe the heap-buffer-overflow crash reported by AddressSanitizer at `coders/tiff.c:4314` [ref_id=1].
Generated on May 25, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
8- lists.opensuse.org/opensuse-security-announce/2019-07/msg00001.htmlmitrevendor-advisoryx_refsource_SUSE
- lists.opensuse.org/opensuse-security-announce/2019-07/msg00043.htmlmitrevendor-advisoryx_refsource_SUSE
- usn.ubuntu.com/4034-1/mitrevendor-advisoryx_refsource_UBUNTU
- www.debian.org/security/2020/dsa-4712mitrevendor-advisoryx_refsource_DEBIAN
- www.securityfocus.com/bid/108102mitrevdb-entryx_refsource_BID
- github.com/ImageMagick/ImageMagick/issues/1555mitrex_refsource_MISC
- lists.debian.org/debian-lts-announce/2019/05/msg00015.htmlmitremailing-listx_refsource_MLIST
- lists.debian.org/debian-lts-announce/2020/08/msg00030.htmlmitremailing-listx_refsource_MLIST
News mentions
0No linked articles in our index yet.