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
Cross-site scripting (XSS) vulnerability in the Sections module 5.x before 5.x-1.3 and 6.x before 6.x-1.3 for Drupal allows remote authenticated users with "administer sections" privileges to inject arbitrary web script or HTML via a section name (aka the Name field).
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
3.5
AV:N/AC:M/Au:S/C:N/I:P/A:N
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
–
–
2.56%
–
–
2022-03-27
–
–
2.56%
–
–
2022-04-03
–
–
2.56%
–
–
2022-05-29
–
–
2.56%
–
–
2022-12-25
–
–
2.56%
–
–
2023-01-01
–
–
2.56%
–
–
2023-02-19
–
–
2.56%
–
–
2023-03-12
–
–
–
0.24%
–
2023-07-09
–
–
–
0.24%
–
2023-11-05
–
–
–
0.24%
–
2023-11-12
–
–
–
0.24%
–
2023-11-19
–
–
–
0.18%
–
2023-12-24
–
–
–
0.18%
–
2024-02-11
–
–
–
0.18%
–
2024-02-18
–
–
–
0.16%
–
2024-04-07
–
–
–
0.14%
–
2024-06-02
–
–
–
0.14%
–
2024-09-15
–
–
–
0.14%
–
2024-09-22
–
–
–
0.14%
–
2024-10-20
–
–
–
0.14%
–
2024-12-22
–
–
–
0.17%
–
2025-01-19
–
–
–
0.17%
–
2025-01-19
–
–
–
0.17%
–
2025-03-18
–
–
–
–
0.5%
2025-03-30
–
–
–
–
0.57%
2025-03-30
–
–
–
–
0.57,%
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 : 2009-12-15 23h00 +00:00 Auteur : Justin C. Klein Keane EDB Vérifié : Yes
The text of this announcment is also available at
http://www.madirish.net/?article=440
Description of Vulnerability:
- - - -----------------------------
Drupal (http://drupal.org) is a robust content management system (CMS)
written in PHP and MySQL that provides extensibility through various
third party modules. The Sections module
(http://drupal.org/project/sections) "allows you to create sections
within your site. Each section has an installed template, theme or style
attached to it."
The Sections module contains a cross site scripting vulnerability
because it does not properly sanitize output of section names before
display.
Systems affected:
- - - -----------------
Drupal 6.14 with Sections 6.x-1.2 was tested and shown to be vulnerable.
Impact:
- - - -------
XSS vulnerabilities may expose site administrative accounts to
compromise which could lead to web server process compromise.
Mitigating factors:
- - - -------------------
The Sections module must be installed. To carry out a Sections based
XSS proof of concept exploit below the attacker must have 'administer
sections' permissions.
Proof of Concept:
- - ---------------------
1. Install Drupal 6.14
2. Install Sections 6.x-1.2
3. Enable the Sections module from Administer -> Site building -> Modules
4. Click Administer -> Site building -> Sections
5. Click the 'Add section' button
5. Enter "<script>alert('xss');</script>" in the 'Name' text area
6. Click the 'Add section' button to save the section and observe the
rendered JavaScript
7. Click on the 'Sections' link in the navigation to observe the
rendered JavaScript
Technical details:
- - ------------------------
The Sections module fails to sanitize the output of the section name
before display. Applying the following patch fixes this vulnerability.
Patch
- - -------
Applying the following patch mitigates these threats.
- --- sections/sections.admin.inc 2008-06-01 08:51:51.000000000 -0400
+++ sections.fixed/sections.admin.inc 2009-11-06 15:43:53.997416137 -0500
@@ -234,6 +234,7 @@ function theme_sections_admin_display_fo
foreach (element_children($form['sections']) as $key => $id) {
// Don't take form control structures.
if (is_array($form['sections'][$id]['name'])) {
+ $form['sections'][$id]['name']['#value'] =
filter_xss($form['sections'][$id]['name']['#value']);
$form['sections'][$id]['weight']['#attributes']['class'] =
'sections-order-weight';
$rows[] = array(
'data' => array(
Vendor Response
- ---------------
Upgrade to the latest version.
SA-CONTRIB-2009-112 http://drupal.org/node/661404
- --
Justin C. Klein Keane
http://www.MadIrish.net
Date de publication : 2009-12-15 23h00 +00:00 Auteur : Justin C. Klein Keane EDB Vérifié : Yes
source: https://www.securityfocus.com/bid/37371/info
The Sections module for Drupal is prone to an HTML-injection vulnerability because it fails to properly sanitize user-supplied input before using it in dynamically generated content.
Successful exploits will allow attacker-supplied HTML and script code to run in the context of the affected browser, potentially allowing the attacker to steal cookie-based authentication credentials or to control how the site is rendered to the user. Other attacks are also possible.
To exploit this issue, the attacker must have 'administer sections' permissions.
Versions prior to Sections 5.x-1.3 and 6.x-1.3 are vulnerable.
The following example input is available:
<script>alert('xss');</script>
Products Mentioned
Configuraton 0
Alexander_hass>>Sections_module >> Version 5.x-1.0
Alexander_hass>>Sections_module >> Version 5.x-1.1
Alexander_hass>>Sections_module >> Version 5.x-1.2
Alexander_hass>>Sections_module >> Version 5.x-1.x-dev
Alexander_hass>>Sections_module >> Version 6.x-1.0
Alexander_hass>>Sections_module >> Version 6.x-1.1
Alexander_hass>>Sections_module >> Version 6.x-1.2
Alexander_hass>>Sections_module >> Version 6.x-1.x-dev