mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
Add a POODLE scanner and general SSL version scan
This commit is contained in:
parent
50a2f4c2a7
commit
0b67efd51e
82
modules/auxiliary/scanner/http/http_sslv3.rb
Normal file
82
modules/auxiliary/scanner/http/http_sslv3.rb
Normal file
@ -0,0 +1,82 @@
|
||||
##
|
||||
# This module requires Metasploit: http//metasploit.com/download
|
||||
# Current source: https://github.com/rapid7/metasploit-framework
|
||||
##
|
||||
|
||||
require 'rex/proto/http'
|
||||
require 'msf/core'
|
||||
|
||||
|
||||
class Metasploit3 < Msf::Auxiliary
|
||||
|
||||
# Exploit mixins should be called first
|
||||
include Msf::Exploit::Remote::HttpClient
|
||||
# Scanner mixin should be near last
|
||||
include Msf::Auxiliary::Scanner
|
||||
|
||||
def initialize
|
||||
super(
|
||||
'Name' => 'HTTP SSL/TLS Version Detection (POODLE scanner)',
|
||||
'Description' => %q{
|
||||
Check if an HTTP server supports a given version of SSL/TLS.
|
||||
|
||||
If a web server can successfully establish an SSLv3 session, it is
|
||||
likely to be vulnerable to the POODLE attack described on
|
||||
October 14, 2014, as a patch against the attack is unlikely.
|
||||
},
|
||||
'Author' => 'todb',
|
||||
'License' => MSF_LICENSE,
|
||||
'DefaultOptions' =>
|
||||
{
|
||||
'SSL' => true,
|
||||
'RPORT' => 443,
|
||||
'SSLVersion' => 'SSL3'
|
||||
},
|
||||
'References' =>
|
||||
[
|
||||
[ 'URL', 'http://googleonlinesecurity.blogspot.com/2014/10/this-poodle-bites-exploiting-ssl-30.html'],
|
||||
[ 'OSVDB', '113251'],
|
||||
[ 'CVE', '2014-3566']
|
||||
],
|
||||
)
|
||||
|
||||
register_options(
|
||||
[
|
||||
OptEnum.new('SSLVersion', [true, 'Specify the version of SSL that should be used', 'SSL3', ['SSL2', 'SSL3', 'TLS1']])
|
||||
]
|
||||
)
|
||||
|
||||
end
|
||||
|
||||
# Fingerprint a single host
|
||||
def run_host(ip)
|
||||
begin
|
||||
connect
|
||||
res = send_request_raw({ 'uri' => '/', 'method' => 'GET' })
|
||||
fp = http_fingerprint(:response => res)
|
||||
if fp
|
||||
print_good("#{peer} #{fp} accepts SSLv3")
|
||||
report_poodle_vuln(ip)
|
||||
end
|
||||
rescue ::OpenSSL::SSL::SSLError => e
|
||||
ssl_version = e.message.match(/ state=([^\s]+)/)[1]
|
||||
vprint_status("#{peer} does not accept #{ssl_version}")
|
||||
rescue ::Timeout::Error, ::Errno::EPIPE
|
||||
ensure
|
||||
disconnect
|
||||
end
|
||||
end
|
||||
|
||||
def report_poodle_vuln(ip)
|
||||
report_vuln(
|
||||
:host => ip,
|
||||
:port => rport,
|
||||
:proto => 'tcp',
|
||||
:name => self.name,
|
||||
:info => "Module #{self.fullname} confirmed SSLv3 is available",
|
||||
:refs => self.references,
|
||||
:exploited_at => Time.now.utc
|
||||
)
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in New Issue
Block a user