CPE, qui signifie Common Platform Enumeration, est un système normalisé de dénomination du matériel, des logiciels et des systèmes d'exploitation. CPE fournit un schéma de dénomination structuré pour identifier et classer de manière unique les systèmes informatiques, les plates-formes et les progiciels sur la base de certains attributs tels que le fournisseur, le nom du produit, la version, la mise à jour, l'édition et la langue.
CWE, ou Common Weakness Enumeration, est une liste complète et une catégorisation des faiblesses et des vulnérabilités des logiciels. Elle sert de langage commun pour décrire les faiblesses de sécurité des logiciels au niveau de l'architecture, de la conception, du code ou de la mise en œuvre, qui peuvent entraîner des vulnérabilités.
CAPEC, qui signifie Common Attack Pattern Enumeration and Classification (énumération et classification des schémas d'attaque communs), est une ressource complète, accessible au public, qui documente les schémas d'attaque communs utilisés par les adversaires dans les cyberattaques. Cette base de connaissances vise à comprendre et à articuler les vulnérabilités communes et les méthodes utilisées par les attaquants pour les exploiter.
Services & Prix
Aides & Infos
Recherche de CVE id, CWE id, CAPEC id, vendeur ou mots clés dans les CVE
fits-io.c in GIMP before 2.8.1 allows remote attackers to cause a denial of service (NULL pointer dereference and application crash) via a malformed XTENSION header of a .fit file, as demonstrated using a long string.
NULL Pointer Dereference The product dereferences a pointer that it expects to be valid but is NULL.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
4.3
AV:N/AC:M/Au:N/C:N/I:N/A:P
nvd@nist.gov
EPSS
EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.
Score EPSS
Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
5.74%
–
–
2022-02-27
–
–
5.74%
–
–
2022-04-03
–
–
5.74%
–
–
2022-05-22
–
–
5.74%
–
–
2022-06-26
–
–
5.54%
–
–
2022-07-17
–
–
5.54%
–
–
2022-07-24
–
–
5.54%
–
–
2022-08-28
–
–
5.54%
–
–
2022-10-02
–
–
5.36%
–
–
2023-01-01
–
–
5.36%
–
–
2023-01-15
–
–
5.36%
–
–
2023-03-12
–
–
–
0.72%
–
2023-08-06
–
–
–
1.02%
–
2024-02-11
–
–
–
0.92%
–
2024-03-31
–
–
–
0.92%
–
2024-04-14
–
–
–
0.81%
–
2024-06-02
–
–
–
0.81%
–
2024-08-04
–
–
–
0.95%
–
2024-08-25
–
–
–
0.95%
–
2024-09-22
–
–
–
0.95%
–
2024-09-29
–
–
–
0.95%
–
2024-12-22
–
–
–
1.47%
–
2025-01-12
–
–
–
1.47%
–
2025-03-02
–
–
–
2.21%
–
2025-01-19
–
–
–
1.47%
–
2025-03-09
–
–
–
2.21%
–
2025-03-18
–
–
–
–
9.33%
2025-03-18
–
–
–
–
9.33,%
Percentile EPSS
Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.
Date de publication : 2012-06-29 22h00 +00:00 Auteur : Joseph Sheridan EDB Vérifié : No
Summary
=======
There is a file handling DoS in GIMP (the GNU Image Manipulation Program) for
the 'fit' file format affecting all versions (Windows and Linux) up to and
including 2.8.0. A file in the fit format with a malformed 'XTENSION' header
will cause a crash in the GIMP program.
CVE number: CVE-2012-3236
Vendor Homepage: http://www.gimp.org/
Date reported to vendor: 25/05/2012
Found by Joseph Sheridan:
href="http://www.reactionpenetrationtesting.co.uk/joseph-sheridan.html
This advisory is posted at:
http://www.reactionpenetrationtesting.co.uk/FIT-file-handling-DoS.html
PoC file is available here:
http://www.reactionpenetrationtesting.co.uk/vuln.fit
https://gitlab.com/exploit-database/exploitdb-bin-sploits/-/raw/main/bin-sploits/19482.fit
Affected Products
=================
Vulnerable Products
+------------------
The following products are known to be affected by this vulnerability:
* GIMP <= 2.8.0 (Windows or Linux builds)
Products Not Vulnerable
+--------------------------------
* GIMP 2.8.1
Details
=======
There is a file handling DoS in GIMP (the GNU Image Manipulation Program) for
the 'fit' file format affecting all versions (Windows and Linux) up to 2.8.0.
A file in the fit format with a malformed 'XTENSION' header will cause a crash
in the GIMP program. The flaw is triggered by opening a crafted 'fit' file or
allowing the file explorer dialog to preview the file.
A file in the fit format starting as follows will trigger the crash:
XTENSIONaaaaaaaaaaaaaaaaaaaaaa...aaaaaaaaaaaaaaaaaaaaaaaaHEADER2...
The vulnerable code is in the fits-io.c lines where the program attempts to
copy from a null pointer:
{
fdat = fits_decode_card (fits_search_card (hdr, "XTENSION"), typ_fstring);
strcpy (hdulist->xtension, fdat->fstring);
}
This code can be patched by changing it to the following (as GIMP 2.8.1):
fdat = fits_decode_card (fits_search_card (hdr, "XTENSION"), typ_fstring);
if(fdat != NULL) {
strcpy (hdulist->xtension, fdat->fstring);
} else {
strcpy (errmsg, "No valid XTENSION header found.");
goto err_return;
}
Impact
======
Successful exploitation of the vulnerability may result in an application
crash and denial of service.
Solution
===========
The GIMP team have provided an update for this issue (release 2.8.1).
Workarounds
===========
The fits-io.c file can be patched as above.
Distribution
============
In addition to posting on the website, a text version of this notice
is posted to the following e-mail and Usenet news recipients.
* bugtraq () securityfocus com
* full-disclosure () lists grok org uk
* oss [dash] security [dash] subscribe [at] lists [dot] openwall [dot] com
Future updates of this advisory, if any, will be placed on the ReactionIS
corporate website, but may or may not be actively announced on
mailing lists or newsgroups. Users concerned about this problem are
encouraged to check the URL below for any updates:
http://www.reactionpenetrationtesting.co.uk/FIT-file-handling-DoS.html
========================================================================
====
Reaction Information Security
Lombard House Business Centre,
Suite 117,
12-17 Upper Bridge Street,
Canterbury, Kent, CT1 2NF
Phone: +44 (0)1227 785050
Email: research () reactionis {dot} co {dot} uk
Web: http://www.reactionpenetrationtesting.co.uk
Joseph Sheridan
Technical Director
Principal Consultant
CHECK Team Leader, CREST Infrastructure, CREST Application, CISSP
Tel: 07812052515
Web: www.reactionis.com
Email: joe (at) reactionis.co (dot) uk [email concealed]
Reaction Information Security Limited.
Registered in England No: 6929383
Registered Office: 1, The Mews, 69 New Dover Road, Canterbury, CT1 3DZ
This email and any files transmitted with it are confidential and are intended solely for the use of the individual to whom they are addressed. If you are not the intended recipient please notify the sender. Any unauthorised dissemination or copying of this email or its attachments and any use or disclosure of any information contained in them, is strictly prohibited.
ï Please consider the environment before printing this email